aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2013-10-27 16:01:03 +0100
committerRobin Dupret <robin.dupret@gmail.com>2013-10-27 16:03:38 +0100
commitcbb32ec24449bb4716551dee3392f9981cc6117b (patch)
tree86cbc6d817322b8c23e5e85a5ba4d61f2280d3ad /actionpack
parent094e31ce6700993759c6f36db52afb0a43bfa71f (diff)
downloadrails-cbb32ec24449bb4716551dee3392f9981cc6117b.tar.gz
rails-cbb32ec24449bb4716551dee3392f9981cc6117b.tar.bz2
rails-cbb32ec24449bb4716551dee3392f9981cc6117b.zip
Add a changelog entry for #12656 [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md8
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.