From 60880c6f19f18d5a067d68319362068121f53c7b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 13 Nov 2024 22:59:11 +0100 Subject: [PATCH] netty-reactive-streams 2.0.13 (was 2.0.12) --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index a3faaf08..b3e6be7a 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.3") // 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.12", // ... a newer version ourselves (ahc v3 will drop that dependency) + "com.typesafe.netty" % "netty-reactive-streams" % "2.0.13", // ... a newer version ourselves (ahc v3 will drop that dependency) ) val pekkoVersion = "1.1.2"