docs(release): record publishable-set narrowing + R8 credential path#386
Merged
Conversation
Adds an R8-prep row to the 8.1 deviations log: cargo metadata proves the live publishable set is 2 crates (uffs-time, uffs-text), not the 12/13 cited in historical plan/baseline entries; documents the dependency- ordered bootstrap sequence (both leaves, order interchangeable) and the credential decision (CARGO_REGISTRY_TOKEN for first publish — trusted publishing requires the crate to already exist — then OIDC via the dormant R7 job and token revocation). Also refreshes the R7 dashboard row: the dormancy gate is the ENABLE_CRATES_IO_PUBLISH repo variable, not the original if:false.
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
Two doc updates in
docs/architecture/release-automation-plan.md, no behavior change:New §8.1 deviations-log row ("R8 prep — publishable set narrowed (12 → 2) + credential path", 2026-06-10):
cargo metadata --no-depsproves the live publishable set is 2 crates (uffs-time,uffs-text), not the 12/13 cited in historical R0/R3.5/R6 entries (which stay unedited per append-only discipline — this row is the correction of record).cargo publish -p uffs-timethen-p uffs-text(order interchangeable). Dry-runs green, names available.CARGO_REGISTRY_TOKEN; after bootstrap, configure trusted publishers and flipvars.ENABLE_CRATES_IO_PUBLISH(dormant R7 job), then revoke the token.R7 dashboard row refresh: dormancy gate is the
ENABLE_CRATES_IO_PUBLISHrepo variable (actionlint rejected the originalif: false); clarifies the token-first bootstrap ordering.Why
Closes the doc-drift loose end found while prepping #240/#241 for the crates.io bootstrap. Companion to #385 (root
Cargo.tomlcomment fix).Verification
Docs-only; lint-fast + pre-push green.