diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-06-25 19:39:19 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-06-25 19:40:41 +0200 |
commit | fa12d2255fc12dc9ef4eaac8acbac4b42cd5b0cd (patch) | |
tree | c628be4d0e5021b547feba535120c42699e77672 /guides | |
parent | d708b5cc50fe36fcbab95b3558f9c6807b4d1d98 (diff) | |
download | rails-fa12d2255fc12dc9ef4eaac8acbac4b42cd5b0cd.tar.gz rails-fa12d2255fc12dc9ef4eaac8acbac4b42cd5b0cd.tar.bz2 rails-fa12d2255fc12dc9ef4eaac8acbac4b42cd5b0cd.zip |
sync deprecations and removals with 4.2 release notes. [ci skip]
Noticed that there was no section about Action View and added the heading.
Notable changes need to be compiled.
/cc @chancancode @zzak
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/4_2_release_notes.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md index ba0a1e2273..6a847c3087 100644 --- a/guides/source/4_2_release_notes.md +++ b/guides/source/4_2_release_notes.md @@ -115,6 +115,27 @@ for detailed changes. ([Pull Request](https://github.com/rails/rails/pull/14280)) +Action View +------------- + +Please refer to the +[Changelog](https://github.com/rails/rails/blob/4-2-stable/actionview/CHANGELOG.md) +for detailed changes. + +### Deprecations + +* Deprecated `AbstractController::Base.parent_prefixes`. + Override `AbstractController::Base.local_prefixes` when you want to change + where to find views. + ([Pull Request](https://github.com/rails/rails/pull/15026)) + +* Deprecated `ActionView::Digestor#digest(name, format, finder, options = {})`, + arguments should be passed as a hash instead. + ([Pull Request](https://github.com/rails/rails/pull/14243)) + +### Notable changes + + Action Mailer ------------- @@ -217,6 +238,11 @@ Please refer to the [Changelog](https://github.com/rails/rails/blob/4-2-stable/activemodel/CHANGELOG.md) for detailed changes. +### Removals + +* Removed deprecated `Validator#setup` without replacement. + ([Pull Request](https://github.com/rails/rails/pull/15617)) + ### Notable changes * Introduced `#validate` as an alias for `#valid?`. |