Bump main to 10.0-preview#1128
Open
dwcullop wants to merge 2 commits into
Open
Conversation
Cut main over to the next major preview so packages built from main are versioned 10.0.0-preview.{height} instead of 9.5-preview.{height}.
This is a manual version.json edit (the sanctioned override path), so the PR carries the 'manual-version-edit' label; the major bump 9 -> 10 carries 'breaking-change' per pr-version-check.yml.
The workflow gated major bumps on a 'breaking-change' (hyphen) label that does not exist in the repo; the actual label is 'breaking change' (space). Align the check and its messages with the real label so a labeled major bump passes.
JakenVeina
approved these changes
Jul 3, 2026
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
Bump
mainto10.0-preview.{height}so preview builds offmainpublish as v10 preview instead of v9.5 preview.Also fixes a latent bug in
pr-version-check.yml: the major-bump gate looked for abreaking-change(hyphen) label that does not exist in this repo. The real label isbreaking change(space). The check and its messages now match the actual label, so this labeled major bump passes.Why manual
version.jsonis normally owned by the automation workflows (cut-major,promote-minor,bump-major-preview). The sanctioned way to advance the major is the Bump main to next major preview workflow. This PR is a one-time manual cutover, so it carries themanual-version-editoverride label and thebreaking changelabel per the version-check policy.Verification
nbgv get-versioncomputes10.0.0-previewfrom the editedversion.json.pr-version-check.ymlare string-only; no logic change.