Remove CHANGELOG entry that is already in 7-0-stable

This commit is contained in:
Rafael Mendonça França 2021-12-15 00:55:18 +00:00
parent 16f026e15a
commit dae7e46db4
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
2 changed files with 0 additions and 20 deletions

View File

@ -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
# => <input type="hidden" autocomplete="off" name="post[attachments][]" value="">
<input type="file" multiple="multiple" id="post_attachments" name="post[attachments][]">
form.file_field :attachments, multiple: true, include_hidden: false
# => <input type="file" multiple="multiple" id="post_attachments" name="post[attachments][]">
```
*Sean Doyle*
Please check [7-0-stable](https://github.com/rails/rails/blob/7-0-stable/actionview/CHANGELOG.md) for previous changes.

View File

@ -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.