This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/org.apache.commons-commons-parent-70
in repository https://gitbox.apache.org/repos/asf/commons-compress.git
discard 8cc9ff507 Bump org.apache.commons:commons-parent from 69 to 70
add bccdc3f0d Show Maven stack traces on errors in GH CI
add 5b2187cd7 Revert parent from 70 to 69
add 70739a419 Use try-with-resources
add 464c1d059 Bump actions/checkout from 4.1.5 to 4.1.6 (#530)
add 41da00244 Bump github/codeql-action from 3.25.4 to 3.25.5 (#532)
add 57d47ddeb Bump codecov/codecov-action from 4.3.1 to 4.4.0 (#531)
add 52b2f468a Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-compress.git
add 3f9d03a55 Use try-with-resources
add ff1a9a7db Use try-with-resources
add 0dbe53b1a Use try-with-resources
add d633bcd7b Add @SuppressWarnings
add d94d85f0f Add @SuppressWarnings
add 9e7150096 Use try-with-resources
add 84788735b Use try-with-resources
add cff82b424 Use try-with-resources
add 6a5d4ba3b Better internal name
add aab830d13 Avoid NullPointerException in
java.nio.channels.spi.AbstractInterruptibleChannel.close() when calling
org.apache.commons.compress.archivers.zip.FileRandomAccessOutputStream.close()
add a52684345 Fix SpotBugs NP_NULL_PARAM_DEREF in Sets.newHashSet()
add 52ba5cfd7 Use try-with-resources
add 1c314a2d1 Add @SuppressWarnings
add 13b6fbacd Use try-with-resources
add b41a81845 Use try-with-resources
add fc506b78c Use try-with-resources
add 2f5419b9f Remove unused exceptions in method signatures
add 5602d0d84 Fix test
add a3a6c9b78 Revert "Use try-with-resources"
add 59f3af555 Merge branch 'master' of
https://gitbox.apache.org/repos/asf/commons-compress.git
add a43afa1e9 No need to qualify own name
add c1919f43f Upper case private static final name
add 71db2a654 Javadoc
add 25dc09b2b Refactor constant
add 62b9eaed5 Refactor common code
add eaa70f7f0 Document empty block
add 2225b8bcc Javadoc
add a9d194407 Javadoc
add 1d11c2bf9 Javadoc
add f27ec4441 Javadoc
add e0e1c2ba5 Javadoc
add bc721bd07 Javadoc
add edda266ed Make parameter final
add 309588c08 Javadoc
add da77c2a26 Javadoc
add 9f7cd3372 Private class' method PackingLogger.setVerbose(boolean)
should be private
add d6f2e8069 Add exceptions for the next version of SpotBugs (from
commons-parent 70)
add 8cec0d90a Prepare for the next release candidate
add 646ee94da Javadoc
add 95727006c Prepare for the next release candidate
add bb91d16ae Bump to next development version
add 5359aacef Merge branch 'release'
add 9f58766be Bump org.apache.commons:commons-parent from 69 to 70
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 (8cc9ff507)
\
N -- N -- N
refs/heads/dependabot/maven/org.apache.commons-commons-parent-70 (9f58766be)
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-analysis.yml | 6 +-
.github/workflows/coverage.yml | 4 +-
.github/workflows/maven.yml | 2 +-
.github/workflows/scorecards-analysis.yml | 4 +-
README.md | 4 +-
RELEASE-NOTES.txt | 141 +++++++++++++++-
pom.xml | 4 +-
src/changes/changes.xml | 6 +-
src/changes/release-notes.vm | 3 -
src/conf/spotbugs-exclude-filter.xml | 23 ++-
.../compress/archivers/sevenz/SevenZFile.java | 16 +-
.../zip/FileRandomAccessOutputStream.java | 4 +-
.../archivers/zip/ZipArchiveInputStream.java | 4 +-
.../commons/compress/archivers/zip/ZipFile.java | 8 +-
.../commons/compress/compressors/bzip2/CRC.java | 22 +--
.../commons/compress/compressors/lz4/XXHash32.java | 2 +-
.../commons/compress/harmony/pack200/Archive.java | 4 +-
.../commons/compress/harmony/pack200/BandSet.java | 30 ++--
.../compress/harmony/pack200/PackingOptions.java | 7 +-
.../compress/harmony/pack200/PackingUtils.java | 2 +-
.../commons/compress/harmony/pack200/Segment.java | 1 +
.../compress/harmony/unpack200/Segment.java | 2 +-
.../unpack200/SegmentConstantPoolArrayCache.java | 8 +-
.../harmony/unpack200/bytecode/CPNameAndType.java | 2 +-
.../harmony/unpack200/bytecode/CPUTF8.java | 2 +-
.../utils/MultiReadOnlySeekableByteChannel.java | 22 +--
.../org/apache/commons/compress/utils/Sets.java | 4 +-
src/site/xdoc/download_compress.xml | 26 +--
.../archivers/ArchiveStreamFactoryTest.java | 1 +
.../archivers/tar/TarArchiveInputStreamTest.java | 1 +
.../zip/FileRandomAccessOutputStreamTest.java | 15 +-
.../compress/archivers/zip/ZipFileTest.java | 28 ++--
.../compress/archivers/zip/ZipIoUtilTest.java | 181 +++++++++++----------
.../commons/compress/compressors/GZipTest.java | 7 +-
.../compressors/deflate64/HuffmanDecoderTest.java | 117 +++++++------
.../compressors/z/ZCompressorInputStreamTest.java | 7 +-
.../compress/harmony/pack200/ArchiveTest.java | 40 ++---
.../compress/harmony/unpack200/SegmentTest.java | 32 ++--
.../SetsTest.java} | 22 +--
.../ZipSplitReadOnlySeekableByteChannelTest.java | 7 +-
40 files changed, 495 insertions(+), 326 deletions(-)
copy
src/test/java/org/apache/commons/compress/{compressors/gzip/GzipParametersTest.java
=> utils/SetsTest.java} (64%)