diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 0d7478ee09..fde757001d 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,16 +1,3 @@ -* Support `include_hidden:` option in calls to - `ActionView::Helper::FormBuilder#file_field` with `multiple: true` to - support submitting an empty collection of files. - ```ruby - form.file_field :attachments, multiple: true - # => - - - form.file_field :attachments, multiple: true, include_hidden: false - # => - ``` - - *Sean Doyle* Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionview/CHANGELOG.md) for previous changes. diff --git a/activestorage/CHANGELOG.md b/activestorage/CHANGELOG.md index e3c21b1387..684619154e 100644 --- a/activestorage/CHANGELOG.md +++ b/activestorage/CHANGELOG.md @@ -1,10 +1,3 @@ -* Support transforming empty-ish `has_many_attached` value into `[]` (e.g. `[""]`) - ```ruby - @user.highlights = [""] - @user.highlights # => [] - ``` - - *Sean Doyle* Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/activestorage/CHANGELOG.md) for previous changes.