aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 89029af3e9..5c9bcc7545 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,12 @@
## unreleased ##
+* Fix explicit names on multiple file fields. If a file field tag is passed
+ the multiple option, it is turned into an array field (appending `[]`),
+ but if the file field is passed an explicit name as an option, leave the
+ name alone (do not append `[]`). Fixes #9830
+
+ *Ryan McGeary*
+
* Fix assets loading performance in 3.2.13.
Issue #8756 uses Sprockets for resolving files that already exist on disk,