-
Notifications
You must be signed in to change notification settings - Fork 130
/
CHANGELOG
153 lines (116 loc) · 3.63 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
UNRELEASED
----------
Drop Django 2.2 and 3.1 support
Add Python 3.10 and 3.11 support
Use GitHub Actions for testing
v3.0.1
-----
Remove all newlines from subject
v3.0
-----
Add escaping to HTML parts in templates
Add tests for django main version
v2.4
-----
Add Python 3.7, 3.8 and 3.9 support
Drop Python <3.4 support
Add Django 3.1 and 3.2 support
Drop Django 3.0 support
Remove six dependency
v2.3
-----
Remove Django as explicit dependency
Upgrade django-anymail to v3
Drop Python 3.3 support
v2.2
-----
Bug fixes and improvements (issues https://github.com/vintasoftware/django-templated-email/issues/102 and https://github.com/vintasoftware/django-templated-email/issues/104)
v2.1
-----
Bug fixes (issues https://github.com/vintasoftware/django-templated-email/issues/94 and https://github.com/vintasoftware/django-templated-email/issues/99)
v2.0
-----
Adding Inline Image
template_name can now accept a list
Optionally save a copy of the email in the database and create a URL to see it in the browser
Created a TemplatedEmailFormViewMixin to use with classes based views' FormView
v1.0
-----
Remove broken postageapp backend.
Adding django 1.10 support.
Use django-render-block.
Adding django-anymail.
Adding attachment.
Remove support for legacy behaviour of having a .html and a .txt file.
v0.5
-----
Bug fixes, cleanup, Django 1.9 and Python3 support.
v0.4.9
------
Be a bit friendlier if someone sets TEMPLATED_EMAIL_FILE_EXTENSION='.html' strip the leading . so inconsistent behavior is not experienced (using '.html' will fall back to legacy loading behaviour when it doesn't find filename..html).
v0.4.8
------
Adds pep-8 fixes, and basic testing infrastructure from https://github.com/bradwhittington/django-templated-email/pull/24 and https://github.com/bradwhittington/django-templated-email/pull/23
Amends AUTHORS file
v0.4.7
------
Refactor to make template_prefix/suffix passed through everywhere (taking
precedence), with template_dir/file_extension available on backends where it
makes sense, with higher priority on template_prefix/suffix.
Re-formatted changelog
Allow TEMPLATED_EMAIL_BACKEND to be a class
v0.4.6
------
Reworked vanilla_django backend allows you to extract the EmailMessage object
without sending email. Refactored code for PEP8 compliance
v0.4.5
------
Better error handling for the PostageApp backend
v0.4.4
------
Allow overriding of file_extension on a call to send_mail for issue #12
https://github.com/bradwhittington/django-templated-email/issues/12
v0.4.3
------
Allow overriding connection, auth_user and auth_password ala
django.core.mail.send_mail for issue #10
https://github.com/bradwhittington/django-templated-email/issues/10
v0.4.2
------
Allow overriding of template_dir on a call to send_mail for issue #12
https://github.com/bradwhittington/django-templated-email/issues/12
v0.4.1
------
Basic fix for issue #3
https://github.com/bradwhittington/django-templated-email/issues/3 to support
better template inheritence
v0.4
----
Adds support for cc'ing and bcc'in recipients, switches mailchimp backend
to use greatape, via @nitinhayaran
v0.3.3
------
Fixes template prefix dir not being used correctly
v0.3.2
------
Bubble up errors on templates when there is an issue with finding blocks
v0.3.1
------
Adds configuration variables for settings.py to change template dir, and
template extension
v0.3
----
Plain part, subject, and HTML part now supported as blocks in a single
.email template
v0.2.1
------
Adds support for adding custom headers where supported
v0.2
----
Adds support for postageapp
v0.1.3
------
Disables autoescaping when rendering templates.
v0.1.2
------
Adds initial support for Mailchimp STS backend