Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a87edf6

Browse files
committedApr 25, 2024··
Update canary channel label to "beta"
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.
1 parent cf5ab8b commit a87edf6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ workflows:
639639
# because this used to be called the "next" channel and some
640640
# downstream consumers might still expect that tag. We can remove this
641641
# after some time has elapsed and the change has been communicated.
642-
dist_tag: "canary,next"
642+
dist_tag: "canary,next,beta"
643643
- publish_prerelease:
644644
name: Publish to Experimental channel
645645
requires:
@@ -668,7 +668,7 @@ workflows:
668668
name: Publish to Canary channel
669669
commit_sha: << pipeline.git.revision >>
670670
release_channel: stable
671-
dist_tag: "canary,next"
671+
dist_tag: "canary,next,beta"
672672
- publish_prerelease:
673673
name: Publish to Experimental channel
674674
requires:

‎ReactVersions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const ReactVersion = '19.0.0';
2626
//
2727
// It only affects the label used in the version string. To customize the
2828
// npm dist tags used during publish, refer to .circleci/config.yml.
29-
const canaryChannelLabel = 'canary';
29+
const canaryChannelLabel = 'beta';
3030

3131
const stablePackages = {
3232
'eslint-plugin-react-hooks': '5.1.0',

0 commit comments

Comments
 (0)
Please sign in to comment.