Skip to content

Commit 1092ac6

Browse files
authored
Merge pull request #807 from lukpueh/release-1.0.0
Release 1.0.0
2 parents 5789578 + fe34bac commit 1092ac6

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Changelog
22

3+
## securesystemslib v1.0.0
4+
5+
Securesystemslib API is now considered stable. The core functionality is
6+
provided in the _Signer_ interface and the half a dozen integrated _Signer_
7+
implementations that can be found in the `signer` module. Smaller helper
8+
modules `dsse`, `formats`, `hash` and `storage` are also part of the API.
9+
Several legacy modules have been removed.
10+
11+
### Added
12+
* Signer: add public_key attribute to interface (#756)
13+
* VaultSigner: Signer implementation for HashiCorp Vault (#800)
14+
* CryptoSigner: support ecdsa keytype that is no longer in spec (#711)
15+
* CryptoSigner: add private_bytes property (#799)
16+
* CryptoSigner: add `"file2"` signer uri (#759)
17+
* test: use localstack to test AWSSigner (#777)
18+
19+
### Removed
20+
* CryptoSigner: remove `"file"` signer uri (#759)
21+
* migration script for legacy keys (#770)
22+
* `SSlibSigner` class and `*_securesystemslib_key` methods (#771)
23+
* legacy key `key*`, `interface`, `util` and `schema` modules (#772, #773, #776)
24+
* unused functions in `hash`, and `formats` module (#774, #776)
25+
* unused global key constants (#806)
26+
27+
### Changed
28+
* SSlibKey: strengthen input validation (#780, #795)
29+
* AWSSigner: support default scheme and add stronger input validation (#724, #778)
30+
* dsse: change Envelope.signatures type to dict (#743)
31+
* vendor: update ed25519 copy (#793)
32+
* docs: improve user and contributor docs (#744, #745, #746, #749, #759, #796)
33+
* test: improve and temporarily disable SigstoreSigner test (#779, #785)
34+
* ci: use dependabot groups, update weekly (#735)
35+
* ci: test macOS and Windows on latest Python only (#797)
36+
* Make securessystemslib.gpg internal (#792)
37+
38+
### Fixed
39+
* Fix check-upstream-ed25519 workflow permission (#706)
40+
* SSlibKey: fix default scheme and test for ecdsa nistp384 key (#763 #794)
41+
42+
343
## securesystemslib v0.31.0
444

545
### Added

securesystemslib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pylint: disable=missing-module-docstring
22
import logging
33

4-
__version__ = "0.31.0"
4+
__version__ = "1.0.0"
55

66
# Configure a basic 'securesystemslib' top-level logger with a StreamHandler
77
# (print to console) and the WARNING log level (print messages of type

0 commit comments

Comments
 (0)