This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a change to branch
fix/WW-4421-duplicate-action-annotation-check
in repository https://gitbox.apache.org/repos/asf/struts.git
discard 777011989 fix(convention): WW-4421 detect duplicate @Action names when
execute() is annotated
add 11bc215c9 WW-5614 Remove cache for ProxyUtil#ultimateTargetClass
add fe6977156 Merge pull request #1578 from apache/WW-5614-proxy-memory
add ea906a22e build(deps): bump github/codeql-action from 4.32.1 to 4.32.2
(#1574)
add accd4c7e5 build(deps): bump
org.apache.maven.plugins:maven-dependency-plugin (#1575)
add e3d09dfc4 WW-5613 build(deps): bump ognl:ognl from 3.4.8 to 3.4.10
(#1567)
add a0a213f7c feat(security): WW-5294 add warning when JSP tags accessed
directly (#1569)
add c90bb70c2 feat(ui): WW-3429 add configurable checkbox hidden field
prefix (#1570)
add b704cb942 build(deps-dev): bump byte-buddy.version from 1.18.4 to
1.18.5 (#1583)
add 71f25438e build(deps): bump github/codeql-action from 4.32.2 to 4.32.3
(#1580)
add d2810d42f build(deps): bump
org.apache.commons:commons-fileupload2-jakarta-servlet6 (#1584)
add 182c00c08 conf(git): Ignores Cursor related paths (#1585)
add f4d4ffe48 build(deps): bump org.springframework:spring-framework-bom
(#1581)
add 1eae40b81 ci: use wildcard to exclude all Spring dependencies from 6.x
updates
add 2527ff15f Merge pull request #1587 from
apache/fix/dependabot-spring-exclusion
add a21c763d8 build(deps): bump github/codeql-action from 4.32.3 to 4.32.4
(#1589)
add 546b51c52 fix(convention): WW-4421 detect duplicate @Action names when
execute() is annotated
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (777011989)
\
N -- N -- N
refs/heads/fix/WW-4421-duplicate-action-annotation-check (546b51c52)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/dependabot.yml | 2 +-
.github/workflows/codeql.yml | 6 +-
.github/workflows/scorecards-analysis.yaml | 2 +-
.gitignore | 7 +-
.../java/org/apache/struts2/StrutsConstants.java | 9 +
.../org/apache/struts2/components/Checkbox.java | 21 +-
.../multipart/AbstractMultiPartRequest.java | 6 +-
.../struts2/interceptor/CheckboxInterceptor.java | 29 +-
.../java/org/apache/struts2/ognl/OgnlUtil.java | 88 ++++--
.../java/org/apache/struts2/util/ProxyUtil.java | 24 +-
.../org/apache/struts2/views/jsp/TagUtils.java | 10 +-
.../org/apache/struts2/default.properties | 4 +
.../src/main/resources/template/html5/checkbox.ftl | 2 +-
.../main/resources/template/simple/checkbox.ftl | 2 +-
.../interceptor/CheckboxInterceptorTest.java | 320 ++++++++++++---------
.../apache/struts2/views/jsp/ActionTagTest.java | 82 +++---
.../org/apache/struts2/views/jsp/TagUtilsTest.java | 189 ++++++++++++
parent/pom.xml | 2 +-
.../struts2/views/java/simple/CheckboxHandler.java | 30 +-
.../struts2/views/java/simple/CheckboxTest.java | 4 +-
pom.xml | 8 +-
.../2026-02-06-WW-3429-checkbox-prefix-constant.md | 196 +++++++++++++
.../2026-02-06-WW-5294-textfield-warning.md | 186 ++++++++++++
23 files changed, 980 insertions(+), 249 deletions(-)
create mode 100644
core/src/test/java/org/apache/struts2/views/jsp/TagUtilsTest.java
create mode 100644
thoughts/shared/research/2026-02-06-WW-3429-checkbox-prefix-constant.md
create mode 100644
thoughts/shared/research/2026-02-06-WW-5294-textfield-warning.md