From b17cb7cd9096fbc6b2bd47ea19bcfef862c335a2 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Sun, 23 Feb 2025 12:12:01 +0100 Subject: [PATCH] netty-reactive-streams 2.0.14 (cherry picked from commit 6b67f8cc9533b9387c595bcd0be8a5e8487e9803) --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 2f931dab..a4c94ba0 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -43,7 +43,7 @@ object Dependencies { val asyncHttpClient = Seq( ("org.asynchttpclient" % "async-http-client" % "2.12.4") // 2.12.x comes with outdated netty-reactive-streams, so we ... .exclude("com.typesafe.netty", "netty-reactive-streams"), // ... exclude it and pull in ... - "com.typesafe.netty" % "netty-reactive-streams" % "2.0.13", // ... a newer version ourselves (ahc v3 will drop that dependency) + "com.typesafe.netty" % "netty-reactive-streams" % "2.0.14", // ... a newer version ourselves (ahc v3 will drop that dependency) ) val pekkoVersion = "1.0.3"