You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/12/30 00:11:37 UTC

[commons-io] branch master updated (17b6d78 -> 6bfffe9)

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

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git.


    from 17b6d78  Add FileSystem#supportsDriveLetter().
     new 2c6441a  Minor improvements #177. S
     new 85737d1  Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git
     new 34ce9f0  Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git
     new 6bfffe9  Add Java 17-EA to the GitHub build.

The 4 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/maven.yml | 6 ++++++
 src/changes/changes.xml     | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)


[commons-io] 04/04: Add Java 17-EA to the GitHub build.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 6bfffe96fd68662596564717884ab9d417f57d04
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Dec 29 19:11:32 2020 -0500

    Add Java 17-EA to the GitHub build.
---
 .github/workflows/maven.yml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 90595b0..c05bb69 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -34,6 +34,12 @@ jobs:
           - java: 16-ea
             os: windows-latest
             experimental: true        
+          - java: 17-ea
+            os: ubuntu-latest
+            experimental: true        
+          - java: 17-ea
+            os: windows-latest
+            experimental: true        
       fail-fast: false
         
     steps:


[commons-io] 02/04: Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 85737d13dae292040dd75293bfb6ee4a6b6c3f26
Merge: 2c6441a 18b80a3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Dec 26 10:51:33 2020 -0500

    Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git

 src/main/java/org/apache/commons/io/FileUtils.java | 14 ++--
 .../apache/commons/io/file/NoopPathVisitor.java    |  2 +-
 .../commons/io/filefilter/AndFileFilter.java       |  2 +-
 .../apache/commons/io/filefilter/OrFileFilter.java |  2 +-
 .../apache/commons/io/output/TeeOutputStream.java  |  2 +-
 .../org/apache/commons/io/CharsetsTestCase.java    |  3 +-
 .../java/org/apache/commons/io/CopyUtilsTest.java  | 17 ++---
 .../org/apache/commons/io/FileUtilsTestCase.java   | 16 ++---
 .../org/apache/commons/io/IOUtilsCopyTestCase.java | 41 +++++------
 .../org/apache/commons/io/IOUtilsTestCase.java     | 12 ++--
 .../apache/commons/io/IOUtilsWriteTestCase.java    | 79 +++++++++++-----------
 .../commons/io/input/ReaderInputStreamTest.java    |  3 +-
 .../io/input/UnixLineEndingInputStreamTest.java    |  5 +-
 .../io/input/WindowsLineEndingInputStreamTest.java |  5 +-
 .../commons/io/input/XmlStreamReaderTest.java      |  3 +-
 .../io/monitor/AbstractMonitorTestCase.java        |  2 +-
 .../apache/commons/io/output/ProxyWriterTest.java  |  2 -
 .../commons/io/output/WriterOutputStreamTest.java  |  5 +-
 .../java/org/apache/commons/io/test/TestUtils.java |  3 +-
 19 files changed, 113 insertions(+), 105 deletions(-)


[commons-io] 01/04: Minor improvements #177. S

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 2c6441aa1fefe57efcb7d745e9f92505923e021b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Dec 22 21:54:59 2020 -0500

    Minor improvements #177.
    S
---
 src/changes/changes.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 46e42a4..e1ee024 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -77,7 +77,7 @@ The <action> type attribute can be add,update,fix,remove.
       <action issue="IO-692" dev="ebourg" type="fix" due-to="Matthew Rooney, Emmanuel Bourg">
         PathUtils.deleteFile() no longer throws a NoSuchFileException when applied on a symbolic link pointing
         to a file that doesn't exist.
-      </action>
+      </action>s
       <action issue="IO-694" dev="ggregory" type="fix" due-to="Tan Yee Fan, Gary Gregory">
         Behavior change in FileUtils.copyDirectory() file last modified timestamp preservation. Match Javadoc to code.
       </action>
@@ -138,7 +138,7 @@ The <action> type attribute can be add,update,fix,remove.
         Update maven-surefire-plugin from 2.22.2 to 3.0.0-M5.
       </action>
       <action dev="ggregory" type="update" due-to="Arturo Bernal">
-        Minor improvements #176.
+        Minor improvements #176, 177.s
       </action>
     </release>
     <!-- The release date is the date RC is cut -->


[commons-io] 03/04: Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 34ce9f0989e47daa9a7c821bbaaf84c138aa1117
Merge: 85737d1 17b6d78
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Dec 29 11:52:10 2020 -0500

    Merge branch 'master' of https://ggregory@gitbox.apache.org/repos/asf/commons-io.git

 src/changes/changes.xml                            |  3 +
 .../java/org/apache/commons/io/FileSystem.java     | 48 ++++++++++-----
 .../org/apache/commons/io/FileSystemTestCase.java  | 72 ++++++++++++----------
 3 files changed, 74 insertions(+), 49 deletions(-)