Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rnx-align-deps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rnx-kit/align-deps": patch
---

Add profile for 0.82
100 changes: 50 additions & 50 deletions packages/align-deps/README.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions packages/align-deps/src/presets/microsoft/react-native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import { profile as profile_0_78 } from "./react-native/profile-0.78";
import { profile as profile_0_79 } from "./react-native/profile-0.79";
import { profile as profile_0_80 } from "./react-native/profile-0.80";
import { profile as profile_0_81 } from "./react-native/profile-0.81";
import { profile as profile_0_82 } from "./react-native/profile-0.82";

// Also export this by name for scripts to work around a bug where this module
// is wrapped twice, i.e. `{ default: { default: preset } }`, when imported as
Expand All @@ -46,4 +47,5 @@ export const preset: Readonly<Preset> = {
"0.79": profile_0_79,
"0.80": profile_0_80,
"0.81": profile_0_81,
"0.82": profile_0_82,
};
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const profile: Profile = {
},
svg: {
name: "react-native-svg",
version: "^15.0.0",
version: ">=15.0.0 <15.13.0",
},
"test-app": {
name: "react-native-test-app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const profile: Profile = {
},
svg: {
name: "react-native-svg",
version: "^15.4.0",
version: ">=15.4.0 <15.13.0",
},
"test-app": {
name: "react-native-test-app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ export const profile: Profile = {
},
svg: {
name: "react-native-svg",
version: "^15.6.0",
version: ">=15.6.0 <15.13.0",
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const profile: Profile = {
},
svg: {
name: "react-native-svg",
version: "^15.8.0",
version: ">=15.8.0 <15.13.0",
},
"test-app": {
name: "react-native-test-app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export const profile: Profile = {
},
svg: {
name: "react-native-svg",
version: "^15.11.1",
version: ">=15.11.1 <15.13.0",
},
"test-app": {
name: "react-native-test-app",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export const profile: Profile = {
},
"test-app": {
name: "react-native-test-app",
version: "^4.1.4",
version: "^4.3.1",
devOnly: true,
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const profile: Profile = {

"test-app": {
name: "react-native-test-app",
version: "^4.3.1",
version: "^4.4.11",
devOnly: true,
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const profile: Profile = {
},
"test-app": {
name: "react-native-test-app",
version: "^4.3.15",
version: "^4.4.11",
devOnly: true,
},
};
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@ export const profile: Profile = {

"test-app": {
name: "react-native-test-app",
version: "^4.4.6",
version: "^4.4.11",
devOnly: true,
},

animation: {
name: "react-native-reanimated",
version: "^3.19.0",
},
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
import type { Package, Profile } from "../../../types";
import { profile as profile_0_81 } from "./profile-0.81";

const reactNative: Package = {
name: "react-native",
version: "^0.82.0",
capabilities: ["react", "core/metro-config", "community/cli"],
};

export const profile: Profile = {
...profile_0_81,

/*********
* React *
*********/

react: {
name: "react",
version: "19.1.1",
},

"react-dom": {
name: "react-dom",
version: "^19.1.1",
capabilities: ["react"],
},

"react-test-renderer": {
name: "react-test-renderer",
version: "19.1.1",
capabilities: ["react"],
devOnly: true,
},

/********
* Core *
********/

core: reactNative,

"core-android": reactNative,
"core-ios": reactNative,

"core-macos": {
name: "react-native-macos",
version: "^0.82.0",
capabilities: ["react"],
},

"core-visionos": {
name: "@callstack/react-native-visionos",
version: "^0.82.0",
capabilities: ["react"],
},

"core-windows": {
name: "react-native-windows",
version: "^0.82.0",
capabilities: ["core"],
},

"core/metro-config": {
name: "@react-native/metro-config",
version: "^0.82.0",
devOnly: true,
},

/*********
* Tools *
*********/

"babel-preset-react-native": {
name: "@react-native/babel-preset",
version: "^0.82.0",
devOnly: true,
},

"community/cli": {
name: "@react-native-community/cli",
version: "^20.0.0",
capabilities: ["community/cli-android", "community/cli-ios"],
devOnly: true,
},

"community/cli-android": {
name: "@react-native-community/cli-platform-android",
version: "^20.0.0",
devOnly: true,
},

"community/cli-ios": {
name: "@react-native-community/cli-platform-ios",
version: "^20.0.0",
devOnly: true,
},

metro: {
name: "metro",
version: "^0.83.1",
devOnly: true,
},

"metro-config": {
name: "metro-config",
version: "^0.83.1",
devOnly: true,
},

"metro-core": {
name: "metro-core",
version: "^0.83.1",
devOnly: true,
},

"metro-react-native-babel-transformer": {
name: "@react-native/metro-babel-transformer",
version: "^0.82.0",
devOnly: true,
},

"metro-resolver": {
name: "metro-resolver",
version: "^0.83.1",
devOnly: true,
},

"metro-runtime": {
name: "metro-runtime",
version: "^0.83.1",
devOnly: true,
},

/*********************
* Community Modules *
*********************/ animation: {
name: "react-native-reanimated",
version: "^4.1.2",
},

"test-app": {
name: "react-native-test-app",
version: "^4.4.12",
devOnly: true,
},
};
4 changes: 2 additions & 2 deletions packages/react-native-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"update-readme": "rnx-kit-scripts update-api-readme"
},
"peerDependencies": {
"react": "16.11.0 || 16.13.1 || 17.0.1 || 17.0.2 || 18.0.0 || 18.1.0 || 18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0 || 19.1.0",
"react-native": "^0.62.3 || ^0.63.2 || ^0.64.2 || ^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.69.0 || ^0.70.0 || ^0.71.0 || ^0.72.0 || ^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0"
"react": "16.11.0 || 16.13.1 || 17.0.1 || 17.0.2 || 18.0.0 || 18.1.0 || 18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0 || 19.1.0 || 19.1.1",
"react-native": "^0.62.3 || ^0.63.2 || ^0.64.2 || ^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.69.0 || ^0.70.0 || ^0.71.0 || ^0.72.0 || ^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-app-macos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"@rnx-kit/third-party-notices": "workspace:*",
"@rnx-kit/tsconfig": "workspace:*",
"@types/react": "^19.0.0",
"react-native-test-app": "^4.1.4"
"react-native-test-app": "^4.3.1"
},
"rnx-kit": {
"kitType": "app",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-app-windows/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@rnx-kit/third-party-notices": "workspace:*",
"@rnx-kit/tsconfig": "workspace:*",
"@types/react": "^19.0.0",
"react-native-test-app": "^4.3.1"
"react-native-test-app": "^4.4.11"
},
"rnx-kit": {
"kitType": "app",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"@testing-library/react-native": "^12.4.3",
"@types/react": "^19.0.0",
"jest": "^29.2.1",
"react-native-test-app": "^4.4.6",
"react-native-test-app": "^4.4.11",
"react-test-renderer": "19.1.0"
},
"rnx-kit": {
Expand Down
20 changes: 10 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5130,8 +5130,8 @@ __metadata:
react: "npm:19.1.0"
react-native: "npm:^0.81.0"
peerDependencies:
react: 16.11.0 || 16.13.1 || 17.0.1 || 17.0.2 || 18.0.0 || 18.1.0 || 18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0 || 19.1.0
react-native: ^0.62.3 || ^0.63.2 || ^0.64.2 || ^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.69.0 || ^0.70.0 || ^0.71.0 || ^0.72.0 || ^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0
react: 16.11.0 || 16.13.1 || 17.0.1 || 17.0.2 || 18.0.0 || 18.1.0 || 18.2.0 || ^18.2.0 || 18.3.1 || 19.0.0 || 19.1.0 || 19.1.1
react-native: ^0.62.3 || ^0.63.2 || ^0.64.2 || ^0.65.0 || ^0.66.0 || ^0.67.0 || ^0.68.0 || ^0.69.0 || ^0.70.0 || ^0.71.0 || ^0.72.0 || ^0.73.0 || ^0.74.0 || ^0.75.0 || ^0.76.0 || ^0.77.0 || ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -5274,7 +5274,7 @@ __metadata:
react: "npm:19.0.0"
react-native: "npm:^0.78.0"
react-native-macos: "npm:^0.78.0"
react-native-test-app: "npm:^4.1.4"
react-native-test-app: "npm:^4.3.1"
bin:
rnx: ../cli/scripts/rnx.bin
rnx.reason: Run `rnx-cli` without explicitly building it first
Expand Down Expand Up @@ -5315,7 +5315,7 @@ __metadata:
"@types/react": "npm:^19.0.0"
react: "npm:19.0.0"
react-native: "npm:^0.79.0"
react-native-test-app: "npm:^4.3.1"
react-native-test-app: "npm:^4.4.11"
react-native-windows: "npm:^0.79.0"
bin:
rnx: ../cli/scripts/rnx.bin
Expand Down Expand Up @@ -5362,7 +5362,7 @@ __metadata:
jest: "npm:^29.2.1"
react: "npm:19.1.0"
react-native: "npm:^0.81.0"
react-native-test-app: "npm:^4.4.6"
react-native-test-app: "npm:^4.4.11"
react-test-renderer: "npm:19.1.0"
bin:
rnx: ../cli/scripts/rnx.bin
Expand Down Expand Up @@ -14639,9 +14639,9 @@ __metadata:
languageName: node
linkType: hard

"react-native-test-app@npm:^4.1.4, react-native-test-app@npm:^4.3.1, react-native-test-app@npm:^4.4.6":
version: 4.4.11
resolution: "react-native-test-app@npm:4.4.11"
"react-native-test-app@npm:^4.3.1, react-native-test-app@npm:^4.4.11":
version: 4.4.12
resolution: "react-native-test-app@npm:4.4.12"
dependencies:
"@rnx-kit/react-native-host": "npm:^0.5.11"
"@rnx-kit/tools-react-native": "npm:^2.1.0"
Expand All @@ -14655,7 +14655,7 @@ __metadata:
"@callstack/react-native-visionos": 0.73 - 0.79
"@expo/config-plugins": ">=5.0"
react: 18.1 - 19.1
react-native: 0.70 - 0.81 || >=0.82.0-0 <0.82.0
react-native: 0.70 - 0.82 || >=0.83.0-0 <0.83.0
react-native-macos: ^0.0.0-0 || 0.71 - 0.79
react-native-windows: ^0.0.0-0 || 0.70 - 0.79
peerDependenciesMeta:
Expand All @@ -14672,7 +14672,7 @@ __metadata:
init: scripts/init.mjs
init-test-app: scripts/init.mjs
install-windows-test-app: windows/app.mjs
checksum: 10c0/ec158eddf54899f509ebdd5f4b75fcc1008e3146a498540a5c3d06b0be0454822570ad5de8260091c7556fdf82928ce2f11dbf5287c83eb4b464dd1e8431ad7c
checksum: 10c0/d83f1cec79d4f5629e4370b0a378846d4a995070a025328b28883873a26b5a44fe883f7e64cb482d0dd49364e3d8884a3568f81293e56fd16a0b65efee4c3591
languageName: node
linkType: hard

Expand Down
Loading