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