You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method returns form data as key-value pairs, preserving duplicate
keys that would otherwise be lost when converting to a hash. For example,
"a=1&a=2" returns [["a", "1"], ["a", "2"]] instead of {"a" => "2"}.
- ISO-2022-JP encoded parts within MIME Multipart sections of an HTTP request body will now be converted to UTF-8. ([#2245](https://github.com/rack/rack/pull/2245), [@nappa](https://github.com/nappa))
16
-
- Add `Rack::Request#query_parser=` to allow setting the query parser to use. [#2349](https://github.com/rack/rack/pull/2349), [@jeremyevans])
16
+
- Add `Rack::Request#query_parser=` to allow setting the query parser to use. ([#2349](https://github.com/rack/rack/pull/2349), [@jeremyevans])
17
+
- Add `Rack::Request#form_pairs` to access form data as raw key-value pairs, preserving duplicate keys. ([#2351](https://github.com/rack/rack/pull/2351), [@matthewd])
17
18
18
19
### Changed
19
20
@@ -1205,3 +1206,4 @@ Items below this line are from the previously maintained HISTORY.md and NEWS.md
0 commit comments