We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae4974 commit 38b9c16Copy full SHA for 38b9c16
1 file changed
build.gradle
@@ -5,6 +5,7 @@ plugins {
5
6
ext['spring-framework.version'] = '6.2.10'
7
ext['tomcat.version'] = '11.0.10'
8
+ext['netty.version'] = '4.2.6.Final' // Due to security vulnerabilities in 4.125.Final and older
9
10
apply from: "${rootDir}/gradle/publish-root.gradle"
11
@@ -87,7 +88,7 @@ subprojects {
87
88
implementation("io.netty:netty-codec-http2:4.2.6.Final") {
89
because("versions below 4.1.124.Final have security vulnerabilities including CVE-2025-55163 - see dependabot #17")
90
}
- implementation("io.netty:netty-codec:4.1.125.Final") {
91
+ implementation("io.netty:netty-codec:4.2.6.Final") {
92
because("versions below 4.1.125.Final have security vulnerabilities including CVE-2025-58057 - see dependabot #21")
93
94
0 commit comments