aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorAlex Kitchens <alexcameron98@gmail.com>2019-04-30 07:14:23 -0500
committerGitHub <noreply@github.com>2019-04-30 07:14:23 -0500
commita023e2180093ebc517a642aaf21f3c7241c67657 (patch)
tree0168c4014a1ac996a9d59cce8cf44c4af105cb86 /guides/source
parentc1ff1392dbcd8fbf9228d552cf596a26351b2edc (diff)
parent0458dec154e9d57aedad474354461b7042548d02 (diff)
downloadrails-a023e2180093ebc517a642aaf21f3c7241c67657.tar.gz
rails-a023e2180093ebc517a642aaf21f3c7241c67657.tar.bz2
rails-a023e2180093ebc517a642aaf21f3c7241c67657.zip
Merge pull request #36137 from prathamesh-sonpatki/action-mailer-release-notes
Action Mailer release notes [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/6_0_release_notes.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/guides/source/6_0_release_notes.md b/guides/source/6_0_release_notes.md
index 75d3d8f57e..14db71f2b5 100644
--- a/guides/source/6_0_release_notes.md
+++ b/guides/source/6_0_release_notes.md
@@ -323,8 +323,41 @@ Please refer to the [Changelog][action-mailer] for detailed changes.
### Deprecations
+* Deprecate `ActionMailer::Base.receive` in favor of Action Mailbox.
+ ([Commit](https://github.com/rails/rails/commit/e3f832a7433a291a51c5df397dc3dd654c1858cb))
+
+* Deprecate `DeliveryJob` and `Parameterized::DeliveryJob` in favor of
+ `MailDeliveryJob`.
+ ([Pull Request](https://github.com/rails/rails/pull/34591))
+
### Notable changes
+* Add `MailDeliveryJob` for delivering both regular and parameterized mail.
+ ([Pull Request](https://github.com/rails/rails/pull/34591))
+
+* Allow custom email delivery jobs to work with the Action Mailer test assertions.
+ ([Pull Request](https://github.com/rails/rails/pull/34339))
+
+* Allow specifying a template name for multipart emails with blocks instead of
+ using just the action name.
+ ([Pull Request](https://github.com/rails/rails/pull/22534))
+
+* Add `perform_deliveries` to payload of `deliver.action_mailer` notification.
+ ([Pull Request](https://github.com/rails/rails/pull/33824))
+
+* Improve the logging message when `perform_deliveries` is false to indicate
+ that sending of emails was skipped.
+ ([Pull Request](https://github.com/rails/rails/pull/33824))
+
+* Allow calling `assert_enqueued_email_with` without block.
+ ([Pull Request](https://github.com/rails/rails/pull/33258))
+
+* Perform the enqueued mail delivery jobs in the `assert_emails` block.
+ ([Pull Request](https://github.com/rails/rails/pull/32231))
+
+* Allow `ActionMailer::Base` to unregister observers and interceptors.
+ ([Pull Request](https://github.com/rails/rails/pull/32207))
+
Active Record
-------------