Remove deprecated `find_all_anywhere` from `ActionView::Resolver`

This commit is contained in:
Rafael Mendonça França 2020-05-06 18:21:19 -04:00
parent db5a2dfe3e
commit dafa49bb4c
No known key found for this signature in database
GPG Key ID: FC23B6D0F1EEE948
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
* Remove deprecated `find_all_anywhere` from `ActionView::Resolver`.
*Rafael Mendonça França*
* Remove deprecated `formats` from `ActionView::Template::HTML`.
*Rafael Mendonça França*

View File

@ -156,9 +156,6 @@ module ActionView
end
end
alias :find_all_anywhere :find_all
deprecate :find_all_anywhere
def find_all_with_query(query) # :nodoc:
@cache.cache_query(query) { find_template_paths(File.join(@path, query)) }
end

View File

@ -55,6 +55,8 @@ Please refer to the [Changelog][action-pack] for detailed changes.
### Removals
* Remove deprecated `find_all_anywhere` from `ActionView::Resolver`.
* Remove deprecated `formats` from `ActionView::Template::HTML`.
* Remove deprecated `formats` from `ActionView::Template::RawFile`.