aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/5_0_release_notes.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-12-22 13:26:59 +0100
committerYves Senn <yves.senn@gmail.com>2015-12-22 13:26:59 +0100
commit68c5c01db0d36c27f3a957881e96ef6caa0666d6 (patch)
treee90e0586a9f2921dd4399daa46e6a4a0c3e127b3 /guides/source/5_0_release_notes.md
parent9c9732f36368e484f43c0e79bb80227cec0a103b (diff)
downloadrails-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/source/5_0_release_notes.md')
-rw-r--r--guides/source/5_0_release_notes.md27
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))