-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
fixes some problems with query strings #6554
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
Conversation
|
Added some comments |
|
Thanks @schmitch |
* fixes some problems with query strings * javadoc fix
|
This bug and related fix deserve an immediate 2.5.8 release. |
|
@alexdupre It's out now. |
|
I found another regression. If the query string contains eg. |
|
I don't think it's intended, because |
|
@alexdupre that is intended. But if you want to add more you could probably add yourself to the discussion in: netty/netty#5820 We may change it so that |
|
I'm using bindFromRequest in some of my controllers, to handle params serialized with Angulars httpParamSerializer. The uri is something like query=item1,item2,item3 I would expect the binding to work though, or is this changed from now on? |
|
I don't know how is your Form, you should probably change the field from |
|
Changing it to a list does not help. Probably makes sense to, since its just a value for the parameter, that happens to be comma separated. I don't know if this a bug, and I should create a separate issue for it. Its seems to me as, a somewhat big breaking change, for a minor update? |
* fixes some problems with query strings * javadoc fix
Fixes
Fixes #6551
Fixes #6549
@gmethvin @wsargent This is a Backport of QueryStringDecoder which I proposed here:
netty/netty#5820
This needs a backport against 2.5.x
After this we can also merge: #6543
I will delay scala-uri WIP for master since I got some questions after working with it the last couple of days.