Skip to content

security(deps): force netty bump to 4.1.118 to mitigate CVE-2025-24970 #631

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

Merged
merged 1 commit into from
Feb 20, 2025
Merged
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
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ dependencies {
exclude group: "org.slf4j"
// recheck when operator-framework is upgraded
exclude group: 'com.squareup.okio', module: 'okio'
// vulnerability in 4.1.117.Final, may be removed when netty is updated in operator framework
exclude group: 'io.netty', module: 'netty-common'
}
implementation 'io.netty:netty-common:4.1.118.Final'
annotationProcessor "io.javaoperatorsdk:operator-framework:${operatorFrameworkVersion}", {
// self managed to avoid conflicts
exclude group: "org.slf4j"
Expand Down Expand Up @@ -140,6 +143,8 @@ dependencies {
exclude group: "org.slf4j"
exclude group: 'com.squareup.okio', module: 'okio'
exclude group: 'junit', module: 'junit'
// vulnerability in 4.1.117.Final
exclude group: 'io.netty', module: 'netty-common'
}
// CVE-2020-15250 in 4.12
// -> pulled transitively from OkHttp3 mockwebserver used by kubernetes-server-mock
Expand Down
Loading