Skip to content

Commit 983bfa6

Browse files
committed
Merge remote-tracking branch 'origin/main' into rekov2-client
2 parents d5b407b + d05a629 commit 983bfa6

File tree

6 files changed

+343
-335
lines changed

6 files changed

+343
-335
lines changed

.github/workflows/pin-requirements.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,10 @@ jobs:
7676
cache: "pip"
7777
cache-dependency-path: pyproject.toml
7878

79-
- run: pip install pip-tools
79+
- name: Install dependencies
80+
run: |
81+
pip install "pip < 25.1" # workaround issue 1426
82+
pip install pip-tools
8083
8184
- name: Compute version from tag
8285
run: |

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ All versions prior to 0.9.0 are untracked.
4646
still required.
4747
[#1381](https://github.com/sigstore/sigstore-python/pull/1381)
4848

49-
* Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification
50-
may succeed without that key).
51-
[#1424](https://github.com/sigstore/sigstore-python/pull/1424)
52-
5349
* CI: Timestamp Authority tests use latest release, not latest tag, of
5450
[sigstore/timestamp-authority](https://github.com/sigstore/timestamp-authority)
5551
[#1377](https://github.com/sigstore/sigstore-python/pull/1377)
@@ -82,6 +78,13 @@ All versions prior to 0.9.0 are untracked.
8278
Use `SigningContext.from_trust_config()` instead.
8379
[#1363](https://github.com/sigstore/sigstore-python/pull/1363)
8480

81+
## [3.6.3]
82+
83+
### Fixed
84+
85+
* Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification
86+
may succeed without that key).
87+
[#1425](https://github.com/sigstore/sigstore-python/pull/1425)
8588

8689
## [3.6.2]
8790

@@ -683,7 +686,8 @@ This is a corrective release for [2.1.1].
683686

684687

685688
<!--Release URLs -->
686-
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.6.2...HEAD
689+
[Unreleased]: https://github.com/sigstore/sigstore-python/compare/v3.6.3...HEAD
690+
[3.6.3]: https://github.com/sigstore/sigstore-python/compare/v3.6.2...v3.6.3
687691
[3.6.2]: https://github.com/sigstore/sigstore-python/compare/v3.6.1...v3.6.2
688692
[3.6.1]: https://github.com/sigstore/sigstore-python/compare/v3.6.0...v3.6.1
689693
[3.6.0]: https://github.com/sigstore/sigstore-python/compare/v3.5.3...v3.6.0

install/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sigstore==3.6.2
1+
sigstore==3.6.3

0 commit comments

Comments
 (0)