This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git.
from c08d2d4 Use a link to TestTomcat in Git instead of SVN new 6daba8e Align with 10.0.x and 9.0.x new 07bbf4a Reduce memory footprint of closed http/2 streams new 50a931a Reduce memory footprint of closed http/2 streams new 5295fbc Reduce memory footprint of closed http/2 streams new fe31cb6 Reduce memory footprint of closed http/2 streams new d6ddfaa Reduce memory footprint of closed http/2 streams new b69d0c7 Reduce memory footprint of closed http/2 streams new 8a0ab84 Fully replace Stream with RecycledStream new 3d3060b Refactor the pruning so more stream info is retained for longer new d64f3d5 Update changelog new de7f52b Optimize the iteration when closing idle streams new 55b8e01 Fix 64735 ServletContext.addJspFile() always fails with SecurityManager new 3e5dd5c Fix back-port of new unit test The 13 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: build.properties.default | 6 +- build.xml | 17 +- .../catalina/core/ApplicationContextFacade.java | 5 + .../apache/coyote/http2/AbstractNonZeroStream.java | 143 +++++++++++ java/org/apache/coyote/http2/AbstractStream.java | 11 +- .../apache/coyote/http2/Http2UpgradeHandler.java | 273 +++++++++++++-------- .../http2/{HeaderSink.java => RecycledStream.java} | 34 ++- java/org/apache/coyote/http2/Stream.java | 98 +------- .../apache/coyote/http2/StreamStateMachine.java | 21 +- ...estApplicationContextFacadeSecurityManager.java | 153 ++++++++++++ .../util/security/SecurityManagerBaseTest.java | 50 ++++ webapps/docs/changelog.xml | 10 + 12 files changed, 597 insertions(+), 224 deletions(-) create mode 100644 java/org/apache/coyote/http2/AbstractNonZeroStream.java copy java/org/apache/coyote/http2/{HeaderSink.java => RecycledStream.java} (58%) create mode 100644 test/org/apache/catalina/core/TestApplicationContextFacadeSecurityManager.java create mode 100644 test/org/apache/tomcat/util/security/SecurityManagerBaseTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org