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