aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index cc336c0a02..78da93a205 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,19 +1,3 @@
-* Show `permitted` flag in the output of ActionController::Parameters#inspect.
-
- Before:
- >> a = ActionController::Parameters.new(foo: 'bar')
- => <ActionController::Parameters {"foo"=>"bar"}>
-
- After:
- >> a = ActionController::Parameters.new(foo: 'bar')
- => <ActionController::Parameters {"foo"=>"bar"} permitted: false>
- >> a.permit(:foo)
- => <ActionController::Parameters {"foo"=>"bar"} permitted: true>
-
- Fixes #23822.
-
- *Prathamesh Sonpatki*
-
* Update session to have indifferent access across multiple requests.
session[:deep][:hash] = "Magic"