This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a change to branch
test/WW-5514-spring-proxy-integration-test
in repository https://gitbox.apache.org/repos/asf/struts.git
omit 875af77ca feat(proxy): WW-5514 add StrutsProxyService for proxy
detection and resolution
add 2bff83282 build(deps): bump github/codeql-action from 4.32.0 to 4.32.1
(#1566)
add fd8742586 fix(spring): WW-3647 change autowire alwaysRespect default
to true (#1571)
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 55c7fb3db feat(proxy): WW-5514 add StrutsProxyService for proxy
detection and resolution
add d4bfc1355 test(proxy): WW-5514 add ProxyService integration tests for
Spring proxies
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 (875af77ca)
\
N -- N -- N
refs/heads/test/WW-5514-spring-proxy-integration-test (d4bfc1355)
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/workflows/codeql.yml | 6 +-
.github/workflows/scorecards-analysis.yaml | 2 +-
.gitignore | 5 +
.../java/org/apache/struts2/StrutsConstants.java | 19 +-
.../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 | 8 +-
.../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 +-
.../apache/struts2/spring/SpringObjectFactory.java | 24 +-
.../apache/struts2/spring/SpringProxyUtilTest.java | 73 +++++
pom.xml | 6 +-
.../2026-02-06-WW-3429-checkbox-prefix-constant.md | 196 +++++++++++++
.../2026-02-06-WW-5294-textfield-warning.md | 186 ++++++++++++
...-02-07-WW-3647-spring-constructor-autowiring.md | 200 +++++++++++++
25 files changed, 1273 insertions(+), 261 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
create mode 100644
thoughts/shared/research/2026-02-07-WW-3647-spring-constructor-autowiring.md