Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Puehringer <[email protected]>
  • Loading branch information
lukpueh committed May 2, 2024
1 parent 557378e commit 5129f2f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## securesystemslib v1.0.0

### Added
* Signer: add public_key attribute to interface (#756)
* CryptoSigner: support ecdsa keytype that is no longer in spec (#711)
* CryptoSigner: add private_bytes property (#799)
* CryptoSigner: add `"file2"` signer uri (#759)
* test: use localstack to test AWSSigner (#777)

### Removed
* CryptoSigner: remove `"file"` signer uri (#759)
* migration script for legacy keys (#770)
* `SSlibSigner` class and `*_securesystemslib_key` methods (#771)
* legacy key `key*`, `interface`, `util` and `schema` modules (#772, #773, #776)
* unused functions in `hash`, and `formats` module (#774, #776)
* unused global key constants (#806)

### Changed
* SSlibKey: strengthen input validation (#780, #795)
* AWSSigner: support default scheme and add stronger input validation (#724, #778)
* dsse: change Envelope.signatures type to dict (#743)
* vendor: update ed25519 copy (#793)
* docs: improve user and contributor docs (#744, #745, #746, #749, #759, #796)
* test: improve and temporarily disable SigstoreSigner test (#779, #785)
* ci: use dependabot groups, update weekly (#735)
* ci: test macOS and Windows on latest Python only (#797)
* Make securessystemslib.gpg internal (#792)

### Fixed
* Fix check-upstream-ed25519 workflow permission (#706)
* SSlibKey: fix default scheme and test for ecdsa nistp384 key (#763 #794)


## securesystemslib v0.31.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.31.0"
__version__ = "1.0.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 5129f2f

Please sign in to comment.