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.
Andrew Clark committed
Apr 25, 2024 at 13:14 UTC
f8a8eac86bac406724f327325f804e65e594dd68
2 files changed
+3
-3
.circleci/config.yml
+2
-2
@@ -639,7 +639,7 @@ workflows:
639
# because this used to be called the "next" channel and some
640
# downstream consumers might still expect that tag. We can remove this
641
# after some time has elapsed and the change has been communicated.
642
- dist_tag: "canary,next"
642
+ dist_tag: "canary,next,beta"
643
- publish_prerelease:
644
name: Publish to Experimental channel
645
requires:
@@ -668,7 +668,7 @@ workflows:
668
name: Publish to Canary channel
669
commit_sha: << pipeline.git.revision >>
670
release_channel: stable
671
- dist_tag: "canary,next"
671
+ dist_tag: "canary,next,beta"
672
- publish_prerelease:
673
name: Publish to Experimental channel
674
requires:
ReactVersions.js
+1
-1
@@ -26,7 +26,7 @@ const ReactVersion = '19.0.0';
26
//
27
// It only affects the label used in the version string. To customize the
28
// npm dist tags used during publish, refer to .circleci/config.yml.
29
-const canaryChannelLabel = 'canary';
29
+const canaryChannelLabel = 'beta';
30
31
const stablePackages = {
32
'eslint-plugin-react-hooks': '5.1.0',