From 915b914b3a05b60590c75851464e1ca75249976d Mon Sep 17 00:00:00 2001 From: Andrew Clark Date: Wed, 15 May 2024 11:01:28 -0400 Subject: [PATCH] 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. --- .circleci/config.yml | 4 ++-- ReactVersions.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 584eca23a3ff1..fc1fffdaa9047 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -646,7 +646,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,beta" + dist_tag: "canary,next,rc" - publish_prerelease: name: Publish to Experimental channel requires: @@ -675,7 +675,7 @@ workflows: name: Publish to Canary channel commit_sha: << pipeline.git.revision >> release_channel: stable - dist_tag: "canary,next,beta" + dist_tag: "canary,next,rc" - publish_prerelease: name: Publish to Experimental channel requires: diff --git a/ReactVersions.js b/ReactVersions.js index 482d3e232689c..14e3ba57c4521 100644 --- a/ReactVersions.js +++ b/ReactVersions.js @@ -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 = 'beta'; +const canaryChannelLabel = 'rc'; const stablePackages = { 'eslint-plugin-react-hooks': '5.1.0',