File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## securesystemslib v0.29.0
4
+
5
+ This release is reaping the rewards of the new signer API with four(!) new
6
+ signing methods: Two cloud based KMSs, post-quantum crypto support and a
7
+ "keyless" signing system.
8
+
9
+ Advance notice to folks using the ` keys ` , ` ecdsa_keys ` , ` rsa_keys ` and
10
+ ` ed25519_keys ` modules: these modules are headed for deprecation. Please have
11
+ a look at the ` signer ` API and get in touch if the functionality you need
12
+ isn't there (or if more documentation is needed).
13
+
14
+ ### Added
15
+ * Sigstore as a new experimental signing method (#552 )
16
+ * SPHINCS+ as a new experimental signing method (#568 )
17
+ * Azure Key Vault as a new signing method (#588 )
18
+ * AWS KMS as a new signing method (#609 )
19
+ * ` CryptoSigner ` as a more featureful replacement for ` SSLibSigner ` (#604 )
20
+ * Documentation that focuses on the signer API (#634 , #622 )
21
+
22
+ ### Changed
23
+ * ` SSLibSigner ` has been deprecated: Please use ` CryptoSigner ` instead (#604 )
24
+ * ` keys ` module is not used for signature verification in ` signer ` API (#585 )
25
+ * Various minor fixes, please see git log for details
26
+
3
27
## securesystemslib v0.28.0
4
28
5
29
### Added
Original file line number Diff line number Diff line change 1
1
# pylint: disable=missing-module-docstring
2
2
import logging
3
3
4
- __version__ = "0.28 .0"
4
+ __version__ = "0.29 .0"
5
5
6
6
# Configure a basic 'securesystemslib' top-level logger with a StreamHandler
7
7
# (print to console) and the WARNING log level (print messages of type
You can’t perform that action at this time.
0 commit comments