chore(release): prepare envelopers 0.8.3 - #60
Merged
Merged
Conversation
coderdan
approved these changes
Sep 7, 2026
freshtonic
approved these changes
Sep 7, 2026
freshtonic
left a comment
Contributor
There was a problem hiding this comment.
Approved. Cargo.toml and the package entry in Cargo.lock consistently prepare 0.8.3, and the packaged manifest retains aws-sdk-kms with default features disabled plus the intended default HTTPS client. The resolved graph contains only patched rustls-webpki 0.103.x, and CI test and benchmark checks are green.
Non-blocking documentation notes: the 0.8.3 changelog heading omits a release date, and several dependency bullets describe intermediate update versions rather than the final versions currently resolved in the release lockfile (for example aws-lc-sys is now 0.44.0 rather than 0.38.0). Updating those details would make the release notes more precise, but they do not affect approval.
Bump version 0.8.2 -> 0.8.3 and add a changelog entry. No code changes. The fix that matters here already landed on main in f61ad42 but was never published: `aws-sdk-kms` now has `default-features = false` with `default-https-client`, dropping the deprecated `rustls` feature that resolves to `rustls` 0.21 / `rustls-webpki` 0.101 (GHSA-82j2-j2ch-gfr8). crates.io still serves 0.8.2 (2024-01-09), whose manifest has `default_features=true` on `aws-sdk-kms`. Downstream crates therefore cannot drop `rustls-webpki` 0.101 from their lockfiles while depending on a released envelopers, because feature unification re-enables it. Publishing 0.8.3 unblocks that. Unblocks CIP-3779 in cipherstash-suite. Claude-Session: https://claude.ai/code/session_012753nvQC2ku4Ar6s4qdaft
tobyhede
force-pushed
the
release/0.8.3
branch
from
September 7, 2026 00:32
33199e3 to
d8632bd
Compare
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.
Prepares a
0.8.3release. Version bump and changelog only — no code changes.Why
The dependency fix that matters already landed on
maininf61ad42, but was never published.main’sCargo.tomlstill carriedversion = "0.8.2"— the same number as the published release — so crates.io continues to serve the old manifest.aws-sdk-kmsreqdefault_features0.8.2(2024-01-09)^1.9.0truemain(unpublished)1.114.0false, withdefault-https-clientWith default features on,
aws-sdk-kmspulls the deprecatedrustlsfeature →aws-smithy-http-client’slegacy-rustls-ring→rustls0.21 →rustls-webpki0.101.7, which is affected by GHSA-82j2-j2ch-gfr8 (panic on a malformed CRLissuingDistributionPointBIT STRING).Downstream,
cipherstash-suitecannot droprustls-webpki0.101.7 from its lockfile: settingdefault-features = falseon its ownaws-sdk-*deps is undone by feature unification, becauseenvelopers0.8.2 requestsaws-sdk-kmswith defaults. Publishing0.8.3is what unblocks that. Tracked as CIP-3779.Why a patch bump
No public API change between
0.8.2andmain. The only source changes are an internalasync-mutex→async-lockswap and one test assertion. Worth a reviewer’s eye:default-features = falsedoes change which TLS client a consumer gets by default, so if you consider that consumer-visible, this should be0.9.0instead — say so and I’ll redo it.Changelog gap
CHANGELOG.mdhas had no entries since0.5.1;0.6.x–0.8.2shipped undocumented. I did not backfill those — the new entry covers only0.8.2..0.8.3and says so.Verification
cargo metadata --lockedpasses: manifest is valid andCargo.lockis consistent. I did not run a build or the test suite — the machine is at under 1 GB free disk. CI should be treated as the gate.Not done
cargo publishhas not been run. Publishing is public and irreversible, so that is left to a human.https://claude.ai/code/session_012753nvQC2ku4Ar6s4qdaft