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