This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.3.0
in repository https://gitbox.apache.org/repos/asf/commons-io.git.


 discard 202eb03  Bump spotbugs-maven-plugin from 4.2.3 to 4.3.0
     add 835a8d4  Add tests to BrokenWriterTest.
     add d269f16  Minor refactorings.
     add 9268f57  Add UncheckedFilterWriter.
     add 3ff59a7  Rewrite test using JUnit 5 APIs.
     add 38b7b49  Better description.
     add 95248e3  Rewrite test using JUnit 5 APIs.
     add 45af6de  Comment empty block.
     add dcb3225  Remove extra empty lines.
     add 018eaa5  Fix version.
     add 61c1b0d  Add StringInputStream.
     add 93228b3  Add UncheckedFilterInputStream.
     add b8b0766  Add BrokenInputStream.INSTANCE.
     add 982bc5e  Add ClosedInputStream.INSTANCE and deprecate 
CLOSED_INPUT_STREAM.
     add 6a65e0d  Add ClosedReader.INSTANCE and deprecate CLOSED_READER.
     add 01e1b45  Add BrokenWriter.INSTANCE.
     add bf17c07  Add BrokenWriter.INSTANCE.
     add 0ca143f  Add ClosedOutputStream.INSTANCE and deprecate 
CLOSED_OUTPUT_STREAM.
     add 2838749  Add ClosedWriter.INSTANCE and deprected CLOSED_WRITER.
     add 1362797  Fix XML.
     add ac5b3bb  Add NullOutputStream.INSTANCE and deprecate 
NULL_OUTPUT_STREAM.
     add 16a8d5d  Add NullPrintStream.INSTANCE and deprecate NULL_PRINT_STREAM.
     add fbc646f  Add NullWriter.INSTANCE and deprecate NULL_WRITER.
     add f0fba1b  Add NullInputStream.INSTANCE.
     add f3b4f67  Add NullReader.INSTANCE.
     add e51f61d  Better Javadoc and inline comments.
     add 3aeb39c  Bump spotbugs-maven-plugin from 4.2.3 to 4.3.0

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   (202eb03)
            \
             N -- N -- N   
