1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #24497 from vipulnsward/am-changelog-pass

Pass over AM changelog [ci skip]
This commit is contained in:
Yves Senn 2016-04-11 17:02:20 +02:00
commit c9238500bd

View file

@ -1,7 +1,7 @@
* Disallow calling `#deliver_later` after making local modifications to
the message which would be lost when the delivery job is enqueued.
Prevents a common, hard-to-find bug like
Prevents a common, hard-to-find bug like:
message = Notifier.welcome(user, foo)
message.message_id = my_generated_message_id
@ -41,8 +41,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]` is now set to `https` if `config.force_ssl` is set to `true`.
*Andrew Kampjes*
@ -51,7 +50,7 @@
*Chris McGrath*
* `assert_emails` in block form use the given number as expected value.
* `assert_emails` in block form, uses the given number as expected value.
This makes the error message much easier to understand.
*Yuji Yaginuma*