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/04/09 14:19:12 UTC

[commons-io] branch master updated: Update test dependencies.

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


The following commit(s) were added to refs/heads/master by this push:
     new ca3c823  Update test dependencies.
ca3c823 is described below

commit ca3c82313fa50dcd13740726ec60967fa6036c07
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Apr 9 10:19:07 2020 -0400

    Update test dependencies.
    
    - Update tests org.junit-pioneer:junit-pioneer 0.3.0 -> 0.5.6.
    - Update tests org.junit.jupiter:junit-jupiter 5.5.2 -> 5.6.1.
    - Update tests org.mockito:mockito-core 3.0.0 -> 3.3.3.
---
 pom.xml                 | 6 +++---
 src/changes/changes.xml | 9 +++++++++
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 076916f..a70adb9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -233,19 +233,19 @@ file comparators, endian transformation classes, and much more.
     <dependency>
       <groupId>org.junit.jupiter</groupId>
       <artifactId>junit-jupiter</artifactId>
-      <version>5.5.2</version>
+      <version>5.6.1</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.junit-pioneer</groupId>
       <artifactId>junit-pioneer</artifactId>
-      <version>0.3.0</version>
+      <version>0.5.6</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-core</artifactId>
-      <version>3.0.0</version>
+      <version>3.3.3</version>
       <scope>test</scope>
     </dependency>
     <dependency>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 4379cc9..0f4d8f0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -189,6 +189,15 @@ The <action> type attribute can be add,update,fix,remove.
       <action type="update" dev="ggregory" due-to="Gary Gregory">
          Update tests from Apache Commons Lang 3.9 to 3.10.
       </action>
+      <action type="update" dev="ggregory" due-to="Gary Gregory">
+         Update tests org.junit-pioneer:junit-pioneer 0.3.0 -> 0.5.6.
+      </action>
+      <action type="update" dev="ggregory" due-to="Gary Gregory">
+         Update tests org.junit.jupiter:junit-jupiter 5.5.2 -> 5.6.1.
+      </action>
+      <action type="update" dev="ggregory" due-to="Gary Gregory">
+         Update tests org.mockito:mockito-core 3.0.0 -> 3.3.3.
+      </action>
       <action issue="IO-648" dev="ggregory" type="add" due-to="Adam Retter, Alex Herbert, Gary Gregory">
          Refactor ByteArrayOutputStream into synchronized and unsynchronized versions #108.
       </action>