chore: merge dev into main - #12
Merged
Merged
Conversation
The workflow had one job. It tagged, wrote the GitHub release, moved the major alias — and stopped. Three tags exist that npm never saw; the only published version came from a manual run. Two pieces were missing. The job exposed no outputs, so nothing downstream could learn whether a release happened: step outputs are invisible across jobs. And there was no publish job to consume them. dev now reaches the workflow for the prerelease job, with release-please itself gated to the release branch, matching coverage-report. scripts/backfill-npm.sh publishes the tags that were missed. It walks them oldest-first under a throwaway dist-tag, because npm moves latest to whatever went out last — an old version published after a new one would otherwise become what npm install hands out.
A one-off for the three tags that were cut while release-please.yml had no publish job. That gap is closed, so the script has nothing left to do.
TitusKirch
marked this pull request as ready for review
September 1, 2026 17:10
CodeQL flagged both publish jobs: a seven-character hash is not immutable enough to be a pin, because an abbreviation can grow ambiguous as the repository does. The full 40 characters cannot.
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.
Automated rollup PR for changes accumulated on
dev. Mark ready when you want release-please to pick it up — and use a merge commit, not squash, so individualfeat:/fix:commits stay visible to release-please.