Skip to content

Commit

Permalink
Merge pull request #957 from playframework/mergify/bp/2.2.x/pr-866
Browse files Browse the repository at this point in the history
[2.2.x] Use latest netty-reactive-streams version, ahc comes with outdated one (backport #866) by @mkurz
  • Loading branch information
mkurz authored Nov 13, 2024
2 parents 06e28a6 + d72b396 commit d88695e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ object Dependencies {

val cachecontrol = Seq("com.typesafe.play" %% "cachecontrol" % "2.3.2")

val asyncHttpClient = Seq("org.asynchttpclient" % "async-http-client" % "2.12.3")
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.13", // ... a newer version ourselves (ahc v3 will drop that dependency)
)

val akkaVersion = "2.6.21"

Expand Down

0 comments on commit d88695e

Please sign in to comment.