Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolves transitive dependencies for 2.7.0 #4308

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ subprojects {
}
implementation('org.apache.zookeeper:zookeeper') {
version {
require '3.7.2'
require '3.8.4'
}
because 'Fixes CVE-2023-44981'
because 'Fixes CVE-2024-23944, CVE-2023-44981'
}
implementation('com.google.code.gson:gson') {
version {
Expand Down Expand Up @@ -224,12 +224,6 @@ subprojects {
}
because 'Fixes CVE-2023-51074 from transitive dependencies'
}
implementation('org.bitbucket.b_c:jose4j') {
version {
require '0.9.3'
}
because 'CVE from transitive dependencies'
}
implementation('org.scala-lang:scala-library') {
version {
require '2.13.12'
Expand Down
6 changes: 6 additions & 0 deletions data-prepper-plugins/kafka-plugins/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ dependencies {
}
because 'Fixes SNYK-JAVA-ORGMOZILLA-1314295.'
}
implementation('org.bitbucket.b_c:jose4j') {
version {
require '0.9.4'
}
because 'Fixes CVE-2023-51775 and other CVEs from transitive dependencies'
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion data-prepper-plugins/parquet-codecs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
version {
require '9.37.1'
}
because 'Fixes CVE-2021-31684 and CVE-2023-1370 by using a newer shaded version of json-smart.'
because 'Fixes CVE-2023-52428, CVE-2021-31684 and CVE-2023-1370 by using a newer shaded version of json-smart.'
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions data-prepper-plugins/s3-sink/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ dependencies {
constraints {
implementation('com.nimbusds:nimbus-jose-jwt') {
version {
require '9.37.1'
require '9.37.2'
}
because 'Fixes CVE-2021-31684 and CVE-2023-1370 by using a newer shaded version of json-smart.'
because 'Fixes CVE-2023-52428, CVE-2021-31684 and CVE-2023-1370 by using a newer shaded version of json-smart.'
}
}
}
Expand Down
Loading