From f40bb9331cd7f3838db92d45a2a2d7b4c23ccc00 Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Wed, 11 Oct 2023 08:36:23 -0700 Subject: [PATCH] Bump package versions for next major (#39764) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: #publish-packages-to-npm Bump all package versions to `0.74.0` (next major release) for `main`, following instructions at https://reactnative.dev/contributing/release-branch-cut-and-rc0#12-bump-minor-version-of-all-monorepo-packages-in-main. ```sh yarn bump-all-updated-packages --release-branch-cutoff ``` Changelog: [Internal] Pull Request resolved: https://github.com/facebook/react-native/pull/39764 Test Plan: — Reviewed By: robhogan Differential Revision: D49871039 Pulled By: huntie fbshipit-source-id: f4df6efeae4d8a9209e7aae7b9e6fea3d15793b5 --- package.json | 4 ++-- packages/assets/package.json | 9 +++++++-- packages/babel-plugin-codegen/package.json | 11 +++++++++-- packages/community-cli-plugin/package.json | 6 +++--- packages/debugger-frontend/package.json | 2 +- packages/dev-middleware/package.json | 4 ++-- packages/eslint-config-react-native/package.json | 4 ++-- packages/eslint-plugin-react-native/package.json | 9 +++++++-- packages/eslint-plugin-specs/package.json | 11 +++++++++-- packages/metro-config/package.json | 12 ++++++++---- packages/normalize-color/package.json | 9 +++++++-- packages/polyfills/package.json | 10 ++++++++-- packages/react-native-babel-preset/package.json | 2 +- .../react-native-babel-transformer/package.json | 2 +- packages/react-native-codegen/package.json | 2 +- packages/react-native-gradle-plugin/package.json | 8 ++++++-- packages/react-native/package.json | 14 +++++++------- packages/react-native/template/package.json | 8 ++++---- packages/typescript-config/package.json | 8 ++++++-- packages/virtualized-lists/package.json | 9 +++++++-- 20 files changed, 98 insertions(+), 46 deletions(-) diff --git a/package.json b/package.json index bfae336a8df..25c2ecacde9 100644 --- a/package.json +++ b/package.json @@ -55,8 +55,8 @@ "@definitelytyped/dtslint": "^0.0.127", "@jest/create-cache-key-function": "^29.6.3", "@pkgjs/parseargs": "^0.11.0", - "@react-native/metro-babel-transformer": "^0.73.11", - "@react-native/metro-config": "^0.73.0", + "@react-native/metro-babel-transformer": "^0.74.0", + "@react-native/metro-config": "^0.74.0", "@tsconfig/node18": "1.0.1", "@types/react": "^18.0.18", "@typescript-eslint/parser": "^6.7.4", diff --git a/packages/assets/package.json b/packages/assets/package.json index c8e5100a2cc..616930179d1 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/assets-registry", - "version": "0.73.0", + "version": "0.74.0", "description": "Asset support code for React Native.", "license": "MIT", "repository": { @@ -9,7 +9,12 @@ "directory": "packages/assets" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/assets#readme", - "keywords": ["assets", "registry", "react-native", "support"], + "keywords": [ + "assets", + "registry", + "react-native", + "support" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/babel-plugin-codegen/package.json b/packages/babel-plugin-codegen/package.json index 3d85ab95eba..5b18ffb2e20 100644 --- a/packages/babel-plugin-codegen/package.json +++ b/packages/babel-plugin-codegen/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/babel-plugin-codegen", - "version": "0.73.0", + "version": "0.74.0", "description": "Babel plugin to generate native module and view manager code for React Native.", "license": "MIT", "repository": { @@ -9,7 +9,14 @@ "directory": "packages/babel-plugin-codegen" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/babel-plugin-codegen#readme", - "keywords": ["babel", "plugin", "codegen", "react-native", "native-modules", "view-manager"], + "keywords": [ + "babel", + "plugin", + "codegen", + "react-native", + "native-modules", + "view-manager" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/community-cli-plugin/package.json b/packages/community-cli-plugin/package.json index 3f47a036390..599d039642a 100644 --- a/packages/community-cli-plugin/package.json +++ b/packages/community-cli-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/community-cli-plugin", - "version": "0.73.1", + "version": "0.74.0", "description": "Core CLI commands for React Native", "keywords": [ "react-native", @@ -22,10 +22,10 @@ "dist" ], "dependencies": { - "@react-native/dev-middleware": "^0.73.0", + "@react-native/dev-middleware": "^0.74.0", "@react-native-community/cli-server-api": "12.0.0-alpha.15", "@react-native-community/cli-tools": "12.0.0-alpha.15", - "@react-native/metro-babel-transformer": "^0.73.11", + "@react-native/metro-babel-transformer": "^0.74.0", "chalk": "^4.0.0", "execa": "^5.1.1", "metro": "0.79.1", diff --git a/packages/debugger-frontend/package.json b/packages/debugger-frontend/package.json index 55ff9250d0b..4c100152f8e 100644 --- a/packages/debugger-frontend/package.json +++ b/packages/debugger-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/debugger-frontend", - "version": "0.73.0", + "version": "0.74.0", "description": "Debugger frontend for React Native based on Chrome DevTools", "keywords": [ "react-native", diff --git a/packages/dev-middleware/package.json b/packages/dev-middleware/package.json index 8186610c2d8..8b8c6db2927 100644 --- a/packages/dev-middleware/package.json +++ b/packages/dev-middleware/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/dev-middleware", - "version": "0.73.1", + "version": "0.74.0", "description": "Dev server middleware for React Native", "keywords": [ "react-native", @@ -23,7 +23,7 @@ ], "dependencies": { "@isaacs/ttlcache": "^1.4.1", - "@react-native/debugger-frontend": "^0.73.0", + "@react-native/debugger-frontend": "^0.74.0", "chrome-launcher": "^0.15.2", "chromium-edge-launcher": "^1.0.0", "connect": "^3.6.5", diff --git a/packages/eslint-config-react-native/package.json b/packages/eslint-config-react-native/package.json index 39e8684bbbd..fca80d6d354 100644 --- a/packages/eslint-config-react-native/package.json +++ b/packages/eslint-config-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/eslint-config", - "version": "0.73.0", + "version": "0.74.0", "description": "ESLint config for React Native", "license": "MIT", "repository": { @@ -22,7 +22,7 @@ "dependencies": { "@babel/core": "^7.20.0", "@babel/eslint-parser": "^7.20.0", - "@react-native/eslint-plugin": "^0.73.0", + "@react-native/eslint-plugin": "^0.74.0", "@typescript-eslint/eslint-plugin": "^6.7.4", "@typescript-eslint/parser": "^6.7.4", "eslint-config-prettier": "^8.5.0", diff --git a/packages/eslint-plugin-react-native/package.json b/packages/eslint-plugin-react-native/package.json index 3b098f81572..acb35918dd3 100644 --- a/packages/eslint-plugin-react-native/package.json +++ b/packages/eslint-plugin-react-native/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/eslint-plugin", - "version": "0.73.0", + "version": "0.74.0", "description": "ESLint rules for @react-native/eslint-config", "license": "MIT", "repository": { @@ -9,7 +9,12 @@ "directory": "packages/eslint-plugin-react-native" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/eslint-plugin-react-native#readme", - "keywords": ["eslint", "rules", "eslint-config", "react-native"], + "keywords": [ + "eslint", + "rules", + "eslint-config", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/eslint-plugin-specs/package.json b/packages/eslint-plugin-specs/package.json index 3c5c534e235..cf8a89fce1f 100644 --- a/packages/eslint-plugin-specs/package.json +++ b/packages/eslint-plugin-specs/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/eslint-plugin-specs", - "version": "0.73.0", + "version": "0.74.0", "description": "ESLint rules to validate NativeModule and Component Specs", "license": "MIT", "repository": { @@ -9,7 +9,14 @@ "directory": "packages/eslint-plugin-specs" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/eslint-plugin-specs#readme", - "keywords": ["eslint", "rules", "react-native", "native-modules", "components", "specs"], + "keywords": [ + "eslint", + "rules", + "react-native", + "native-modules", + "components", + "specs" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/metro-config/package.json b/packages/metro-config/package.json index 39e03521aa3..3ef709bd2bd 100644 --- a/packages/metro-config/package.json +++ b/packages/metro-config/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/metro-config", - "version": "0.73.0", + "version": "0.74.0", "description": "Metro configuration for React Native.", "license": "MIT", "repository": { @@ -9,15 +9,19 @@ "directory": "packages/metro-config" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/metro-config#readme", - "keywords": ["metro", "config", "react-native"], + "keywords": [ + "metro", + "config", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" }, "exports": "./index.js", "dependencies": { - "@react-native/metro-babel-transformer": "^0.73.11", - "@react-native/js-polyfills": "^0.73.0", + "@react-native/metro-babel-transformer": "^0.74.0", + "@react-native/js-polyfills": "^0.74.0", "metro-config": "0.79.1", "metro-runtime": "0.79.1" } diff --git a/packages/normalize-color/package.json b/packages/normalize-color/package.json index ab3fa6fd89f..74999ef0f0c 100644 --- a/packages/normalize-color/package.json +++ b/packages/normalize-color/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/normalize-colors", - "version": "0.73.0", + "version": "0.74.0", "description": "Color normalization for React Native.", "license": "MIT", "repository": { @@ -9,7 +9,12 @@ "directory": "packages/normalize-color" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/normalize-color#readme", - "keywords": ["color", "normalization", "normalize-colors", "react-native"], + "keywords": [ + "color", + "normalization", + "normalize-colors", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/polyfills/package.json b/packages/polyfills/package.json index 8cefc9909f6..cadebf8191e 100644 --- a/packages/polyfills/package.json +++ b/packages/polyfills/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/js-polyfills", - "version": "0.73.0", + "version": "0.74.0", "description": "Polyfills for React Native.", "license": "MIT", "repository": { @@ -9,7 +9,13 @@ "directory": "packages/polyfills" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/polyfills#readme", - "keywords": ["polyfill", "polyfills", "js", "js-polyfills", "react-native"], + "keywords": [ + "polyfill", + "polyfills", + "js", + "js-polyfills", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/react-native-babel-preset/package.json b/packages/react-native-babel-preset/package.json index 2e6dbc5985c..0ae9621e37e 100644 --- a/packages/react-native-babel-preset/package.json +++ b/packages/react-native-babel-preset/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/babel-preset", - "version": "0.73.16", + "version": "0.74.0", "description": "Babel preset for React Native applications", "main": "src/index.js", "repository": { diff --git a/packages/react-native-babel-transformer/package.json b/packages/react-native-babel-transformer/package.json index 884eca256b1..132e3e7b838 100644 --- a/packages/react-native-babel-transformer/package.json +++ b/packages/react-native-babel-transformer/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/metro-babel-transformer", - "version": "0.73.11", + "version": "0.74.0", "description": "Babel transformer for React Native applications.", "main": "src/index.js", "repository": { diff --git a/packages/react-native-codegen/package.json b/packages/react-native-codegen/package.json index 45f23b160b7..7993c60395a 100644 --- a/packages/react-native-codegen/package.json +++ b/packages/react-native-codegen/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/codegen", - "version": "0.73.0", + "version": "0.74.0", "description": "Code generation tools for React Native", "license": "MIT", "repository": { diff --git a/packages/react-native-gradle-plugin/package.json b/packages/react-native-gradle-plugin/package.json index a1b8f3a2ce7..c5a6ed51f58 100644 --- a/packages/react-native-gradle-plugin/package.json +++ b/packages/react-native-gradle-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/gradle-plugin", - "version": "0.73.0", + "version": "0.74.0", "description": "Gradle Plugin for React Native", "license": "MIT", "repository": { @@ -9,7 +9,11 @@ "directory": "packages/react-native-gradle-plugin" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-gradle-plugin#readme", - "keywords": ["gradle", "plugin", "react-native"], + "keywords": [ + "gradle", + "plugin", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18" diff --git a/packages/react-native/package.json b/packages/react-native/package.json index 591bcf5b266..8ff324c917a 100644 --- a/packages/react-native/package.json +++ b/packages/react-native/package.json @@ -96,13 +96,13 @@ "@react-native-community/cli": "12.0.0-alpha.15", "@react-native-community/cli-platform-android": "12.0.0-alpha.15", "@react-native-community/cli-platform-ios": "12.0.0-alpha.15", - "@react-native/assets-registry": "^0.73.0", - "@react-native/community-cli-plugin": "^0.73.0", - "@react-native/codegen": "^0.73.0", - "@react-native/gradle-plugin": "^0.73.0", - "@react-native/js-polyfills": "^0.73.0", - "@react-native/normalize-colors": "^0.73.0", - "@react-native/virtualized-lists": "^0.73.0", + "@react-native/assets-registry": "^0.74.0", + "@react-native/community-cli-plugin": "^0.74.0", + "@react-native/codegen": "^0.74.0", + "@react-native/gradle-plugin": "^0.74.0", + "@react-native/js-polyfills": "^0.74.0", + "@react-native/normalize-colors": "^0.74.0", + "@react-native/virtualized-lists": "^0.74.0", "abort-controller": "^3.0.0", "anser": "^1.4.9", "ansi-regex": "^5.0.0", diff --git a/packages/react-native/template/package.json b/packages/react-native/template/package.json index a9d0a0d7861..88c4f9b645e 100644 --- a/packages/react-native/template/package.json +++ b/packages/react-native/template/package.json @@ -17,10 +17,10 @@ "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/runtime": "^7.20.0", - "@react-native/babel-preset": "^0.73.16", - "@react-native/eslint-config": "^0.73.0", - "@react-native/metro-config": "^0.73.0", - "@react-native/typescript-config": "^0.73.0", + "@react-native/babel-preset": "^0.74.0", + "@react-native/eslint-config": "^0.74.0", + "@react-native/metro-config": "^0.74.0", + "@react-native/typescript-config": "^0.74.0", "@types/react": "^18.2.6", "@types/react-test-renderer": "^18.0.0", "babel-jest": "^29.6.3", diff --git a/packages/typescript-config/package.json b/packages/typescript-config/package.json index 896de154d84..0ca29efbb83 100644 --- a/packages/typescript-config/package.json +++ b/packages/typescript-config/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/typescript-config", - "version": "0.73.0", + "version": "0.74.0", "description": "Default TypeScript configuration for React Native apps", "license": "MIT", "repository": { @@ -9,7 +9,11 @@ "directory": "packages/typescript-config" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config#readme", - "keywords": ["typescript", "tsconfig", "react-native"], + "keywords": [ + "typescript", + "tsconfig", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "main": "tsconfig.json" } diff --git a/packages/virtualized-lists/package.json b/packages/virtualized-lists/package.json index b2623813a69..cbeb48a1405 100644 --- a/packages/virtualized-lists/package.json +++ b/packages/virtualized-lists/package.json @@ -1,6 +1,6 @@ { "name": "@react-native/virtualized-lists", - "version": "0.73.0", + "version": "0.74.0", "description": "Virtualized lists for React Native.", "license": "MIT", "repository": { @@ -9,7 +9,12 @@ "directory": "packages/virtualized-lists" }, "homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/virtualized-lists#readme", - "keywords": ["lists", "virtualized-lists", "section-lists", "react-native"], + "keywords": [ + "lists", + "virtualized-lists", + "section-lists", + "react-native" + ], "bugs": "https://github.com/facebook/react-native/issues", "engines": { "node": ">=18"