mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
Release 10.1
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
|
||||||
|
|
||||||
vNext
|
v10.1
|
||||||
-----
|
-----
|
||||||
|
|
||||||
*Unreleased changes*
|
*2023-07-31*
|
||||||
|
|
||||||
Features
|
Features
|
||||||
~~~~~~~~
|
~~~~~~~~
|
||||||
@@ -43,17 +43,22 @@ Features
|
|||||||
* Rename `is_inline_attachment()` to just `is_inline()`.
|
* Rename `is_inline_attachment()` to just `is_inline()`.
|
||||||
|
|
||||||
The renamed items are still available, but deprecated, under their old names.
|
The renamed items are still available, but deprecated, under their old names.
|
||||||
See `docs <http://anymail.dev/en/latest/inbound/#anymail.inbound.AnymailInboundMessage>`__.
|
See `docs <http://anymail.dev/en/stable/inbound/#anymail.inbound.AnymailInboundMessage>`__.
|
||||||
(Thanks to `@martinezleoml`_.)
|
(Thanks to `@martinezleoml`_.)
|
||||||
|
|
||||||
* **Inbound:** `AnymailInboundMessage` now derives from Python's
|
* **Inbound:** `AnymailInboundMessage` now derives from Python's
|
||||||
`email.message.EmailMessage`, which provides improved compatibility with
|
`email.message.EmailMessage`, which provides improved compatibility with
|
||||||
email standards. (Thanks to `@martinezleoml`_.)
|
email standards. (Thanks to `@martinezleoml`_.)
|
||||||
|
|
||||||
* **Brevo (Sendinblue):** Add support for inbound email. (See
|
* **Brevo (Sendinblue):** Sendinblue has rebranded to "Brevo." Change default
|
||||||
`docs <https://anymail.dev/en/latest/esps/sendinblue/#sendinblue-inbound>`_.)
|
API endpoint to ``api.brevo.com``, and update docs to reflect new name. Anymail
|
||||||
|
still uses ``sendinblue`` in the backend name, for settings, etc., so there
|
||||||
|
should be no impact on your code. (Thanks to `@sblondon`_.)
|
||||||
|
|
||||||
* **SendGrid:** Support for multiple ``reply_to`` addresses.
|
* **Brevo (Sendinblue):** Add support for inbound email. (See
|
||||||
|
`docs <https://anymail.dev/en/stable/esps/sendinblue/#sendinblue-inbound>`_.)
|
||||||
|
|
||||||
|
* **SendGrid:** Support multiple ``reply_to`` addresses.
|
||||||
(Thanks to `@gdvalderrama`_ for pointing out the new API.)
|
(Thanks to `@gdvalderrama`_ for pointing out the new API.)
|
||||||
|
|
||||||
Deprecations
|
Deprecations
|
||||||
@@ -62,14 +67,6 @@ Deprecations
|
|||||||
* **Inbound:** `AnymailInboundMessage.inline_attachments` and `.is_inline_attachment()`
|
* **Inbound:** `AnymailInboundMessage.inline_attachments` and `.is_inline_attachment()`
|
||||||
have been renamed---see above.
|
have been renamed---see above.
|
||||||
|
|
||||||
Other
|
|
||||||
~~~~~
|
|
||||||
|
|
||||||
* **Brevo (Sendinblue):** Sendinblue has rebranded to "Brevo." Change default
|
|
||||||
API endpoint to ``api.brevo.com``, and update docs to reflect new name. Anymail
|
|
||||||
still uses ``sendinblue`` in the backend name, for settings, etc., so there
|
|
||||||
should be no impact on your code. (Thanks to `@sblondon`_.)
|
|
||||||
|
|
||||||
|
|
||||||
v10.0
|
v10.0
|
||||||
-----
|
-----
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
# Instead, load version info from the package root.
|
# Instead, load version info from the package root.
|
||||||
|
|
||||||
#: major.minor or major.minor.patch (optionally with .devN suffix)
|
#: major.minor or major.minor.patch (optionally with .devN suffix)
|
||||||
__version__ = "10.0"
|
__version__ = "10.1"
|
||||||
|
|
||||||
VERSION = __version__.split(",")
|
VERSION = __version__.split(",")
|
||||||
|
|||||||
Reference in New Issue
Block a user