Skip to content

Commit

Permalink
Update canary channel label to "beta"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
acdlite committed Apr 25, 2024
1 parent cf5ab8b commit a87edf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion ReactVersions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a87edf6

Please sign in to comment.