1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove deprecated ActionController::ParamsParser::ParseError

This commit is contained in:
Rafael Mendonça França 2017-07-17 16:51:51 -04:00
parent 7de7f12fd1
commit e16c765ac6
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948
2 changed files with 6 additions and 7 deletions

View file

@ -1,3 +1,7 @@
* Remove deprecated `ActionController::ParamsParser::ParseError`.
*Rafael Mendonça França*
* Add `:allow_other_host` option to `redirect_back` method. * Add `:allow_other_host` option to `redirect_back` method.
When `allow_other_host` is set to `false`, the `redirect_back` When `allow_other_host` is set to `false`, the `redirect_back`
will not allow a redirecting from a different host. will not allow a redirecting from a different host.
@ -82,7 +86,7 @@
*Kir Shatrov* *Kir Shatrov*
* `driven_by` now registers poltergeist and capybara-webkit * `driven_by` now registers poltergeist and capybara-webkit.
If poltergeist or capybara-webkit are set as drivers is set for System Tests, If poltergeist or capybara-webkit are set as drivers is set for System Tests,
`driven_by` will register the driver and set additional options passed via `driven_by` will register the driver and set additional options passed via
@ -92,7 +96,7 @@
*Mario Chavez* *Mario Chavez*
* AEAD encrypted cookies and sessions with GCM * AEAD encrypted cookies and sessions with GCM.
Encrypted cookies now use AES-GCM which couples authentication and Encrypted cookies now use AES-GCM which couples authentication and
encryption in one faster step and produces shorter ciphertexts. Cookies encryption in one faster step and produces shorter ciphertexts. Cookies

View file

@ -123,9 +123,4 @@ module ActionDispatch
end end
end end
end end
module ParamsParser
include ActiveSupport::Deprecation::DeprecatedConstantAccessor
deprecate_constant "ParseError", "ActionDispatch::Http::Parameters::ParseError"
end
end end