aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionpack/CHANGELOG.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index e51b19b6d0..a370c3fc99 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,15 +1,3 @@
-* Fix strong parameters `permit!` with nested arrays.
-
- Given:
- ```
- params = ActionController::Parameters.new(nested_arrays: [[{ x: 2, y: 3 }, { x: 21, y: 42 }]])
- params.permit!
- ```
-
- `params[:nested_arrays][0][0].permitted?` will now return `true` instead of `false`.
-
- *Steve Hull*
-
* Output only one Content-Security-Policy nonce header value per request.
Fixes #32597.