Exit prerelease mode for stable 1.6.0#20
Merged
Conversation
This exits changesets prerelease (`rc`) mode in preparation for cutting the first stable `1.6.0` release. The accumulated rc changesets are curated so the final `## 1.6.0` section reads cleanly: the rc.5 array-flip introduction and its rc.6 revert collapse into a single net entry (no flip-then-revert noise), the CI/OIDC smoke-test entry from rc.1 is dropped, and a short "First stable release of `@codama/spec`" intro is added. Once merged, `changesets/action` will open the standard "Release package" PR that runs `changeset version` (yielding `1.6.0`) and, on its merge, publishes to npm via OIDC trusted publishing.
Merged
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.
This PR exits changesets prerelease (
rc) mode and curates the accumulated rc changelog so that, once merged, the standardchangesets/actionflow can cut the first stable1.6.0release.The
.changeset/pre.jsonmode flips from"pre"to"exit". Two changesets are pruned to clean up the final## 1.6.0section:bold-spiders-rest(the rc.6 revert of the rc.5 array-flips) andverify-trusted-publishing(the rc.1 CI/OIDC smoke-test). Thekeen-zebras-meltchangeset is edited to drop the now-irrelevant third bullet about array flips, since the revert is no longer described. A newrelease-1-6-0.mdchangeset adds a short "First stable release" intro so the## 1.6.0section opens with context. The net effect is that the## 1.6.0section will list four minor entries (docs+api kind, category meta-model, camelCase+address kind, the release intro) and one patch entry (the tsup splitting fix), without any flip-then-revert dance or CI plumbing noise. Historical## 1.6.0-rc.*sections are preserved.On merge,
changesets/actionopens the "Release package" PR withpackage.json → 1.6.0and the## 1.6.0changelog section. Merging that PR triggerschangeset publishvia npm trusted publishing (OIDC), producing@codama/spec@1.6.0with provenance.Downstream pin bumps (Rust
spec-generatorsand JS@codama-internal/spec-generators) will land in separate follow-up PRs against their respective repos once1.6.0is on npm.