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