Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.29.0 #635

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion securesystemslib/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down