From 45da39af60aa06aa688033e4ee119184bb1aff9a Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 18 Jun 2026 20:44:44 +0000 Subject: [PATCH] async-http-client 3.0.11 (was 2.16.0) --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d0fa5ef0..b4b36de9 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -42,7 +42,7 @@ object Dependencies { val nettyVersion = "4.1.135.Final" // Keep in sync with the netty version netty-reactive-streams uses (see below) val asyncHttpClient = Seq( - ("org.asynchttpclient" % "async-http-client" % "2.16.0") // 2.12.x comes with outdated netty-reactive-streams and netty, so we ... + ("org.asynchttpclient" % "async-http-client" % "3.0.11") // 2.12.x comes with outdated netty-reactive-streams and netty, so we ... .exclude("com.typesafe.netty", "netty-reactive-streams") // ... exclude netty-reactive-streams and ... .excludeAll(ExclusionRule("io.netty")), // ... also exclude all netty dependencies and pull in ... "com.typesafe.netty" % "netty-reactive-streams" % "2.0.18", // ... a new netty-reactive-streams (ahc v3 will drop it btw) ...