Update canary channel label to "beta" (#28905)

During the beta period, canaries will be published as
`19.0.0-beta-<COMMIT_SHA>-<DATE>`. They will also be tagged as `beta`
when published to npm.
This commit is contained in:
Andrew Clark 2024-04-25 13:14:33 -04:00 committed by GitHub
parent 82d8129e58
commit f8a8eac86b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -639,7 +639,7 @@ workflows:
# because this used to be called the "next" channel and some
# downstream consumers might still expect that tag. We can remove this
# after some time has elapsed and the change has been communicated.
dist_tag: "canary,next"
dist_tag: "canary,next,beta"
- publish_prerelease:
name: Publish to Experimental channel
requires:
@ -668,7 +668,7 @@ workflows:
name: Publish to Canary channel
commit_sha: << pipeline.git.revision >>
release_channel: stable
dist_tag: "canary,next"
dist_tag: "canary,next,beta"
- publish_prerelease:
name: Publish to Experimental channel
requires:

View File

@ -26,7 +26,7 @@ const ReactVersion = '19.0.0';
//
// It only affects the label used in the version string. To customize the
// npm dist tags used during publish, refer to .circleci/config.yml.
const canaryChannelLabel = 'canary';
const canaryChannelLabel = 'beta';
const stablePackages = {
'eslint-plugin-react-hooks': '5.1.0',