From 8550804a01a0848ed88f7bf0b10f5833f6ec9b3a Mon Sep 17 00:00:00 2001 From: DanielCliftonGuardian <110032454+DanielCliftonGuardian@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:21:48 +0100 Subject: [PATCH] Bump netty-codec-http Co-Authored-By: Jamie B <53781962+JamieB-gu@users.noreply.github.com> Co-Authored-By: James Mockett <1166188+jamesmockett@users.noreply.github.com> --- build.sbt | 2 +- project/Dependencies.scala | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 21e2cf51a34e..3c29ede4199f 100644 --- a/build.sbt +++ b/build.sbt @@ -66,7 +66,7 @@ val common = library("common") pekkoSlf4j, pekkoSerializationJackson, pekkoActorTyped, - ) ++ jackson, + ) ++ jackson ++ netty, ) val commonWithTests = withTests(common) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2cea69c9d83b..06f071e1f67e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -103,6 +103,12 @@ object Dependencies { val epoch = "org.webjars.npm" % "epoch-charting" % "0.8.4" val d3 = "org.webjars.npm" % "d3" % "7.9.0" + val nettyVersion = "4.1.132.Final" + val netty = Seq( + "io.netty" % "netty-codec-http" % nettyVersion, + "io.netty" % "netty-codec-http2" % nettyVersion, + ) + /* The versions are currently set as they are because of: https://github.com/orgs/playframework/discussions/11222