You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/01/11 08:06:46 UTC

[kyuubi] branch master updated: [KYUUBI #4132] Bump `commons-lang3` to 3.12.0 and `commons-io` to 2.11.0

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

chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new 5978bcf02 [KYUUBI #4132] Bump `commons-lang3` to 3.12.0 and `commons-io` to 2.11.0
5978bcf02 is described below

commit 5978bcf02e064b5af89b4b9701bdf2800628d303
Author: liangbowen <li...@gf.com.cn>
AuthorDate: Wed Jan 11 16:06:35 2023 +0800

    [KYUUBI #4132] Bump `commons-lang3` to 3.12.0 and `commons-io` to 2.11.0
    
    ### _Why are the changes needed?_
    
    Upgrade all outdated Apache Commons series dependencies released in 2020 to the latest versions released in 2021.
    - bump `commons-io` from 2.8.0 to 2.11.0 (release notes: https://commons.apache.org/proper/commons-io/changes-report.html#a2.11.0)
    - bump `commons-lang3` from 3.10 to 3.12.0 (release notes: https://commons.apache.org/proper/commons-lang/changes-report.html#a3.12.0)
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4132 from bowenliang123/bump-apache-commons.
    
    Closes #4132
    
    2b8c7150 [liangbowen] update dependencyList
    385ecc11 [liangbowen] bump commons-lang3 from 3.10 to 3.12.0
    a452b611 [liangbowen] bump commons-io from 2.8.0 to 2.11.0
    
    Authored-by: liangbowen <li...@gf.com.cn>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 dev/dependencyList | 2 +-
 pom.xml            | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev/dependencyList b/dev/dependencyList
index 275914f83..440f8a447 100644
--- a/dev/dependencyList
+++ b/dev/dependencyList
@@ -25,7 +25,7 @@ classgraph/4.8.138//classgraph-4.8.138.jar
 commons-codec/1.15//commons-codec-1.15.jar
 commons-collections/3.2.2//commons-collections-3.2.2.jar
 commons-lang/2.6//commons-lang-2.6.jar
-commons-lang3/3.10//commons-lang3-3.10.jar
+commons-lang3/3.12.0//commons-lang3-3.12.0.jar
 commons-logging/1.1.3//commons-logging-1.1.3.jar
 curator-client/2.12.0//curator-client-2.12.0.jar
 curator-framework/2.12.0//curator-framework-2.12.0.jar
diff --git a/pom.xml b/pom.xml
index a46ae0773..27cfd4776 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,9 +124,9 @@
         <commons-cli.version>1.5.0</commons-cli.version>
         <commons-codec.version>1.15</commons-codec.version>
         <commons-collections.version>3.2.2</commons-collections.version>
-        <commons-io.version>2.8.0</commons-io.version>
+        <commons-io.version>2.11.0</commons-io.version>
         <commons-lang.version>2.6</commons-lang.version>
-        <commons-lang3.version>3.10</commons-lang3.version>
+        <commons-lang3.version>3.12.0</commons-lang3.version>
         <curator.version>2.12.0</curator.version>
         <etcd.version>0.7.3</etcd.version>
         <delta.version>2.2.0</delta.version>