Skip to content

Commit 0a1444b

Browse files
committed
fix CVE-2023-42503 due to djl models (opensearch-project#2011)
Signed-off-by: Xun Zhang <xunzh@amazon.com>
1 parent 592c49a commit 0a1444b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ subprojects {
6868
configurations.all {
6969
// Force spotless depending on newer version of guava due to CVE-2023-2976. Remove after spotless upgrades.
7070
resolutionStrategy.force "com.google.guava:guava:32.1.2-jre"
71+
resolutionStrategy.force 'org.apache.commons:commons-compress:1.25.0'
7172
}
7273
}
7374

memory/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ plugins {
2626
dependencies {
2727
implementation project(path: ":${rootProject.name}-common", configuration: 'shadow')
2828
implementation group: 'org.opensearch', name: 'opensearch', version: "${opensearch_version}"
29-
implementation group: 'org.apache.httpcomponents.core5', name: 'httpcore5', version: '5.2.1'
29+
implementation group: 'org.apache.httpcomponents.core5', name: 'httpcore5', version: '5.2.2'
3030
implementation "org.opensearch:common-utils:${common_utils_version}"
3131
implementation group: 'com.google.guava', name: 'guava', version: '32.1.2-jre'
3232
testImplementation (group: 'junit', name: 'junit', version: '4.13.2') {

0 commit comments

Comments
 (0)