Skip to content

Commit c682259

Browse files
author
Lukas Puehringer
committed
Release 1.0.0
Signed-off-by: Lukas Puehringer <[email protected]>
1 parent 5789578 commit c682259

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog
22

3+
## securesystemslib v1.0.0
4+
5+
### Added
6+
* Signer: add public_key attribute to interface (#756)
7+
* CryptoSigner: support ecdsa keytype that is no longer in spec (#711)
8+
* CryptoSigner: add private_bytes property (#799)
9+
* CryptoSigner: add `"file2"` signer uri (#759)
10+
* test: use localstack to test AWSSigner (#777)
11+
12+
### Removed
13+
* CryptoSigner: remove `"file"` signer uri (#759)
14+
* migration script for legacy keys (#770)
15+
* `SSlibSigner` class and `*_securesystemslib_key` methods (#771)
16+
* legacy key `key*`, `interface`, `util` and `schema` modules (#772, #773, #776)
17+
* unused functions in `hash`, and `formats` module (#774, #776)
18+
* unused global key constants (#806)
19+
20+
### Changed
21+
* SSlibKey: strengthen input validation (#780, #795)
22+
* AWSSigner: support default scheme and add stronger input validation (#724, #778)
23+
* dsse: change Envelope.signatures type to dict (#743)
24+
* vendor: update ed25519 copy (#793)
25+
* docs: improve user and contributor docs (#744, #745, #746, #749, #759, #796)
26+
* test: improve and temporarily disable SigstoreSigner test (#779, #785)
27+
* ci: use dependabot groups, update weekly (#735)
28+
* ci: test macOS and Windows on latest Python only (#797)
29+
* Make securessystemslib.gpg internal (#792)
30+
31+
### Fixed
32+
* Fix check-upstream-ed25519 workflow permission (#706)
33+
* SSlibKey: fix default scheme and test for ecdsa nistp384 key (#763 #794)
34+
35+
336
## securesystemslib v0.31.0
437

538
### Added

securesystemslib/__init__.py

Lines changed: 1 addition & 1 deletion
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)