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
|
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [2.0.0] - 26th of June 2025
### Added
- Update for python-omemo v2.0.0, introducing improved device label handling with label signing
### Changed
- Changed etree device list parsing helpers to include new device label signatures
## [1.2.0] - 24th of June 2025
### Fixed
- Correctly parse the value of the kex attribute as a boolean
### Changed
- Relax XML schema strictness w.r.t. the order of elements in the bundle
### Removed
- Removed project.py and simplified version.py as part of the migration towards pyproject.toml
## [1.1.0] - 15th of October 2024
### Changed
- Modify XML schema to allow for empty device lists
- Drop support for Python3.8, add support for Python3.13, bump PyPy test version to 3.10
- Internal housekeeping, mostly related to pylint
## [1.0.4] - 9th of July 2024
### Changed
- 2024 maintenance (bumped Python versions, adjusted for updates to mypy, pylint and GitHub actions)
## [1.0.3] - 8th of November 2022
### Changed
- Exclude tests from the packages
## [1.0.2] - 4th of November 2022
### Changed
- Increased the minimum version of protobuf to 3.20.3 after reports that earlier versions cause issues
- Disabled protobuf's deterministic serialization in an attempt to achieve PyPy3 compatibility
## [1.0.1] - 3rd of November 2022
### Added
- Python 3.11 to the list of supported versions
### Changed
- Replaced usages of the walrus operator to correctly support Python 3.7 and 3.8 as advertized
- Fixed a bug in the way the authentication tag was calculated during decryption of the AEAD implementation
## [1.0.0] - 1st of November 2022
### Added
- Initial release.
[Unreleased]: https://github.com/Syndace/python-oldmemo/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/Syndace/python-oldmemo/compare/v1.2.0...v2.0.0
[1.2.0]: https://github.com/Syndace/python-oldmemo/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/Syndace/python-oldmemo/compare/v1.0.4...v1.1.0
[1.0.4]: https://github.com/Syndace/python-oldmemo/compare/v1.0.3...v1.0.4
[1.0.3]: https://github.com/Syndace/python-oldmemo/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/Syndace/python-oldmemo/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/Syndace/python-oldmemo/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/Syndace/python-oldmemo/releases/tag/v1.0.0
|