Bump React 19 beta to RC (#29060)
This updates the Canary label from "beta" to "rc". We will publish an actual RC (e.g. 19.0.0-rc.0) too; this only changes the label in the canary releases.
Andrew Clark committed
May 15, 2024 at 11:01 UTC
915b914b3a05b60590c75851464e1ca75249976d
2 files changed
+3
-3
.circleci/config.yml
+2
-2
@@ -646,7 +646,7 @@ workflows:
646
# because this used to be called the "next" channel and some
647
# downstream consumers might still expect that tag. We can remove this
648
# after some time has elapsed and the change has been communicated.
649
- dist_tag: "canary,next,beta"
649
+ dist_tag: "canary,next,rc"
650
- publish_prerelease:
651
name: Publish to Experimental channel
652
requires:
@@ -675,7 +675,7 @@ workflows:
675
name: Publish to Canary channel
676
commit_sha: << pipeline.git.revision >>
677
release_channel: stable
678
- dist_tag: "canary,next,beta"
678
+ dist_tag: "canary,next,rc"
679
- publish_prerelease:
680
name: Publish to Experimental channel
681
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 = 'beta';
29
+const canaryChannelLabel = 'rc';
30
31
const stablePackages = {
32
'eslint-plugin-react-hooks': '5.1.0',