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:35:34 +0100
committerYves Senn <yves.senn@gmail.com>2015-12-22 13:35:34 +0100
commitc8ca57df5bac623b115261ca0d2f1bdada467ff7 (patch)
treee0e22677125d6528ad92cd399e79afe6113fe3d8 /guides/source/5_0_release_notes.md
parent68c5c01db0d36c27f3a957881e96ef6caa0666d6 (diff)
downloadrails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.tar.gz
rails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.tar.bz2
rails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.zip
release notes, extract notable changes from Action Mailer CHANGELOG.
[ci skip]
Diffstat (limited to 'guides/source/5_0_release_notes.md')
-rw-r--r--guides/source/5_0_release_notes.md20
1 files changed, 19 insertions, 1 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md
index c615cf0af7..78ce092a2b 100644
--- a/guides/source/5_0_release_notes.md
+++ b/guides/source/5_0_release_notes.md
@@ -299,10 +299,28 @@ Please refer to the [Changelog][action-mailer] for detailed changes.
### Removals
-### Deprecations
+* Removed deprecated `*_path` helpers in email views.
+ ([commit](https://github.com/rails/rails/commit/d282125a18c1697a9b5bb775628a2db239142ac7))
+
+* Removed deprecated `deliver` and `deliver!` methods.
+ ([commit](https://github.com/rails/rails/commit/755dcd0691f74079c24196135f89b917062b0715))
### Notable changes
+* Template lookup now respects default locale and I18n fallbacks.
+ ([commit](https://github.com/rails/rails/commit/ecb1981b))
+
+* Added `_mailer` suffix to mailers created via generator, following the same
+ naming convention used in controllers and jobs.
+ ([Pull Request](https://github.com/rails/rails/pull/18074))
+
+* Added `assert_enqueued_emails` and `assert_no_enqueued_emails`.
+ ([Pull Request](https://github.com/rails/rails/pull/18403))
+
+* Added `config.action_mailer.deliver_later_queue_name` configuration to set
+ the mailer queue name.
+ ([Pull Request](https://github.com/rails/rails/pull/18587))
+
Active Record
-------------