From 3b5056c87d4e386f6e83e4f4378efa32f19aaf1c Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 5 Sep 2023 10:50:15 +0300 Subject: [PATCH] Release 0.29.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52df36c8..b6a61365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## securesystemslib v0.29.0 + +This release is reaping the rewards of the new signer API with four(!) new +signing methods: Two cloud based KMSs, post-quantum crypto support and a +"keyless" signing system. + +Advance notice to folks using the `keys`, `ecdsa_keys`, `rsa_keys` and +`ed25519_keys` modules: these modules are headed for deprecation. Please have +a look at the `signer` API and get in touch if the functionality you need +isn't there (or if more documentation is needed). + +### Added +* Sigstore as a new experimental signing method (#552) +* SPHINCS+ as a new experimental signing method (#568) +* Azure Key Vault as a new signing method (#588) +* AWS KMS as a new signing method (#609) +* `CryptoSigner` as a more featureful replacement for `SSLibSigner` (#604) +* Documentation that focuses on the signer API (#634, #622) + +### Changed +* `SSLibSigner` has been deprecated: Please use `CryptoSigner` instead (#604) +* `keys` module is not used for signature verification in `signer` API (#585) +* Various minor fixes, please see git log for details + ## securesystemslib v0.28.0 ### Added diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index 6bfbac95..a4825475 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "0.28.0" +__version__ = "0.29.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type