]> git.phdru.name Git - mimedecode.git/blob - ChangeLog
Tests(tox): Limit "tox < 4"
[mimedecode.git] / ChangeLog
1 Version 3.1.0.post4 (2022-12-15)
2
3    Use ``conda`` to install old Python versions.
4
5 Version 3.1.0.post3 (2022-12-02)
6
7    PyPy3.
8
9 Version 3.1.0.post2 (2022-10-26)
10
11    Python 3.11.
12
13 Version 3.1.0.post1 (2021-09-24)
14
15    GitHub Actions.
16
17    Stop testing at Travis.
18
19 Version 3.1.0 (2021-05-23)
20
21    Convert mimedecode.docbook to reST. Generate html/man/text
22    using Sphinx.
23
24    Replaced outdated and insecure `mktemp` with `NamedTemporaryFile`.
25
26    Python 3.8, 3.9.
27
28 Version 3.0.0 (2019-02-01)
29
30    Python 3.7.
31
32    Drop support for Python 3.3.
33
34 Version 2.9.0 (2017-12-12)
35
36    Split mimedecode.py into a mimedecode library and a small script.
37
38    Move formatparam_27.py and mimedecode_version.py to the library.
39
40    Make the library executable via ``python -m mimedecode``.
41
42    Rename mimedecode_version.py to __version__.py.
43
44 Version 2.8.0 (2017-11-03)
45
46    Python 3.
47
48    Monkey-patch email.message._formatparam under Python 3:
49    replace it with _formatparam from Python 2.7
50    to avoid re-encoding non-ascii params.
51
52    Fix: do not decode bytes to unicode under Python 2.7.
53
54    Stop supporting Python 2.6.
55
56    Code cleanup: fixed flake8 errors and warnings.
57
58    Push to GitHub. Tests at Travis.
59
60 Version 2.7.0 (2017-04-26)
61
62    Use m_lib.defenc instead of m_lib; install it from PyPI.
63
64    Make options --save-headers|body|message to work with multipart subparts.
65
66 Version 2.6.0 (2014-06-08)
67
68    Make options -e/-i to work with multipart subparts.
69
70    Add option -I to completely ignore a part - no headers, no body,
71    no warning.
72
73    Open all output files in binary mode. Output os.linesep instead of '\n'.
74
75    Test --save-headers|body|message masks one after another to allow
76    saving a message or a subpart to more than one file.
77
78 Version 2.5.0 (2014-03-18)
79
80    Add option --set-header=header:value to set header's value (only at the top
81 level).
82
83    Add option --set-param=header:param=value to set header parameter's value
84 (only at the top level). The header must exist.
85
86    Add option -B to skip content-transfer-decoding binary attachments.
87
88    Add options --save-headers, --save-body and --save-message to save decoded
89 headers/bodies/messages to files.
90
91    Add option -O to set the destination directory for output files.
92
93    Fix a minor bug: if a multipart message (or a subpart) lacks any textual
94 content - avoid putting an excessive newline.
95
96 Version 2.4.0 (2014-03-08)
97
98    Change option -d to accept a comma-separated list of headers:
99 -d h1,h2,h3,...
100
101    Change option -d to decode all headers and accept a list of exceptions:
102 -d *,-h1,-h2,...
103
104    Change option -p to accept lists of headers and parameters:
105 -p h1,h2,h3,..:p1,p2,p3,..
106
107    Allow * and exceptions for -p in the headers and parameters lists:
108 -p *,-h1,-h2,-h3:p1,p2,p3
109 -p h1,h2,h3:*,-p1,-p2,-p3
110 -p *,-h1,-h2,-h3:*,-p1,-p2,-p3
111
112    Change option -r to accept a list of headers: -r h1,h2,h3,...
113
114    Change option -r to remove all headers and accept a list of exceptions:
115 -r *,-h1,-h2,...
116
117    Change option -R to accept lists of headers and parameters:
118 -R h1,h2,h3:p1,p2,p3
119 -R h1,h2,h3:*,-p1,-p2,-p3
120 -R *,-h1,-h2,-h3:p1,p2,p3
121 -R *,-h1,-h2,-h3:*,-p1,-p2,-p3
122
123    Publish docs in html format.
124
125    Add ChangeLog.
126
127 Version 2.3.8 (2014-02-26)
128
129    Add option --remove-params=header to remove all parameters from the header.
130
131 Version 2.3.7 (2014-02-23)
132
133    Add option -r to remove headers and option -R to remove header's parameters.
134
135 Version 2.3.6 (2014-02-19)
136
137    Decode "To", "Cc", "Reply-To" and "Mail-Followup-To" headers by default.
138
139    Report test progress and success.
140
141    Add tests for headers and parameters decoding.
142
143    Add tests for passing (-b) and skipping (-i) message bodies.
144
145 Version 2.3.4 (2014-02-11)
146
147    Optimize recursive decoding.
148
149    Fix a bug - decode message/rfc822 subparts.
150
151 Version 2.3.3 (2014-02-02)
152
153    Forbid filtering from console. When the program runs with stdin
154    connected to the console it shows usage help.
155
156    Fix a bug - option -o and no parameters.
157
158 Version 2.3.2 (2014-02-01)
159
160    Fix a bug - do not generate 'From ' headers in subparts.
161
162    Add option --host.
163
164    Add tests.
165
166 Version 2.3.1 (2014-01-31)
167
168    Update documentation.
169
170 Version 2.3.0 (2014-01-30)
171
172    Add option -o and output_file argument.
173
174 Version 2.2.2 (2014-01-23)
175
176    Upgrade docbook-xsl.
177
178 Version 2.2.1 (2013-12-24)
179
180    Add mk-distr helper.
181
182 Version 2.2.0 (2013-12-21)
183
184    Rename __version__.py to mimedecode_version.py.
185
186    Use setuptools.
187
188 Version 2.1.5 (2013-12-18)
189
190    Move __version__ out of mimedecode.py to __version__.py
191    to allow installation without m_lib.
192
193 Version 2.1.4 (2013-12-11)
194
195    Add installation instruction in INSTALL.txt.
196
197 Version 2.1.3 (2013-12-10)
198
199    Minor bugfix.
200
201 Version 2.1.2 (2013-07-26)
202
203    Minor fix in Makefile. Switched to git.
204
205 Version 2.1.1 (2012-04-15)
206
207    Removed svn:keywords.
208
209 Version 2.1.0 (2006-04-27)
210
211    A patch by Bogdan Maryniuk <bogdan.maryniuk@gmail.com>: portable way to get
212 the default charset.
213
214 Version 2.0.0
215
216    Major rewrite to use python email package.