Release 4.0

This commit is contained in:
medmunds
2018-08-19 11:53:16 -07:00
parent 13ffd5db40
commit e44978daf7
3 changed files with 26 additions and 23 deletions

View File

@@ -29,7 +29,7 @@ Release history
v4.0
----
*In development*
*2018-08-19*
Breaking changes
~~~~~~~~~~~~~~~~
@@ -37,8 +37,10 @@ Breaking changes
* Drop support for Django versions older than Django 1.11.
(For compatibility back to Django 1.8, stay on the Anymail `v3.0`_
extended support branch.)
* **SendGrid:** Remove the legacy SendGrid *v2* EmailBackend
(Anymail has defaulted to SendGrid's newer v3 API since Anymail v0.8.)
* **SendGrid:** Remove the legacy SendGrid *v2* EmailBackend.
(Anymail's default since v0.8 has been SendGrid's newer v3 API.)
If your settings.py `EMAIL_BACKEND` still references "sendgrid_v2," you must
`upgrade to v3 <https://anymail.readthedocs.io/en/v3.0/esps/sendgrid/#upgrading-to-sendgrid-s-v3-api>`__.
Features
~~~~~~~~
@@ -54,12 +56,12 @@ Features
Fixes
~~~~~
* Change `attach_inline_image()` default domain for *Content-ID* to "inline" (rather
than Python's `make_msgid()` default local hostname). This avoids problems with ESPs
that don't distinguish *Content-ID* from attachment filename, where a local hostname
ending in ".com" could cause Gmail to block messages sent with inline attachments.
(Mailgun, Mailjet, Mandrill and SparkPost have APIs affected by this.
See `#112`_ for more details.)
* Avoid problems with Gmail blocking messages that have inline attachments, when sent
from a machine whose local hostname ends in *.com*. Change Anymail's
`attach_inline_image()` default *Content-ID* domain to the literal text "inline"
(rather than Python's default of the local hostname), to work around a limitation
of some ESP APIs that don't permit distinct content ID and attachment filenames
(Mailgun, Mailjet, Mandrill and SparkPost). See `#112`_ for more details.
* **Amazon SES:** Work around an
`Amazon SES bug <https://forums.aws.amazon.com/thread.jspa?threadID=287048>`__
that can corrupt non-ASCII message bodies if you are using SES's open or click
@@ -70,6 +72,7 @@ Other
~~~~~
* Maintain changelog in the repository itself (rather than in GitHub release notes).
* Test against released versions of Python 3.7 and Django 2.1.
v3.0

View File

@@ -1,3 +1,3 @@
VERSION = (4, 0, 'dev0')
VERSION = (4, 0)
__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"

View File

@@ -78,7 +78,7 @@ setup(
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
# "Framework :: Django :: 2.1",
"Framework :: Django :: 2.1",
"Environment :: Web Environment",
],
long_description=long_description,