diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-12-22 13:26:59 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-12-22 13:26:59 +0100 |
commit | 68c5c01db0d36c27f3a957881e96ef6caa0666d6 (patch) | |
tree | e90e0586a9f2921dd4399daa46e6a4a0c3e127b3 /guides | |
parent | 9c9732f36368e484f43c0e79bb80227cec0a103b (diff) | |
download | rails-68c5c01db0d36c27f3a957881e96ef6caa0666d6.tar.gz rails-68c5c01db0d36c27f3a957881e96ef6caa0666d6.tar.bz2 rails-68c5c01db0d36c27f3a957881e96ef6caa0666d6.zip |
release notes, extract notable changes from Action View CHANGELOG.
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/5_0_release_notes.md | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md index aca46459af..c615cf0af7 100644 --- a/guides/source/5_0_release_notes.md +++ b/guides/source/5_0_release_notes.md @@ -260,14 +260,35 @@ Please refer to the [Changelog][action-view] for detailed changes. ### Removals -### Deprecations +* Removed deprecated `AbstractController::Base::parent_prefixes`. + ([commit](https://github.com/rails/rails/commit/34bcbcf35701ca44be559ff391535c0dd865c333)) + +* Removed `ActionView::Helpers::RecordTagHelper`, this functionality + has been extracted to the + [record_tag_helper](https://github.com/rails/record_tag_helper) gem. + ([Pull Request](https://github.com/rails/rails/pull/18411)) + +* Removed `:rescue_format` option for `translate` helper since it's no longer + supported by I18n. + ([Pull Request](https://github.com/rails/rails/pull/20019)) ### Notable Changes -* Support explicit definition of resouce name for collection caching. +* Changed the default template handler from `ERB` to `Raw`. + ([commit](https://github.com/rails/rails/commit/4be859f0fdf7b3059a28d03c279f03f5938efc80)) + +* Collection rendering automatically caches and fetches multiple partials. + ([Pull Request](https://github.com/rails/rails/pull/18948)) + +* Allow defining explicit collection caching using a `# Template Collection: ...` + directive inside templates. ([Pull Request](https://github.com/rails/rails/pull/20781)) -* Make `disable_with` default in `submit_tag`. +* Add wildcard matching to explicit dependencies. + ([Pull Request](https://github.com/rails/rails/pull/20904)) + +* Make `disable_with` the default behavior for submit tags. Disables the + button on submit to prevent double submits. ([Pull Request](https://github.com/rails/rails/pull/21135)) |