chore(release): bump spiffe to 0.3.1 - #448
Merged
maxlambrecht merged 1 commit intoAug 8, 2026
Merged
Conversation
Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Prepare the
spiffe0.3.1 patch release:spiffe/pyproject.toml: version0.3.0→0.3.1spiffe/CHANGELOG.md: dated[0.3.1]section covering the two changes merged since 0.3.0uv.lock: workspace version refreshNo
spiffe-tlsrelease: it has no changes since 0.4.0, and itsspiffe>=0.3.0,<0.4.0requirement already resolves to 0.3.1.Why
Two user-visible changes have landed since 0.3.0 and are unreleased:
spifferaisesCryptographyDeprecationWarning(FFDH) at import time under cryptography 50. Because that warning subclassesUserWarning, downstream projects usingfilterwarnings = errorcannot importspiffeat all.JwtSvid.parse_and_validate()no longer verifies the optionaliatclaim, so valid SVIDs are not rejected when issuer and validator clocks differ.Patch rather than minor: neither change adds API surface, and both are backward-compatible fixes. Keeping the release in the
0.3.xline also matters here, since a0.4.0would fall outsidespiffe-tls's<0.4.0requirement and outside any downstream cap, which would block exactly the consumers this release is meant to unblock.How tested
./dev lint— clean (ruff/mypy/pyright, 100% type completeness)./dev test— 376 passed (spiffe), 20 passed (spiffe-tls)./dev build—spiffe-0.3.1sdist/wheel build with correct metadata./dev integration— not run locally (no SPIRE agent socket); covered by CI, which starts SPIREuv.lock):spiffe==0.3.0+ cryptography 50.0.0,python -W error::UserWarning -c "import spiffe"→ fails withCryptographyDeprecationWarningatcertificate_utils.py:56spiffe-0.3.1wheel, same command → imports cleanly