refs/heads/dependabot/maven/com.github.spotbugs-spotbugs-maven-plugin-4.3.0 
(3aeb39c)

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:
 src/changes/changes.xml                            |  46 +++++-
 src/main/java/org/apache/commons/io/IOUtils.java   |   2 +-
 .../commons/io/input/AutoCloseInputStream.java     |   2 +-
 .../apache/commons/io/input/BrokenInputStream.java |   7 +
 .../commons/io/input/CloseShieldInputStream.java   |   2 +-
 .../apache/commons/io/input/CloseShieldReader.java |   2 +-
 .../apache/commons/io/input/ClosedInputStream.java |  22 ++-
 .../org/apache/commons/io/input/ClosedReader.java  |  18 +-
 .../apache/commons/io/input/NullInputStream.java   |   7 +
 .../org/apache/commons/io/input/NullReader.java    |   7 +
 .../commons/io/input/ReversedLinesFileReader.java  |   2 +-
 .../commons/io/input/UncheckedBufferedReader.java  |  24 +--
 .../io/input/UncheckedFilterInputStream.java       | 146 ++++++++++++++++
 .../commons/io/input/UncheckedFilterReader.java    |  22 ++-
 .../io/output/AbstractByteArrayOutputStream.java   |   2 +-
 .../org/apache/commons/io/output/BrokenWriter.java |   7 +
 .../commons/io/output/CloseShieldOutputStream.java |   2 +-
 .../commons/io/output/CloseShieldWriter.java       |   2 +-
 .../commons/io/output/ClosedOutputStream.java      |  14 +-
 .../org/apache/commons/io/output/ClosedWriter.java |  32 ++--
 .../apache/commons/io/output/NullOutputStream.java |  14 +-
 .../apache/commons/io/output/NullPrintStream.java  |  14 +-
 .../org/apache/commons/io/output/NullWriter.java   |  14 +-
 .../io/output/ThresholdingOutputStream.java        |   2 +-
 .../UncheckedFilterWriter.java}                    | 121 ++++++++------
 .../java/org/apache/commons/io/CopyUtilsTest.java  |   3 +-
 .../java/org/apache/commons/io/DemuxTestCase.java  |   3 +-
 .../org/apache/commons/io/IOUtilsCopyTestCase.java |   2 +-
 .../org/apache/commons/io/IOUtilsTestCase.java     |   6 +-
 .../commons/io/input/AbstractInputStreamTest.java  |   5 +-
 .../commons/io/input/BOMInputStreamTest.java       |   9 +-
 .../commons/io/input/BoundedInputStreamTest.java   |   4 +-
 .../commons/io/input/BrokenInputStreamTest.java    |  62 ++-----
 .../commons/io/input/CountingInputStreamTest.java  |   9 +-
 .../MessageDigestCalculatingInputStreamTest.java   |   5 +-
 .../io/input/ObservableInputStreamTest.java        |  14 +-
 .../ReversedLinesFileReaderTestParamFile.java      |   2 +-
 .../apache/commons/io/input/StringInputStream.java |  78 +++++++++
 .../commons/io/input/StringInputStreamTest.java    |  47 ++++++
 .../io/input/SwappedDataInputStreamTest.java       |   2 +-
 .../commons/io/input/TaggedInputStreamTest.java    |   4 +-
 .../apache/commons/io/input/TaggedReaderTest.java  |   4 +-
 .../io/input/UncheckedBufferedReaderTest.java      |   4 +-
 .../io/input/UncheckedFilterInputStreamTest.java   | 144 ++++++++++++++++
 .../io/input/UncheckedFilterReaderTest.java        |   4 +-
 .../io/input/WindowsLineEndingInputStreamTest.java |  37 ++---
 .../commons/io/input/XmlStreamReaderTest.java      |  16 +-
 .../io/input/XmlStreamReaderUtilitiesTest.java     |   3 +-
 .../buffer/CircularBufferInputStreamTest.java      |  25 ++-
 .../XmlStreamReaderUtilitiesCompatibilityTest.java |   4 +-
 .../commons/io/output/BrokenOutputStreamTest.java  |  49 ++----
 .../apache/commons/io/output/BrokenWriterTest.java |  12 ++
 .../commons/io/output/CloseShieldWriterTest.java   |   1 +
 .../io/output/CountingOutputStreamTest.java        |   2 +-
 .../commons/io/output/NullOutputStreamTest.java    |   4 +-
 .../commons/io/output/NullPrintStreamTest.java     |   2 +-
 .../apache/commons/io/output/NullWriterTest.java   |   2 +-
 .../io/output/ProxyCollectionWriterTest.java       |  42 ++---
 .../apache/commons/io/output/ProxyWriterTest.java  |   6 +-
 .../commons/io/output/TaggedOutputStreamTest.java  |   2 +-
 .../apache/commons/io/output/TaggedWriterTest.java |   2 +-
 .../apache/commons/io/output/TeeWriterTest.java    |  42 ++---
 .../io/output/UncheckedFilterWriterTest.java       | 183 +++++++++++++++++++++
 .../commons/io/test/ThrowOnCloseInputStream.java   |   5 +-
 .../commons/io/test/ThrowOnCloseOutputStream.java  |   4 +-
 .../apache/commons/io/test/ThrowOnCloseReader.java |   5 +-
 .../apache/commons/io/test/ThrowOnCloseWriter.java |   4 +-
 67 files changed, 1049 insertions(+), 347 deletions(-)
 create mode 100644 
src/main/java/org/apache/commons/io/input/UncheckedFilterInputStream.java
 copy src/main/java/org/apache/commons/io/{input/UncheckedFilterReader.java => 
output/UncheckedFilterWriter.java} (50%)
 create mode 100644 
src/test/java/org/apache/commons/io/input/StringInputStream.java
 create mode 100644 
src/test/java/org/apache/commons/io/input/StringInputStreamTest.java
 create mode 100644 
src/test/java/org/apache/commons/io/input/UncheckedFilterInputStreamTest.java
 create mode 100644 
src/test/java/org/apache/commons/io/output/UncheckedFilterWriterTest.java

Reply via email to