mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Release 6.0
This commit is contained in:
@@ -25,10 +25,10 @@ Release history
|
|||||||
^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^
|
||||||
.. This extra heading level keeps the ToC from becoming unmanageably long
|
.. This extra heading level keeps the ToC from becoming unmanageably long
|
||||||
|
|
||||||
Unreleased
|
v6.0
|
||||||
----------
|
----
|
||||||
|
|
||||||
*In development*
|
*2019-02-23*
|
||||||
|
|
||||||
Breaking changes
|
Breaking changes
|
||||||
~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~
|
||||||
@@ -48,14 +48,14 @@ Breaking changes
|
|||||||
`message.anymail_status.message_id` after sending, that value will now be a *set* of
|
`message.anymail_status.message_id` after sending, that value will now be a *set* of
|
||||||
ids. You can obtain each recipient's individual message_id with
|
ids. You can obtain each recipient's individual message_id with
|
||||||
`message.anymail_status.recipients[to_email].message_id`.
|
`message.anymail_status.recipients[to_email].message_id`.
|
||||||
See `docs <https://anymail.readthedocs.io/en/latest/esps/sendgrid/#sendgrid-message-id>`__.
|
See `docs <https://anymail.readthedocs.io/en/stable/esps/sendgrid/#sendgrid-message-id>`__.
|
||||||
|
|
||||||
Features
|
Features
|
||||||
~~~~~~~~
|
~~~~~~~~
|
||||||
|
|
||||||
* Add new `merge_metadata` option for providing per-recipient metadata in batch
|
* Add new `merge_metadata` option for providing per-recipient metadata in batch
|
||||||
sends. Available for all supported ESPs *except* Amazon SES and SendinBlue.
|
sends. Available for all supported ESPs *except* Amazon SES and SendinBlue.
|
||||||
See `docs <https://anymail.readthedocs.io/en/latest/sending/anymail_additions/#anymail.message.AnymailMessage.merge_metadata>`__.
|
See `docs <https://anymail.readthedocs.io/en/stable/sending/anymail_additions/#anymail.message.AnymailMessage.merge_metadata>`__.
|
||||||
(Thanks `@janneThoft`_ for the idea and SendGrid implementation.)
|
(Thanks `@janneThoft`_ for the idea and SendGrid implementation.)
|
||||||
|
|
||||||
* **Mailjet:** Remove limitation on using `cc` or `bcc` together with `merge_data`.
|
* **Mailjet:** Remove limitation on using `cc` or `bcc` together with `merge_data`.
|
||||||
@@ -547,7 +547,7 @@ Features
|
|||||||
~~~~~~~~
|
~~~~~~~~
|
||||||
|
|
||||||
* Anymail's Test EmailBackend is now
|
* Anymail's Test EmailBackend is now
|
||||||
`documented <https://anymail.readthedocs.io/en/latest/tips/test_backend/>`__
|
`documented <https://anymail.readthedocs.io/en/stable/tips/test_backend/>`__
|
||||||
(and cleaned up)
|
(and cleaned up)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
VERSION = (5, 0)
|
VERSION = (6, 0)
|
||||||
__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN
|
__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN
|
||||||
__minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"
|
__minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"
|
||||||
|
|||||||
Reference in New Issue
Block a user