update common-compress to address CVE-2024-25710 CVE-2024-26308 (#16009)

* Update common-compress to 1.26.0 to address CVEs CVE-2024-25710 CVE-2024-26308
* Add commons-codec as a runtime dependency required by common-compress 1.26.0

---------

Co-authored-by: Xavier Léauté <xl+github@xvrl.net>
This commit is contained in:
Jan Werner 2024-02-29 17:05:31 -05:00 committed by GitHub
parent 3acfc95453
commit baaa4a6808
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 4 deletions

View File

@ -507,7 +507,7 @@ name: Apache Commons Codec
license_category: binary
module: java-core
license_name: Apache License version 2.0
version: 1.16.0
version: 1.16.1
libraries:
- commons-codec: commons-codec
notices:
@ -632,7 +632,7 @@ name: Apache Commons Compress
license_category: binary
module: java-core
license_name: Apache License version 2.0
version: 1.24.0
version: 1.26.0
libraries:
- org.apache.commons: commons-compress
notices:

View File

@ -286,7 +286,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.0</version>
<version>1.16.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
@ -572,7 +572,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.24.0</version>
<version>1.26.0</version>
</dependency>
<dependency>
<groupId>org.tukaani</groupId>

View File

@ -81,6 +81,12 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
</dependency>
<!-- commons-codec is an optional dependency of commons-compress starting with 1.26.0 which we require at runtime -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>