-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inconsistent shading of asynchttpclient #862
Comments
Hmm.. Yes I can confirm this is incorrect... Not sure why the
Actually I though 0efba3c does take care of that, not sure why this does not work. But yes this needs to be checked and fixed. |
Actually my last comment was not entirely correct, the correct package name still should be |
Hi. We are also impacted by this problem. Is there a release planned with the fix? |
Actually there is nothing holding back a new patch release, so I can do that now. |
3.0.2 released: https://github.com/playframework/play-ws/releases/tag/3.0.2 If you are using the Play Framework, you can upgrade yourself until Play 3.0.3 is released: ...
libraryDependencies += ws // or javaWs
// Use latest play-ws release (can be removed when Play 3.0.3 is released)
val playWS = "3.0.2"
libraryDependencies ++= Seq(
"org.playframework" %% "play-ahc-ws-standalone" % playWS,
"org.playframework" %% "play-ws-standalone-json" % playWS,
"org.playframework" %% "play-ws-standalone-xml" % playWS,
"org.playframework" % "shaded-asynchttpclient" % playWS,
"org.playframework" % "shaded-oauth" % playWS,
)
... |
2.X line of the playframework includes the asynchttpclient library having packages prefixed with play.shaded.ahc. However, in version 3.0 this prefix has been removed from 3 class files i.e.
Such inconsistency may lead to compatibility issues for users who upgrade from version 2.9 to 3.0.
The text was updated successfully, but these errors were encountered: