Skip to content

Commit

Permalink
Bump version from 18.2 to 18.3
Browse files Browse the repository at this point in the history
We're going to use this branch to release a minor 18.3 release based off
the published 18.2 release revision. This will include some additional
warnings to assist in upgrading to React 19, but no behavior changes
compared to 18.2.

I bumped the React version to 18.3 and all the other packages by a patch
revision (since we're not going to update anything in those).
  • Loading branch information
acdlite committed Apr 16, 2024
1 parent 9e3b772 commit 2cfb474
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 36 deletions.
33 changes: 18 additions & 15 deletions .circleci/config.yml
Expand Up @@ -529,21 +529,24 @@ workflows:
# - "-r=www-modern --env=production --variant=true"

# TODO: Test more persistent configurations?
- download_base_build_for_sizebot:
filters:
branches:
ignore:
- main
requires:
- setup
- sizebot:
filters:
branches:
ignore:
- main
requires:
- download_base_build_for_sizebot
- yarn_build_combined

# Sizebot is disabled because the base revision of this 18.3 branch is
# too old
# - download_base_build_for_sizebot:
# filters:
# branches:
# ignore:
# - main
# requires:
# - setup
# - sizebot:
# filters:
# branches:
# ignore:
# - main
# requires:
# - download_base_build_for_sizebot
# - yarn_build_combined
- yarn_lint_build:
requires:
- yarn_build_combined
Expand Down
16 changes: 8 additions & 8 deletions ReactVersions.js
Expand Up @@ -18,25 +18,25 @@
//
// 0.0.0-experimental-241c4467e-20200129

const ReactVersion = '18.2.0';
const ReactVersion = '18.3.0';

// The label used by the @next channel. Represents the upcoming release's
// stability. Could be "alpha", "beta", "rc", etc.
const nextChannelLabel = 'next';

const stablePackages = {
'eslint-plugin-react-hooks': '4.6.0',
'jest-react': '0.14.0',
'eslint-plugin-react-hooks': '4.6.1',
'jest-react': '0.14.1',
react: ReactVersion,
'react-art': ReactVersion,
'react-dom': ReactVersion,
'react-is': ReactVersion,
'react-reconciler': '0.29.0',
'react-refresh': '0.14.0',
'react-reconciler': '0.29.1',
'react-refresh': '0.14.1',
'react-test-renderer': ReactVersion,
'use-subscription': '1.8.0',
'use-sync-external-store': '1.2.0',
scheduler: '0.23.0',
'use-subscription': '1.8.1',
'use-sync-external-store': '1.2.1',
scheduler: '0.23.1',
};

// These packages do not exist in the @next or @latest channel, only
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-react/package.json
Expand Up @@ -20,8 +20,8 @@
"homepage": "https://reactjs.org/",
"peerDependencies": {
"jest": "^23.0.1 || ^24.0.0 || ^25.1.0",
"react": "^18.1.0",
"react-test-renderer": "^18.1.0"
"react": "^18.3.0",
"react-test-renderer": "^18.3.0"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-art/package.json
@@ -1,7 +1,7 @@
{
"name": "react-art",
"description": "React ART is a JavaScript library for drawing vector graphics using React. It provides declarative and reactive bindings to the ART library. Using the same declarative API you can render the output to either Canvas, SVG or VML (IE8).",
"version": "18.1.0",
"version": "18.3.0",
"main": "index.js",
"repository": {
"type": "git",
Expand All @@ -28,7 +28,7 @@
"scheduler": "^0.22.0"
},
"peerDependencies": {
"react": "^18.1.0"
"react": "^18.3.0"
},
"files": [
"LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-dom/package.json
@@ -1,6 +1,6 @@
{
"name": "react-dom",
"version": "18.1.0",
"version": "18.3.0",
"description": "React package for working with the DOM.",
"main": "index.js",
"repository": {
Expand All @@ -21,7 +21,7 @@
"scheduler": "^0.22.0"
},
"peerDependencies": {
"react": "^18.1.0"
"react": "^18.3.0"
},
"files": [
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-is/package.json
@@ -1,6 +1,6 @@
{
"name": "react-is",
"version": "18.1.0",
"version": "18.3.0",
"description": "Brand checking of React Elements.",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-reconciler/package.json
Expand Up @@ -26,7 +26,7 @@
"node": ">=0.10.0"
},
"peerDependencies": {
"react": "^18.1.0"
"react": "^18.3.0"
},
"dependencies": {
"loose-envify": "^1.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/react-test-renderer/package.json
@@ -1,6 +1,6 @@
{
"name": "react-test-renderer",
"version": "18.1.0",
"version": "18.3.0",
"description": "React package for snapshot testing.",
"main": "index.js",
"repository": {
Expand All @@ -19,12 +19,12 @@
},
"homepage": "https://reactjs.org/",
"dependencies": {
"react-is": "^18.1.0",
"react-is": "^18.3.0",
"react-shallow-renderer": "^16.15.0",
"scheduler": "^0.22.0"
},
"peerDependencies": {
"react": "^18.1.0"
"react": "^18.3.0"
},
"files": [
"LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Expand Up @@ -4,7 +4,7 @@
"keywords": [
"react"
],
"version": "18.1.0",
"version": "18.3.0",
"homepage": "https://reactjs.org/",
"bugs": "https://github.com/facebook/react/issues",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/ReactVersion.js
Expand Up @@ -13,4 +13,4 @@
// TODO: This module is used both by the release scripts and to expose a version
// at runtime. We should instead inject the version number as part of the build
// process, and use the ReactVersions.js module as the single source of truth.
export default '18.1.0';
export default '18.3.0';

0 comments on commit 2cfb474

Please sign in to comment.