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