File: changelog.rst

package info (click to toggle)
python-pyppmd 1.2.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,652 kB
  • sloc: ansic: 5,644; python: 1,604; makefile: 15
file content (269 lines) | stat: -rw-r--r-- 5,844 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
.. include:: ../Changelog.rst

.. past changelog before v0.18.0

`v0.17.4`_
==========
Fixed
-----
* ppmd7: allow multiple decode without additional input data (#84)
* ppmd8: test: Fix fuzzer test program (#82)

Changed
-------
* CI: bump actions/checkout@v3 (#81)
* CI: bump actions/setup-python@v3 (#80)
* CI: bump pypa/cibuildwheel@2.3.1 (#78)
* Update 32bit detection logic

`v0.17.3`_
==========
Fixed
-----
* Build on MingW/MSYS2(#68,#69)

Added
-----
* Test on Python 3.10.0, PyPY-3.6 and PyPy-3.7 (#71)

Changed
-------
* CI: use pypa/ciwheelbuild(#70)
* CI: add dependabot(#70)
* Bump versions
  - CI: pypa/ciwheelbuild@2.2.2
  - CI: run-on-arch@2.1.1
  - CI: actions/stale@4
* CI: exclude pypy on windows
* CI: exclude cp310-macos because python 3.10 for macos is superceded
* CI: publish musllinux wheel
* CI: improve cibuildwheel performance

`v0.17.1`_
==========

Added
-----
* Wheels for python 3.10

`v0.17.0`_
==========

Added
-----
* unified API for variation H and I
* ppmd7, ppmd8: flag to control endmark(-1) addtions.
  defaults:  ppmd7 without endmark, ppmd8: with endmark.

Changed
-------
* Unified API to use Variant H, and Varant I version 2 from simple API.
  User can provide ``variant`` argument to the constractor. (#59)
* Allocate PPMD7Decompressor buffer variables from heap(#52)
* Replace pthread wrapper library to the verison of one made by Lockless. Inc. (#67)
* Refactoring internal variable namees, move thread shared variable into ThreadControl structure.

Fixed
-----
* More robust PPMd8Decompressor by taking thread control variables and buffers from heap,
  and remove global variables.(#54)
* PPMD8Decoder: Deadlock on Windows(#67 and more)

Deprecated
----------

Removed
-------
* End-mark (0x01 0x00) mode(#62)

Security
--------

`v0.16.1`_
==========

Added
-----
* CI: add macOS as test matrix(#51)

Fixed
-----
* Fix osX bulid error(#49,#50)

`v0.16.0`_
==========

Added
-----
* PPMd8: support endmark option(#39)
* PPMd8: support restore_method option(#24, @cielavenir)
* Add pthread wrapper for macOS and Windows(#33)

Changed
-------
* PPMd8: decompressor use threading(#24,#33)

Fixed
-----
* PPMd8: Decompressor become wrong status when memory_size is smaller than file size(#24,#25,#28,#33,#45,#46)
* PPMd8: Decompressor allocate buffers by PyMem_Malloc() (#42)
* CMake: support CFFI extension generation(#30)
* CMake: support debug flag for extension development(#27)
* CMake: support pytest_runner on windows
* CI: run tox test on pull_request

`v0.15.2`_
==========

Added
-----
* Add development note using cmake

Fixed
-----
* Make CMake build script working

Security
--------
* Hardening for multiplexing overflow(scan#1)

`v0.15.1`_
==========

Added
-----
* Badge for conda-forge package(#19)

Changed
-------
* Test document with tox

Fixed
-----
* Fix setup.py: pyppmd.egg-info/SOURCES.txt not including full path
* Fix source package not include .git* files(#20)
* Fix compiler warning by cast.

`v0.15.0`_
==========

* Now development status is Beta.

Added
-----

* Introduce PpmdCompressor and PpmdDecompressor class for stream compression.
* Introduce decompress_str() one-shot utility to return str object.

Changed
-------

* decompress() always return bytes object.

Deprecated
----------

* PPMd8: drop length mode for decompression and always use end mark mode.
* PPMd8: drop flush() method for decompression.

`v0.14.0`_
==========

Added
-----
* Introduce compress() and decompress() one-shot utility
  - compress() accept bytes-like object or string. When string, encode it to UTF-8 first.
  - decompress() has an argument encoding, if specified, it returns string.
* C: CFFI: Introduce End-Mark mode for PPMd8

Changed
-------
* C: Limit initial output buffer size as same as specified length.
* C: Allow python thread when decode/encode loop running.


`v0.13.0`_
==========

Added
-----
* Benchmark test to show performance

Changed
-------
* Change folder structures in source.
* Release resources on flush()

Fixed
-----
* Fix input buffer overrun(#8)

`v0.12.1`_
==========

Fixed
-----
* Fix dist of typing stubs


`v0.12.0`_
==========

Added
-----
* add PPMd varietion I (PPMd8)
  - Ppmd8Encoder, Ppmd8Decoder class
* MyPy typing stubs

Changed
-------
* switch to LGPLv2.1+ License
* Introduce flush() method for decode class.

Fixed
-----
* Fix build error on Windows.


`v0.11.1`_
==========

Fixed
-----
* Fix Packaging configuration

`v0.11.0`_
==========

Fixed
-----
* Better error handling for memory management.

Changed
-------
* Skip hypothesis tests on windows
* Limit hypothesis tests parameter under available memory.


v0.10.0
=======

* First Alpha

.. History links
.. _v0.18.0: https://github.com/miurahr/pyppmd/compare/v0.17.4...v0.18.0
.. _v0.17.4: https://github.com/miurahr/pyppmd/compare/v0.17.3...v0.17.4
.. _v0.17.3: https://github.com/miurahr/pyppmd/compare/v0.17.1...v0.17.3
.. _v0.17.1: https://github.com/miurahr/pyppmd/compare/v0.17.0...v0.17.1
.. _v0.17.0: https://github.com/miurahr/pyppmd/compare/v0.16.1...v0.17.0
.. _v0.16.1: https://github.com/miurahr/pyppmd/compare/v0.16.0...v0.16.1
.. _v0.16.0: https://github.com/miurahr/pyppmd/compare/v0.15.2...v0.16.0
.. _v0.15.2: https://github.com/miurahr/pyppmd/compare/v0.15.1...v0.15.2
.. _v0.15.1: https://github.com/miurahr/pyppmd/compare/v0.15.0...v0.15.1
.. _v0.15.0: https://github.com/miurahr/pyppmd/compare/v0.14.0...v0.15.0
.. _v0.14.0: https://github.com/miurahr/pyppmd/compare/v0.13.0...v0.14.0
.. _v0.13.0: https://github.com/miurahr/pyppmd/compare/v0.12.1...v0.13.0
.. _v0.12.1: https://github.com/miurahr/pyppmd/compare/v0.12.0...v0.12.1
.. _v0.12.0: https://github.com/miurahr/pyppmd/compare/v0.11.1...v0.12.0
.. _v0.11.1: https://github.com/miurahr/pyppmd/compare/v0.11.0...v0.11.1
.. _v0.11.0: https://github.com/miurahr/pyppmd/compare/v0.10.0...v0.11.0