mirror of https://github.com/apache/druid.git
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:
parent
3acfc95453
commit
baaa4a6808
|
@ -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:
|
||||
|
|
4
pom.xml
4
pom.xml
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue