-
Notifications
You must be signed in to change notification settings - Fork 11
/
CHANGES
168 lines (111 loc) · 3.79 KB
/
CHANGES
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
0.9.0.post0 (2024-10-05)
------------------------
Update listed dependencies to add support for pytest 8 and drop support for pytest<4.6
0.9.0 (2024-08-13)
------------------
Add support for exposing server certificate
Explicitly store request data (fixes #77)
Make the code compliant with pre-commit hooks
Remove unused `six` from tox config
Drop Python 3.5 support
Add Python 3.13 support
Update the AUTHORS file
0.8.1 (2023-09-23)
------------------
Ignore AttributeError when shutting down server
Add support for Python 3.12 (or at least, list it explicitly in the classifiers)
Update the AUTHORS file
0.8.0 (2023-07-14)
------------------
Improve deployment workflow to use trusted publishing and upload to Test PyPI first
Remove a bunch of obsolete code
Clean up the smtp module's driver code
0.7.1 (2023-01-29)
------------------
Update SMTP server code to work with aiosmtpd >=1.4.3
Fix GitHub Actions configuration for Python 3.5 and 3.6
Add support for Python 3.11 (or at least, list it explicitly in the classifiers)
Update the AUTHORS file
Add a workflow to push packages to PyPI using GitHub Actions
0.7.0 (2022-08-30)
------------------
Make smtp support an optional extra
Update some obsolete syntax to drop support for Python 2
Add linting for code and workflow actions using pre-commit hooks
Expand the range of pytest versions known to be compatible, with tests
Add badges to README
0.6.0 (2022-05-05)
------------------
Drop support for Python 3.3 and 3.4
Use setuptools_scm for managing versions of this package
Support sending chunked responses from the HTTP server
Switch SMTP server backend from smtpd to aiosmtpd
0.5.1.post0 (2021-12-13)
------------------------
Explicitly list supported Python versions with python_requires in setup.py.
0.5.1 (2021-11-18)
------------------
Regenerate included certificate to use SHA-256 hash to avoid OpenSSL errors (fixes #2).
Add support for Python 3.10.
Drop support for Python 2.6.
Migrate repository to Github and update project metadata.
0.5 (2018-09-20)
----------------
New feature: SMTP email message objects now include a ``details`` property
capturing the envelope details.
0.4.2 (2018-11-14)
----------------
Fix support for Python 3.6 (fixes #21).
Add support for Python 3.7.
0.4.1 (2017-11-28)
----------------
Re-release of 0.4.0 because of pypi.org's restrictive file management #PITA
0.4 (2017-11-28)
----------------
New feature: All received requests are now stored for ilater inspection. Thanks Benjamin Wohlwend!
0.3.7 (2017-04-03)
------------------
Add support for Python 3.6
0.3.6 (2016-08-27)
------------------
Use @pytest.fixture to declare fixtures. Thanks Bruno Oliveira!
0.3.5 (2015-10-25)
------------------
Add support for Python 3.4 and 3.5.
0.3.4 (2015-02-01)
------------------
Use werzeug>=0.10 which fices SSL problems.
0.3.3 (2014-08-31)
------------------
Content is now string by default (was None).
0.3.2 (2013-10-16)
------------------
Added new SSL cerificate.
Skipped all (not yet) working tests for pytest_localserver.https under Python 3.
0.3.1 (2013-10-13)
------------------
Include tox config in release file.
0.3 (2013-08-02)
----------------
Ported to Python 3.2+. Support for Python 2.4/2.5 dropped!
Added WSGI server
Known issues: SSL encryption seems to have troubles under Python 3 still!
0.1.5 (2013-03-05)
------------------
Added support for POST (thanks to Muhammad Subery).
0.1.4 (2011-08-21)
------------------
Added gzip support.
0.1.3 (2011-05-22)
------------------
#1: Replaced Maildir backend with simple list to fully support Python 2.4.
0.1.2 (2011-05-07)
------------------
Added support for HTTP over SSL.
0.1.1 (2011-04-15)
------------------
Support for Python 2.5. The HTTP server also works under Python 2.4. This partly
fixes issue #1.
0.1 (2011-04-07)
----------------
Initial release.