-
Notifications
You must be signed in to change notification settings - Fork 221
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
Deprecate .as[A] method for decoding #786
Comments
Going to pick up this one if it's ok. Just to make it clear: |
The only cases I know are authentication and.., just authentication. |
Yes, iirc, |
Yeah, I guess the idea end state we want to be in is to keep I think I played with it in the past and turns out supporting a deprecation cycle would be a huge pain. |
Looks like we also need to add |
I'm closing this for now as I'm not sure we have to wait for |
The
.as[A]
method should only be supported forHList => A
conversion (through theGeneric
instance). As far as the API changes go, I see the following migration schema:param("foo").as[A]
becomesparam[A]("foo")
The text was updated successfully, but these errors were encountered: