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