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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
.. _changelog:
===============
Py7zr Changelog
===============
All notable changes to this project will be documented in this file.
`Unreleased`_
=============
`v0.22.0`_
==========
Added
-----
* Add mode "x" for SevenZipFile (#588)
* Add SevenZipFile#namelist method (#600)
Fixed
-----
* Append mode on non-existent files (#604)
* Fix NUMBER encoding of integer when 8 bytes(#591)
Changed
-------
* Minimum required Python version to be Python 3.8 (#601)
* Remove pyannotate from pyproject.toml (#598)
Document
--------
* Update user guide (#596)
`v0.21.1`_
==========
Fixed
-----
* Follow shutil.register_unpack_format() convention of raising a ReadError
when the library cannot handle a file (#583)
* ensure unpack_7zarchive closes the archive (#584)
* 64bit OS detection (#580)
Added
-----
* Add recursive sub-directories and files extraction (#585)
Changed
-------
* check targets argument type for read and extract method (#577)
* Treat zero byte stream as a file (#551)
`v0.21.0`_
==========
Changed
-------
* Speed up extraction when number of files is very large (#555)
* Replace deprecated functions on python 3.12 (#550)
Added
-----
* Add report_update() for logging large files extraction (#558)
Document
--------
* Add subsection of multi-volume creation (#568)
`v0.20.8`_
==========
Fixed
-----
* Detect brotli import error (#543)
Changed
-------
* refactor: hardening SevenZipFile constructor (#547)
* refactor: improve type safe functions (#545)
* chore: add git export configuration (#544)
`v0.20.7`_
==========
Changed
-------
* Support Python 3.12 (#541)
`v0.20.6`_
==========
Fixed
-----
* fix: sanitize path when write (#525)
* fix: allow specify target path in relative path (#530)
* Avoid AttributeError on OpenBSD (#521)
* Error appending file: KeyError: 'lastwritetime' (#517)
Document
--------
* Fixing a string quote in user_guide document(#524)
`v0.20.5`_
==========
Fixed
-----
* Remove root reference from file names (#513)
Document
--------
* fix typo in the readme (#510)
`v0.20.4`_
==========
Fixed
-----
* Installation error in Cygwin (#504)
`v0.20.3`_
==========
Fixed
-----
* Drop manual GC to improve performance when many files are handled. (#489, #490)
* CI: fix test configurations (#494)
- Fix mypy error
- Skip deflate64 compression/decompression test on pypy
- There is an issue in dependency inflate64 library that causes SIGABORT and SIGSEGV on pypy
`v0.20.2`_
==========
Fixed
-----
* Fix error with good path data, when detecting wrong path
with new canonical_path(), and drop resolve() call on path.
`v0.20.1`_
==========
Security
--------
* Fix sanity check for path traversal attack(#480)
* Add path checker in writef() and writestr() methods that ignores evil pass.
- When pass arcname as evil path such as "../../../../tmp/evil.sh"
- it raises ValueError
* Check symlink and junction is under target folder when extraction
`v0.20.0`_
==========
Added
-----
* Support enhanced deflate compression.(#472)
Changed
-------
* Bump setuptools@63 and setuptools_scm@7 (#473)
* CI: update script (#473)
* Update tox config (#473)
* Actions: change pypy version to 3.7 (#473)
* Update readthedocs.yml (#473)
Deprecated
----------
* Deprecate Python 3.6 support (#473)
`v0.19.0`_
==========
Changed
-------
* Replace deflate64(tm) decompressor to inflate64(#459)
* test: improve checks of deflate64 case(#463)
`v0.18.10`_
===========
Fixed
-----
* Actions: fix release script to produce wheel.(#462)
there is no wheel release for v0.18.5-v0.18.9
`v0.18.9`_
==========
Fixed
-----
* Closing a SevenZipFile opened for appending, without adding a new file, raises exception (#378, #395)
* Docs: fix URL link error (#450)
* Actions: fix document compilation by installing graphviz (#450)
* Docs: fix errors and warnings on documentation.
Changed
-------
* Add changelog into Documentation (#450)
* Test on python 3.11-beta (#450)
* Bump Sphinx@5.0 for Documentation (#450)
* Docs: update configuration to ignore changelog links for link check
`v0.18.7`_
==========
Fixed
-----
* Extraction wrongly renames unix hidden dot files/directories (#448)
`v0.18.6`_
==========
Fixed
-----
* Decompression of some LZMA+BCJ archive may abort with gegmentation fault
because of a PyBCJ bug. Bump ``PyBCJ@0.6.0`` that fixed it. (#447)
Removed
-------
* Remove in-source BCJ filter pure python code.
Now it have a place in a PyBCJ project. (#447)
`v0.18.5`_
==========
Fixed
-----
* Limit memory consumption for extraction(#430,#434,#440)
* Pyproject.toml: setuptools_scm configuration(#438)
Changed
-------
* Build package with ``pip wheel`` with python 3.9 on Ubuntu 20.04
* Check py3.8, 3.9 and 3.10 on Azure-Pipelines CI/CD.
`v0.18.4`_
==========
Fixed
-----
* Raise exception properly when threaded extraction(#431,#432)
* Actions: fix tox test(#433)
Changed
-------
* Change pyproject.toml:license table to be text key and SPDX license name(#435, #436)
`v0.18.3`_
==========
Fixed
-----
* ppmd: send extra byte b"\0" to pyppmd.Ppmd7Decompressor,
when input is exhausted, but it indicate needs_input.
This is a same behavior as p7zip decoder does. (#417)
* README: fix example code(#426)
Changed
-------
* Bump ``PyPPMd@0.18.1`` (#420,#427)
* pyproject.toml: Add project section(#428)
`v0.18.1`_
==========
Changed
-------
* Limit dependency pyppmd to v0.17.x
Fixed
-----
* Fix mypy error with mypy 0.940(#421)
`v0.18.0`_
==========
Added
-----
* Support DEFLATE64 decompression(#399)
Fixed
-----
* Docs: fix typo for readall method argument(#416)
Changed
-------
* Get status down for PPMd compression/decompression(#418)
PPMd decompression has a bug easily to fail decompression.
`v0.17.4`_
==========
Fixed
-----
* When extracting and target archive compressed with unsupported LZMA2+BCJ2, py7zr raise unexpected exception. Fix to raise better exception message
Changed
-------
* docs: Add explanation of empty file specification
`v0.17.3`_
==========
Security
--------
* Check against directory traversal attack by file pathes in archive (#406,#407)
`v0.17.2`_
==========
Fixed
-----
* writef method detect wrong size of data(#397)
Changed
-------
* Improve callback object check and error message(#387)
`v0.17.1`_
==========
Fixed
-----
* Allow 7zAES+LZMA2+BCJ combination for compression(#392)
* Argument error when raising UnsupportedCompressionMethodError(#394)
* Detect memory leak in test and fix some leaks(#388)
* Fix filename and property decode in UTF-16(#391)
Changed
-------
* Azure: use ``macos@10.15`` for test(#389)
`v0.17.0`_
==========
Fixed
-----
* Extraction: overwrite a symbolic link sometimes failed(#383)
* Allow creation of archive without any write call(#369,#372)
* Type check configuration update (#384)
* Adjust for type check errors (#384)
`v0.16.4`_
==========
Fixed
-----
* Win32 file namespace convention doesn't work on Cygwin(#380,#381)
* Win32 file namespace convention doesn't work for network path(#380)
`v0.16.3`_
==========
Fixed
-----
* Reduce memory consumptions and fix memory_error on 32bit python (#370,#373,#374,#375)
Added
-----
* Add CI test for python 3.10 (#371)
`v0.16.2`_
==========
Added
-----
* Bundle type hint data
* README: Add conda recipe(#342)
Changed
-------
* Use PyBCJ instead of bcj-cffi.(#368)
* Docs: change recommended python versions
* CI: benchmark on python 3.10
* Test expectation for python 3.10 change
* Improve exceptions and error messages
* Docs: add description of ArchiveInfo class
* Docs: fix typo on shutil integration(#353)
* Bump pyzstd@0.15.0
* Bump pyppmd@0.17.0
Fixed
-----
* Docs: specification error of signature header data types.
* Fix infinite loop in extract(#354)
`v0.16.1`_
==========
Added
-----
* type hint for mypy
`v0.16.0`_
==========
Added
-----
* Add Brotli compression.
* CI: Test on AArch64.
Changed
-------
* CLI: support multi-volume archive without making temporary file(#311)
* Filter parameter: PPMd: mem is now accept int or "<val>{m|k|b}" as same as 7-zip command line option.
int value is recognized as "1 << val" ie. 24 means 4MB.
* Dependency: PyPPMd v0.14.0+
* Dependency PyCryptodome to PyCryptodomex
that changes package name from PyCrypto to PyCryptodome(#334)
.. History links
.. _Unreleased: https://github.com/miurahr/py7zr/compare/v0.22.0...HEAD
.. _v0.22.0: https://github.com/miurahr/py7zr/compare/v0.21.1...v0.22.0
.. _v0.21.1: https://github.com/miurahr/py7zr/compare/v0.21.0...v0.21.1
.. _v0.21.0: https://github.com/miurahr/py7zr/compare/v0.20.8...v0.21.0
.. _v0.20.8: https://github.com/miurahr/py7zr/compare/v0.20.7...v0.20.8
.. _v0.20.7: https://github.com/miurahr/py7zr/compare/v0.20.6...v0.20.7
.. _v0.20.6: https://github.com/miurahr/py7zr/compare/v0.20.5...v0.20.6
.. _v0.20.5: https://github.com/miurahr/py7zr/compare/v0.20.4...v0.20.5
.. _v0.20.4: https://github.com/miurahr/py7zr/compare/v0.20.3...v0.20.4
.. _v0.20.3: https://github.com/miurahr/py7zr/compare/v0.20.2...v0.20.3
.. _v0.20.2: https://github.com/miurahr/py7zr/compare/v0.20.1...v0.20.2
.. _v0.20.1: https://github.com/miurahr/py7zr/compare/v0.20.0...v0.20.1
.. _v0.20.0: https://github.com/miurahr/py7zr/compare/v0.19.0...v0.20.0
.. _v0.19.0: https://github.com/miurahr/py7zr/compare/v0.18.10...v0.19.0
.. _v0.18.10: https://github.com/miurahr/py7zr/compare/v0.18.9...v0.18.10
.. _v0.18.9: https://github.com/miurahr/py7zr/compare/v0.18.7...v0.18.9
.. _v0.18.7: https://github.com/miurahr/py7zr/compare/v0.18.6...v0.18.7
.. _v0.18.6: https://github.com/miurahr/py7zr/compare/v0.18.5...v0.18.6
.. _v0.18.5: https://github.com/miurahr/py7zr/compare/v0.18.4...v0.18.5
.. _v0.18.4: https://github.com/miurahr/py7zr/compare/v0.18.3...v0.18.4
.. _v0.18.3: https://github.com/miurahr/py7zr/compare/v0.18.1...v0.18.3
.. _v0.18.1: https://github.com/miurahr/py7zr/compare/v0.18.0...v0.18.1
.. _v0.18.0: https://github.com/miurahr/py7zr/compare/v0.17.4...v0.18.0
.. _v0.17.4: https://github.com/miurahr/py7zr/compare/v0.17.3...v0.17.4
.. _v0.17.3: https://github.com/miurahr/py7zr/compare/v0.17.2...v0.17.3
.. _v0.17.2: https://github.com/miurahr/py7zr/compare/v0.17.1...v0.17.2
.. _v0.17.1: https://github.com/miurahr/py7zr/compare/v0.17.0...v0.17.1
.. _v0.17.0: https://github.com/miurahr/py7zr/compare/v0.16.4...v0.17.0
.. _v0.16.4: https://github.com/miurahr/py7zr/compare/v0.16.3...v0.16.4
.. _v0.16.3: https://github.com/miurahr/py7zr/compare/v0.16.2...v0.16.3
.. _v0.16.2: https://github.com/miurahr/py7zr/compare/v0.16.1...v0.16.2
.. _v0.16.1: https://github.com/miurahr/py7zr/compare/v0.16.0...v0.16.1
.. _v0.16.0: https://github.com/miurahr/py7zr/compare/v0.15.2...v0.16.0
|