Skip to content

Commit 7b3305d

Browse files
committed
Release 7.1
1 parent 7a16b9e commit 7b3305d

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

CHANGELOG.rst

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,48 @@ Release history
2525
^^^^^^^^^^^^^^^
2626
.. This extra heading level keeps the ToC from becoming unmanageably long
2727
28-
vNext
28+
v7.1
2929
-----
3030

31-
*Unreleased changes on master*
31+
*2020-04-13*
3232

3333
Fixes
3434
~~~~~
3535

3636
* **Postmark:** Fix API error when sending with template to single recipient.
3737
(Thanks to `@jc-ee`_ for finding and fixing the issue.)
38+
3839
* **SendGrid:** Allow non-batch template send to multiple recipients when
3940
`merge_global_data` is set without `merge_data`. (Broken in v6.0. Thanks to
4041
`@vgrebenschikov`_ for the bug report.)
4142

43+
Features
44+
~~~~~~~~
45+
46+
* Add `DEBUG_API_REQUESTS` setting to dump raw ESP API requests, which can assist
47+
in debugging or reporting problems to ESPs.
48+
(See `docs <https://anymail.readthedocs.io/en/stable/installation/#std:setting-ANYMAIL_DEBUG_API_REQUESTS>`__.
49+
This setting has was quietly added in Anymail v4.3, and is now officially documented.)
50+
51+
* **Sendinblue:** Now supports file attachments on template sends, when using their
52+
new template language. (Sendinblue removed this API limitation on 2020-02-18; the
53+
change works with Anymail v7.0 and later. Thanks to `@sebashwa`_ for noting
54+
the API change and updating Anymail's docs.)
55+
56+
Other
57+
~~~~~
58+
59+
* Test against released Django 3.0.
60+
61+
* **SendGrid:** Document unpredictable behavior in the SendGrid API that can cause
62+
text attachments to be sent with the wrong character set.
63+
(See `docs <https://anymail.readthedocs.io/en/stable/esps/sendgrid/#limitations-and-quirks>`__
64+
under "Wrong character set on text attachments." Thanks to `@nuschk`_ and `@swrobel`_
65+
for helping track down the issue and reporting it to SendGrid.)
66+
67+
* Docs: Fix a number of typos and some outdated information. (Thanks `@alee`_ and
68+
`@Honza-m`_.)
69+
4270

4371
v7.0
4472
----
@@ -58,9 +86,10 @@ Breaking changes
5886
recipient display names).
5987

6088
* Sendinblue's API no longer supports sending attachments when using templates.
89+
[Note: Sendinblue removed this API limitation on 2020-02-18.]
6190

6291
Ordinary, non-template sending is not affected by these changes. See
63-
`docs <https://anymail.readthedocs.io/en/stable/esps/sendinblue/#batch-sending-merge-and-esp-templates>`_
92+
`docs <https://anymail.readthedocs.io/en/stable/esps/sendinblue/#batch-sending-merge-and-esp-templates>`__
6493
for more info and alternatives. (Thanks `@Thorbenl`_.)
6594

6695
Features
@@ -1020,21 +1049,26 @@ Features
10201049
.. _#153: https://github.com/anymail/issues/153
10211050

10221051
.. _@ailionx: https://github.com/ailionx
1052+
.. _@alee: https://github.com/alee
10231053
.. _@anstosa: https://github.com/anstosa
10241054
.. _@calvin: https://github.com/calvin
10251055
.. _@costela: https://github.com/costela
10261056
.. _@decibyte: https://github.com/decibyte
10271057
.. _@dominik-lekse: https://github.com/dominik-lekse
10281058
.. _@ewingrj: https://github.com/ewingrj
10291059
.. _@fdemmer: https://github.com/fdemmer
1060+
.. _@Honza-m: https://github.com/Honza-m
10301061
.. _@janneThoft: https://github.com/janneThoft
10311062
.. _@jc-ee: https://github.com/jc-ee
10321063
.. _@joshkersey: https://github.com/joshkersey
10331064
.. _@Lekensteyn: https://github.com/Lekensteyn
10341065
.. _@lewistaylor: https://github.com/lewistaylor
10351066
.. _@mbk-ok: https://github.com/mbk-ok
1067+
.. _@nuschk: https://github.com/nuschk
10361068
.. _@RignonNoel: https://github.com/RignonNoel
1069+
.. _@sebashwa: https://github.com/sebashwa
10371070
.. _@sebbacon: https://github.com/sebbacon
1071+
.. _@swrobel: https://github.com/swrobel
10381072
.. _@Thorbenl: https://github.com/Thorbenl
10391073
.. _@varche1: https://github.com/varche1
10401074
.. _@vgrebenschikov: https://github.com/vgrebenschikov

anymail/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (7, 0, 0)
1+
VERSION = (7, 1, 0)
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"

0 commit comments

Comments
 (0)