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