Skip to content

Commit

Permalink
Merge pull request #635 from jku/release-0.29.0
Browse files Browse the repository at this point in the history
Release 0.29.0
  • Loading branch information
jku authored Sep 6, 2023
2 parents 819e5a1 + 3b5056c commit 03f4ad8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
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

0 comments on commit 03f4ad8

Please sign in to comment.