From c1325e5e44d61c87d0ed28f09ae49020f03448df Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Mon, 27 Jul 2026 12:02:14 -0400 Subject: [PATCH] chore: resolve open dependabot security alerts - io.netty:netty-codec-http 4.2.15.Final -> 4.2.16.Final (alerts #48, #49, #50, #51, #52, #53) - io.netty:netty-codec-http2 4.2.15.Final -> 4.2.16.Final (alert #54) - io.netty:netty-codec-compression 4.2.15.Final -> 4.2.16.Final (alert #55) - io.netty:netty-codec, netty-handler, netty-handler-proxy, netty-common 4.2.15.Final -> 4.2.16.Final (transitive netty modules pulled in via alert #56 and related advisories) --- build.gradle | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/build.gradle b/build.gradle index c5f6934b..fa8436b2 100644 --- a/build.gradle +++ b/build.gradle @@ -13,12 +13,12 @@ buildscript { // Force patched versions of vulnerable transitive dependencies in the build classpath configurations.classpath { resolutionStrategy { - force 'io.netty:netty-codec-http:4.2.15.Final' - force 'io.netty:netty-codec-http2:4.2.15.Final' - force 'io.netty:netty-codec:4.2.15.Final' - force 'io.netty:netty-handler:4.2.15.Final' - force 'io.netty:netty-handler-proxy:4.2.15.Final' - force 'io.netty:netty-common:4.2.15.Final' + force 'io.netty:netty-codec-http:4.2.16.Final' + force 'io.netty:netty-codec-http2:4.2.16.Final' + force 'io.netty:netty-codec:4.2.16.Final' + force 'io.netty:netty-handler:4.2.16.Final' + force 'io.netty:netty-handler-proxy:4.2.16.Final' + force 'io.netty:netty-common:4.2.16.Final' force 'org.bitbucket.b_c:jose4j:0.9.6' force 'org.jdom:jdom2:2.0.6.1' force 'com.google.protobuf:protobuf-java:3.25.5' @@ -37,12 +37,12 @@ buildscript { subprojects { configurations.configureEach { resolutionStrategy { - force 'io.netty:netty-codec-http:4.2.15.Final' - force 'io.netty:netty-codec-http2:4.2.15.Final' - force 'io.netty:netty-codec:4.2.15.Final' - force 'io.netty:netty-handler:4.2.15.Final' - force 'io.netty:netty-handler-proxy:4.2.15.Final' - force 'io.netty:netty-common:4.2.15.Final' + force 'io.netty:netty-codec-http:4.2.16.Final' + force 'io.netty:netty-codec-http2:4.2.16.Final' + force 'io.netty:netty-codec:4.2.16.Final' + force 'io.netty:netty-handler:4.2.16.Final' + force 'io.netty:netty-handler-proxy:4.2.16.Final' + force 'io.netty:netty-common:4.2.16.Final' force 'org.bitbucket.b_c:jose4j:0.9.6' force 'org.jdom:jdom2:2.0.6.1' force 'com.google.protobuf:protobuf-java:3.25.5'