This is an automated email from the ASF dual-hosted git repository.
reta pushed a change to branch 3.5.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git
from 3ab8d8e9bf Recording .gitmergeinfo Changes
new cd4f5e4767 Revert temporary excludion of some build agents from the
label (due to persistent issues)
new 334ee45017 CXF-7396: CachedOutputStream doesn't delete temp files
(#2048)
new 029aa6f3db Bump github/codeql-action from 3.26.7 to 3.26.8 (#2079)
new 08b5ed5b68 Update JUnit Jupiter to 5.11.1
new c20bba3ad2 Update commons-lang3 to 3.17.0
new 062ec1c9b9 Fix checkstyle violations
new f034156fe7 Bump github/codeql-action from 3.26.8 to 3.26.9 (#2087)
new addd2603fa Bump actions/checkout from 4.1.7 to 4.2.0 (#2085)
new 276a01133d Bump org.cyclonedx:cyclonedx-maven-plugin from 2.8.1 to
2.8.2 (#2083)
new 815de3cedf Bump actions/setup-java from 4.3.0 to 4.4.0 (#2086)
new 93eeca2740 Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.6
to 3.2.7 (#2089)
new 654d8a82e6 Recording .gitmergeinfo Changes
The 12 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:
.github/workflows/codeql-analysis.yml | 8 +-
.github/workflows/pull-request-build.yml | 4 +-
.gitmergeinfo | 16 ++
Jenkinsfile | 6 +-
core/pom.xml | 5 +
.../java/org/apache/cxf/io/CachedConstants.java | 8 +
.../java/org/apache/cxf/io/CachedOutputStream.java | 22 +-
.../apache/cxf/io/CachedOutputStreamCleaner.java | 25 ++-
.../cxf/io/DelayedCachedOutputStreamCleaner.java | 240 +++++++++++++++++++++
.../main/resources/META-INF/cxf/bus-extensions.txt | 2 +-
.../io/DelayedCachedOutputStreamCleanerTest.java | 201 +++++++++++++++++
parent/pom.xml | 4 +-
pom.xml | 4 +-
.../apache/cxf/systest/jaxws/ClientServerTest.java | 44 +++-
14 files changed, 563 insertions(+), 26 deletions(-)
copy
services/xkms/xkms-client/src/main/java/org/apache/cxf/xkms/cache/XKMSClientCache.java
=> core/src/main/java/org/apache/cxf/io/CachedOutputStreamCleaner.java (61%)
create mode 100644
core/src/main/java/org/apache/cxf/io/DelayedCachedOutputStreamCleaner.java
create mode 100644
core/src/test/java/org/apache/cxf/io/DelayedCachedOutputStreamCleanerTest.java