diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-10-27 10:16:12 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-10-27 10:16:12 -0700 |
commit | 41047172c3044ccc2762a4a8b6b3a8437fccf2d0 (patch) | |
tree | f0c3d7ae51e07c85559fa844b769a133437771a2 | |
parent | 660523123103e904622a135940a1c12ad9256629 (diff) | |
parent | cbb32ec24449bb4716551dee3392f9981cc6117b (diff) | |
download | rails-41047172c3044ccc2762a4a8b6b3a8437fccf2d0.tar.gz rails-41047172c3044ccc2762a4a8b6b3a8437fccf2d0.tar.bz2 rails-41047172c3044ccc2762a4a8b6b3a8437fccf2d0.zip |
Merge pull request #12661 from robin850/patch-10
Add a changelog entry for #12656 [ci skip]
-rw-r--r-- | actionpack/CHANGELOG.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md index a47ddb1f21..f5527450c7 100644 --- a/actionpack/CHANGELOG.md +++ b/actionpack/CHANGELOG.md @@ -1,3 +1,11 @@ +* Don't let strong parameters mutate the given hash via `fetch` + + Create a new instance if the given parameter is a `Hash` instead of + passing it to the `convert_hashes_to_parameters` method since it is + overriding its default value. + + *Brendon Murphy*, *Doug Cole* + * Add `params` option to `button_to` form helper, which renders the given hash as hidden form fields. |