diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-12-22 13:35:34 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-12-22 13:35:34 +0100 |
commit | c8ca57df5bac623b115261ca0d2f1bdada467ff7 (patch) | |
tree | e0e22677125d6528ad92cd399e79afe6113fe3d8 | |
parent | 68c5c01db0d36c27f3a957881e96ef6caa0666d6 (diff) | |
download | rails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.tar.gz rails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.tar.bz2 rails-c8ca57df5bac623b115261ca0d2f1bdada467ff7.zip |
release notes, extract notable changes from Action Mailer CHANGELOG.
[ci skip]
-rw-r--r-- | actionmailer/CHANGELOG.md | 4 | ||||
-rw-r--r-- | guides/source/5_0_release_notes.md | 20 |
2 files changed, 21 insertions, 3 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md index 0cab1b8672..e74e0bc20a 100644 --- a/actionmailer/CHANGELOG.md +++ b/actionmailer/CHANGELOG.md @@ -1,7 +1,7 @@ ## Rails 5.0.0.beta1 (December 18, 2015) ## * `config.force_ssl = true` will set - `config.action_mailer.default_url_options = { protocol: 'https' }` + `config.action_mailer.default_url_options = { protocol: 'https' }`. *Andrew Kampjes* @@ -60,7 +60,7 @@ *Carlos Souza* -* Remove deprecate `*_path` helpers in email views. +* Remove deprecated `*_path` helpers in email views. *Rafael Mendonça França* 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 ------------- |