This is an automated email from the ASF dual-hosted git repository. ggregory pushed a change to branch release in repository https://gitbox.apache.org/repos/asf/commons-io.git.
from c0fc816 Bump to next development version add 498cd03 Minor changes: (#243) add ff02373 Minor changes #243. add 021879c Merge branch 'master' of https://ggreg...@gitbox.apache.org/repos/asf/commons-io.git add 5babd2a Bump mockito-inline from 3.11.0 to 3.11.2 #247. add dc5d811 Bump mockito-inline from 3.11.0 to 3.11.2 (#247) add b8690c0 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-io.git add f56427e FileUtils#deleteDirectory(File) exception Javadoc inaccurate update #245. add 5c1a230 IO-724 deleteDirectory exception javadoc inaccurate update (#245) add 369e45f Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-io.git add 807b46a Javadoc. add d6ca819 Add SymbolicLinkFileFilter. add 8dee591 Bump checkstyle from 8.43 to 8.44 (#248) add 4fcfc45 Bump checkstyle from 8.43 to 8.44 #248. add 726bc4e Add test to make sure the setter of AndFileFilter works correctly (#244) add 407032c Add test to make sure the setter of AndFileFilter works correctly #244. add 5a0096d [IO-741] FileUtils.listFiles does not list matching files if File parameter is a symbolic link. add b2811e8 Replace construction of FileInputStream and FileOutputStream objects with Files NIO APIs. (#221) add a71e129 Replace construction of FileInputStream and FileOutputStream objects with Files NIO APIs. #221. add a8d564f Add and use XmlStreamReader(Path). add 3b9447d Bump jmh.version from 1.27 to 1.32 (#237) add 8c5d235 Bump jmh.version from 1.27 to 1.32 #237. add 39a8cbe JApiCmp has been fixed to longer need a special configuration to mark new default interface methods as binary compatible. add 2108506 Update my developer entry. add fae4dd3 Use lambdas. add 5a39a78 Use Stream.of(). add 4d9c487 Bump spotbugs from 4.2.3 to 4.3.0 #249. add 4d5da00 Bump spotbugs from 4.2.3 to 4.3.0 (#249) add eaf44e4 Merge branch 'master' of https://ggreg...@gitbox.apache.org/repos/asf/commons-io.git add 4654ca2 Fix compiler warning. add 35d7843 Fix IndexOutOfBoundsException in IOExceptionList contructors. add 083c584 Remove IOException from the method signatures that no longer throw IOException. This maintains binary compatibility but not source compatibility. - FilenameUtils directoryContains(String, String) - BoundedReader BoundedReader(java.io.Reader, int) - IOUtils lineIterator(java.io.InputStream, Charset) lineIterator(java.io.InputStream, String) toByteArray(String) toInputSt [...] add ded7f22 Remove "line" in-line comments. add 914ec63 Prepare for 2.11.0 RC1. No new revisions were added by this update. Summary of changes: README.md | 4 +- RELEASE-NOTES.txt | 78 +++++ pom.xml | 56 ++-- src/changes/changes.xml | 56 +++- src/main/java/org/apache/commons/io/CopyUtils.java | 4 +- .../org/apache/commons/io/DirectoryWalker.java | 4 - .../java/org/apache/commons/io/FileCleaner.java | 2 - .../org/apache/commons/io/FileCleaningTracker.java | 4 - .../org/apache/commons/io/FileSystemUtils.java | 8 - src/main/java/org/apache/commons/io/FileUtils.java | 20 +- .../java/org/apache/commons/io/FilenameUtils.java | 18 +- .../org/apache/commons/io/IOExceptionList.java | 4 +- src/main/java/org/apache/commons/io/IOUtils.java | 25 +- .../java/org/apache/commons/io/LineIterator.java | 2 - .../java/org/apache/commons/io/file/PathUtils.java | 15 +- .../commons/io/filefilter/FileFileFilter.java | 4 +- .../commons/io/filefilter/FileFilterUtils.java | 6 +- ...FileFilter.java => SymbolicLinkFileFilter.java} | 29 +- .../org/apache/commons/io/function/IOConsumer.java | 4 +- .../org/apache/commons/io/input/BoundedReader.java | 3 +- .../io/input/BufferedFileChannelInputStream.java | 2 +- .../commons/io/input/CountingInputStream.java | 2 - .../apache/commons/io/input/XmlStreamReader.java | 26 +- .../commons/io/output/CountingOutputStream.java | 2 - .../io/output/DeferredFileOutputStream.java | 6 +- .../commons/io/output/FileWriterWithEncoding.java | 7 +- .../io/output/ThresholdingOutputStream.java | 2 +- src/site/xdoc/download_io.xml | 26 +- src/site/xdoc/index.xml | 19 +- .../apache/commons/io/ByteOrderMarkTestCase.java | 2 - .../apache/commons/io/DirectoryWalkerTestCase.java | 1 - .../commons/io/DirectoryWalkerTestCaseJava4.java | 1 - .../commons/io/FileCleaningTrackerTestCase.java | 6 +- .../commons/io/FileDeleteStrategyTestCase.java | 9 +- .../apache/commons/io/FileSystemUtilsTestCase.java | 9 - .../commons/io/FileUtilsFileNewerTestCase.java | 6 +- .../org/apache/commons/io/FileUtilsTestCase.java | 119 ++++---- .../commons/io/FileUtilsWaitForTestCase.java | 1 - .../apache/commons/io/FilenameUtilsTestCase.java | 19 +- .../commons/io/FilenameUtilsWildcardTestCase.java | 1 - .../java/org/apache/commons/io/IOCaseTestCase.java | 8 - .../apache/commons/io/IOExceptionListTestCase.java | 6 + .../org/apache/commons/io/IOUtilsTestCase.java | 71 ++--- .../apache/commons/io/IOUtilsWriteTestCase.java | 1 - .../apache/commons/io/LineIteratorTestCase.java | 6 +- .../io/comparator/CompositeFileComparatorTest.java | 10 +- .../comparator/LastModifiedFileComparatorTest.java | 8 +- .../io/comparator/SizeFileComparatorTest.java | 8 +- .../io/filefilter/AndFileFilterTestCase.java | 18 ++ .../commons/io/filefilter/FileFilterTestCase.java | 45 ++- .../SymbolicLinkFileFilterTest.java} | 18 +- .../apache/commons/io/input/BoundedReaderTest.java | 3 +- .../org/apache/commons/io/input/TailerTest.java | 17 +- .../commons/io/input/XmlStreamReaderTest.java | 322 +++++++++++---------- .../io/input/compatibility/XmlStreamReader.java | 4 +- .../io/output/DeferredFileOutputStreamTest.java | 4 +- .../io/output/FileWriterWithEncodingTest.java | 4 +- .../commons/io/output/LockableFileWriterTest.java | 7 - .../java/org/apache/commons/io/test/TestUtils.java | 19 +- 59 files changed, 626 insertions(+), 565 deletions(-) copy src/main/java/org/apache/commons/io/filefilter/{FileFileFilter.java => SymbolicLinkFileFilter.java} (78%) copy src/test/java/org/apache/commons/io/{input/ClosedInputStreamTest.java => filefilter/SymbolicLinkFileFilterTest.java} (71%)