Release 10.3

This commit is contained in:
Mike Edmunds
2024-03-12 11:46:20 -07:00
parent 948ab2be27
commit fc1bd1497f
2 changed files with 18 additions and 17 deletions

View File

@@ -25,32 +25,22 @@ 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.3
----- -----
*unreleased changes* *2024-03-12*
Deprecations
~~~~~~~~~~~~
* **SendinBlue:** Rename "SendinBlue" to "Brevo" throughout Anymail's code.
This affects the email backend name, settings names, and webhook URLs.
The old names will continue to work for now, but are deprecated. See
`Updating code from SendinBlue to Brevo <https://anymail.dev/en/latest/esps/brevo/#brevo-rename>`__
for details.
Features Features
~~~~~~~~ ~~~~~~~~
* **Brevo:** Add support for batch sending * **Brevo:** Add support for batch sending
(`docs <https://anymail.dev/en/latest/esps/brevo/#batch-sending-merge-and-esp-templates>`__). (`docs <https://anymail.dev/en/stable/esps/brevo/#batch-sending-merge-and-esp-templates>`__).
* **Resend:** Add support for batch sending * **Resend:** Add support for batch sending
(`docs <https://anymail.dev/en/latest/esps/resend/#batch-sending-merge-and-esp-templates>`__). (`docs <https://anymail.dev/en/stable/esps/resend/#batch-sending-merge-and-esp-templates>`__).
* **Unisender Go**: Add support for this ESP * **Unisender Go:** Newly supported ESP
(`docs <https://anymail.dev/en/latest/esps/unisender_go/>`__). (`docs <https://anymail.dev/en/stable/esps/unisender_go/>`__).
(Thanks to `@Arondit`_ for the implementation.) (Thanks to `@Arondit`_ for the implementation.)
@@ -61,6 +51,17 @@ Fixes
to the event tracking webhook. (Thanks to `@izimobil`_ for the fix.) to the event tracking webhook. (Thanks to `@izimobil`_ for the fix.)
Deprecations
~~~~~~~~~~~~
* **Brevo (SendinBlue):** Rename "SendinBlue" to "Brevo" throughout
Anymail's code, reflecting their rebranding.
This affects the email backend path, settings names, and webhook URLs.
The old names will continue to work for now, but are deprecated. See
`Updating code from SendinBlue to Brevo <https://anymail.dev/en/stable/esps/brevo/#brevo-rename>`__
for details.
v10.2 v10.2
----- -----

View File

@@ -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.2" __version__ = "10.3"
VERSION = __version__.split(",") VERSION = __version__.split(",")