You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2020/11/11 13:36:04 UTC

[logging-log4j2] branch release-2.x updated: Update Apache Commons dependencies.

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

ggregory pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new 4ea113f  Update Apache Commons dependencies.
4ea113f is described below

commit 4ea113fefb41bd3fcdf3bfe0ed78c57b5d1ce5a9
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Nov 11 08:35:58 2020 -0500

    Update Apache Commons dependencies.
    
    - Update commons-codec:commons-codec 1.14 -> 1.15.
    - Update org.apache.commons:commons-lang3 3.10 -> 3.11.
    - Update org.apache.commons:commons-pool2 2.8.1 -> 2.9.0.
    - Update org.apache.commons:commons-dbcp2 2.4.0 -> 2.8.0.
    - Update commons-io:commons-io 2.7 -> 2.8.0.
---
 log4j-jdbc-dbcp2/pom.xml |  1 -
 pom.xml                  | 16 +++++++++++++---
 src/changes/changes.xml  | 15 +++++++++++++++
 3 files changed, 28 insertions(+), 4 deletions(-)

diff --git a/log4j-jdbc-dbcp2/pom.xml b/log4j-jdbc-dbcp2/pom.xml
index bf6ac33..1b3a5a0 100644
--- a/log4j-jdbc-dbcp2/pom.xml
+++ b/log4j-jdbc-dbcp2/pom.xml
@@ -36,7 +36,6 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-dbcp2</artifactId>
-      <version>2.4.0</version>
     </dependency>
     <!-- Test Dependencies -->
     <dependency>
diff --git a/pom.xml b/pom.xml
index 736cc9d..28ce8aa 100644
--- a/pom.xml
+++ b/pom.xml
@@ -305,12 +305,22 @@
       <dependency>
         <groupId>commons-codec</groupId>
         <artifactId>commons-codec</artifactId>
-        <version>1.14</version>
+        <version>1.15</version>
       </dependency>
       <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-lang3</artifactId>
-        <version>3.10</version>
+        <version>3.11</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-pool2</artifactId>
+        <version>2.9.0</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-dbcp2</artifactId>
+        <version>2.8.0</version>
       </dependency>
       <dependency>
         <groupId>ch.qos.logback</groupId>
@@ -853,7 +863,7 @@
       <dependency>
         <groupId>commons-io</groupId>
         <artifactId>commons-io</artifactId>
-        <version>2.7</version>
+        <version>2.8.0</version>
         <scope>test</scope>
       </dependency>
       <!-- Used for testing JsonTemplateLayout -->
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 13b0ef0..9d9e752 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -33,6 +33,21 @@
       <action dev="ggregory" type="update">
         Update org.fusesource.jansi:jansi 1.17.1 -> 2.0.1.
       </action>
+      <action dev="ggregory" type="update">
+        Update commons-codec:commons-codec 1.14 -> 1.15.
+      </action>
+      <action dev="ggregory" type="update">
+        Update org.apache.commons:commons-lang3 3.10 -> 3.11.
+      </action>
+      <action dev="ggregory" type="update">
+        Update org.apache.commons:commons-pool2 2.8.1 -> 2.9.0.
+      </action>
+      <action dev="ggregory" type="update">
+        Update org.apache.commons:commons-dbcp2 2.4.0 -> 2.8.0.
+      </action>
+      <action dev="ggregory" type="update">
+        Update commons-io:commons-io 2.7 -> 2.8.0.
+      </action>
     </release>
     <release version="2.14.0" date="2020-11-06" description="GA Release 2.14.0">
       <action issue="LOG4J2-2925" dev="rgoers" type="fix">