Skip to content

Commit 7a07243

Browse files
authored
* address commons-lang3 CVE-2025-48924 Signed-off-by: Brian Flores <[email protected]> * pin netty to 4.2.5.Final version address CVE-2025-55163 Signed-off-by: Brian Flores <[email protected]> * force all subProjects to use updated common-lang3 version Signed-off-by: Brian Flores <[email protected]> --------- Signed-off-by: Brian Flores <[email protected]>
1 parent c12440c commit 7a07243

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ allprojects {
7171

7272
}
7373

74+
7475
subprojects {
7576
configurations {
7677
testImplementation.extendsFrom compileOnly
@@ -80,6 +81,8 @@ subprojects {
8081
// Force spotless depending on newer version of guava due to CVE-2023-2976. Remove after spotless upgrades.
8182
resolutionStrategy.force "com.google.guava:guava:32.1.3-jre"
8283
resolutionStrategy.force 'org.apache.commons:commons-compress:1.26.0'
84+
resolutionStrategy.force "org.apache.commons:commons-lang3:${versions.commonslang}"
85+
8386
}
8487
}
8588

ml-algorithms/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ dependencies {
8888
}
8989
implementation('net.minidev:json-smart:2.5.2')
9090
implementation group: 'org.json', name: 'json', version: '20231013'
91-
implementation group: 'software.amazon.awssdk', name: 'netty-nio-client', version: "2.30.18"
91+
implementation(enforcedPlatform("io.netty:netty-bom:4.2.5.Final"))
92+
implementation("software.amazon.awssdk:netty-nio-client")
93+
9294
testImplementation("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
9395
testImplementation("com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}")
9496
testImplementation group: 'com.networknt' , name: 'json-schema-validator', version: '1.4.0'

search-processors/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ repositories {
2727
mavenLocal()
2828
}
2929

30+
3031
dependencies {
3132
implementation project(path: ":${rootProject.name}-common", configuration: 'shadow')
3233
compileOnly group: 'org.opensearch', name: 'opensearch', version: "${opensearch_version}"

0 commit comments

Comments
 (0)