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