aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-01-28 11:20:46 +0100
committerGitHub <noreply@github.com>2017-01-28 11:20:46 +0100
commit1cec84ad2ddd843484ed40b1eb7492063ce71baf (patch)
tree888dd547e0d204f1a280217424162293042feff3 /actionmailer/CHANGELOG.md
parent05112b21310c3ea04026176a5f7ca11040454ac1 (diff)
downloadrails-1cec84ad2ddd843484ed40b1eb7492063ce71baf.tar.gz
rails-1cec84ad2ddd843484ed40b1eb7492063ce71baf.tar.bz2
rails-1cec84ad2ddd843484ed40b1eb7492063ce71baf.zip
Offer the option to use parameterization for shared processing of headers and ivars (#27825)
Offer the option to use parameterization for shared processing of headers and ivars
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index de8abcccfe..54b07a626b 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,12 @@
+* Add parameterized invocation of mailers as a way to share before filters and defaults between actions.
+ See ActionMailer::Parameterized for a full example of the benefit.
+
+ *DHH*
+
+* Allow lambdas to be used as lazy defaults in addition to procs.
+
+ *DHH*
+
* Mime type: allow to custom content type when setting body in headers
and attachments.