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