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
|
.. _changelog:
===============
Py7zr Changelog
===============
All notable changes to this project will be documented in this file.
`Unreleased`_
=============
`v1.0.0`_
=========
- Celebrating the official 1.0.0 release!
Changed
-------
- CI: check on Linux on ARM64 with GitHub hosted ARM64 runner.
- Improve issue report template
- Remove Travis-CI button from Documentation
`v1.0.0rc3`_
============
Fixed
-----
- Adjust MANIFEST.in
- Fix installation on python 3.13 by allowing pyppmd 1.2.0
Changed
-------
- CI: update aarch64 tests on Ubuntu 24.04
`v1.0.0rc2`_
============
There is big incompatible change after -rc1 version.
Removed
-------
* Remove SevenZipFile.read() and SevenZipFile.readall() (#620)
This confuse users to use as same as ZipFile method, but not the same.
Using this method can easily exhaust a machine memory.
Added
-----
* Add ``factory`` parameter that takes ``WriterFactory`` object which provides
an object that implements ``Py7zIO`` interface. (#620)
This allow user to interact with Py7zr for large archives. (#620)
Deprecated
----------
* deprecation for ``writed`` method
Changed
-------
* Minimum required Python version to be Python 3.9 (#619)
* Support Python 3.13 (#619)
- Remove code paths that checked for python versions less than 3.9
* Update CI/GitHub Actions(#619)
- Drops 3.8 and adds 3.13 to the test matrix
- Update all the GitHub actions to their latest versions
- Upgrade aarch64 from ubuntu20.04+py39 to ubuntu22.04+py310.
* Replace old style strings with f-strings(#619)
* Replace typing.List (and similar) with their standard equivalent(#619)
`v1.0.0-rc1`_
=============
Changed
-------
* Bump dependencies versions
- pycryptodomex@3.32.0
- pyzstd@0.16.1
- sphinx@7.0.0
- mypy@1.10.0
- mypy_extensions@1.0.0
- isort@5.13.2
- black@24.8.0
`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)
.. History links
.. _Unreleased: https://github.com/miurahr/py7zr/compare/v1.0.0...HEAD
.. _v1.0.0: https://github.com/miurahr/py7zr/compare/v1.0.0-rc3...v1.0.0
.. _v1.0.0rc3: https://github.com/miurahr/py7zr/compare/v1.0.0-rc2...v1.0.0rc3
.. _v1.0.0rc2: https://github.com/miurahr/py7zr/compare/v1.0.0-rc1...v1.0.0rc2
.. _v1.0.0-rc1: https://github.com/miurahr/py7zr/compare/v0.22.0...v1.0.0-rc1
.. _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
|