Skip to content

Commit ad08892

Browse files
committed
Release 8.6
1 parent 2001b1c commit ad08892

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

CHANGELOG.rst

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,13 @@ Release history
2525
^^^^^^^^^^^^^^^
2626
.. This extra heading level keeps the ToC from becoming unmanageably long
2727
28-
vNext
29-
-----
28+
v8.6 LTS
29+
--------
30+
31+
*2022-05-15*
3032

31-
*Unreleased changes in main branch*
33+
This is an extended support release. Anymail v8.6 will receive security updates
34+
and fixes for any breaking ESP API changes through at least May, 2023.
3235

3336
Fixes
3437
~~~~~
@@ -42,11 +45,10 @@ Fixes
4245
Anymail documentation now recommends using Mailgun's and SendGrid's "raw MIME"
4346
inbound options, which avoid the problem and preserve all attachments.
4447

45-
See `Mailgun inbound <https://anymail.readthedocs.io/en/latest/esps/mailgun/#mailgun-inbound>`__
46-
and `SendGrid inbound <https://anymail.readthedocs.io/en/latest/esps/sendgrid/#sendgrid-inbound>`__
48+
See `Mailgun inbound <https://anymail.readthedocs.io/en/stable/esps/mailgun/#mailgun-inbound>`__
49+
and `SendGrid inbound <https://anymail.readthedocs.io/en/stable/esps/sendgrid/#sendgrid-inbound>`__
4750
for details. (Thanks to `@erikdrums`_ for reporting and helping investigate the problem.)
4851

49-
5052
Other
5153
~~~~~
5254

@@ -57,6 +59,16 @@ Other
5759
* **Mandrill:** Document Mandrill's incorrect handling of non-ASCII attachment filenames.
5860
(Thanks to `@Thorbenl`_ for reporting the issue and following up with MailChimp.)
5961

62+
* Documentation (for all releases) is now hosted at anymail.dev (moved from anymail.info).
63+
64+
Deprecations
65+
~~~~~~~~~~~~
66+
67+
* This will be the last Anymail release to support Django 2.0--2.2 and Python 3.5.
68+
69+
If these deprecations affect you and you cannot upgrade, set your requirements to
70+
`django-anymail~=8.6` (a "compatible release" specifier, equivalent to `>=8.6,==8.*`).
71+
6072

6173
v8.5
6274
----

anymail/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (8, 5)
1+
VERSION = (8, 6)
22
__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN
33
__minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"

docs/esps/mailgun.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ forwarding url) with Mailgun inbound routing.
529529
To use Mailgun's fully-parsed format, change :samp:`.../inbound_mime/` to just
530530
:samp:`.../inbound/` at the end of the route forwarding url.
531531

532-
.. versionchanged:: vNext
532+
.. versionchanged:: 8.6
533533
Using Mailgun's full-parsed (not raw MIME) inbound message format is no longer recommended.
534534

535535

docs/esps/sendgrid.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ incoming emails for spam" checkbox.
443443
Using raw MIME also avoids a limitation in Django's :mimetype:`multipart/form-data` handling
444444
that can strip attachments with certain filenames.
445445

446-
.. versionchanged:: vNext
446+
.. versionchanged:: 8.6
447447
Leaving SendGrid's "full MIME" checkbox disabled is no longer recommended.
448448

449449

0 commit comments

Comments
 (0)