Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(react-native): upgrade react-native to 0.67.3 #9215

Merged
merged 1 commit into from Mar 8, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/detox/migrations.json
Expand Up @@ -87,6 +87,15 @@
"alwaysAddToPackageJson": false
}
}
},
"13.8.6": {
"version": "13.8.6-beta.0",
"packages": {
"detox": {
"version": "19.5.1",
"alwaysAddToPackageJson": false
}
}
}
}
}
2 changes: 1 addition & 1 deletion packages/detox/package.json
Expand Up @@ -32,7 +32,7 @@
"chalk": "^4.1.0"
},
"peerDependencies": {
"detox": "^19.4.5"
"detox": "^19.5.1"
},
"builders": "./executors.json",
"ng-update": {
Expand Down
2 changes: 1 addition & 1 deletion packages/detox/src/utils/versions.ts
@@ -1,4 +1,4 @@
export const nxVersion = '*';

export const detoxVersion = '19.4.5';
export const detoxVersion = '19.5.1';
export const testingLibraryJestDom = '5.16.2';
33 changes: 33 additions & 0 deletions packages/react-native/migrations.json
Expand Up @@ -374,6 +374,39 @@
"alwaysAddToPackageJson": false
}
}
},
"13.8.6": {
"version": "13.8.6-beta.0",
"packages": {
"react-native": {
"version": "0.67.3",
"alwaysAddToPackageJson": false
},
"@types/react-native": {
"version": "0.67.2",
"alwaysAddToPackageJson": false
},
"metro": {
"version": "0.69.0",
"alwaysAddToPackageJson": false
},
"metro-resolver": {
"version": "0.69.0",
"alwaysAddToPackageJson": false
},
"metro-react-native-babel-preset": {
"version": "0.69.0",
"alwaysAddToPackageJson": false
},
"react-native-svg": {
"version": "12.3.0",
"alwaysAddToPackageJson": false
},
"@react-native-async-storage/async-storage": {
"version": "1.16.1",
"alwaysAddToPackageJson": false
}
}
}
}
}
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Expand Up @@ -40,7 +40,7 @@
"tsconfig-paths": "^3.9.0"
},
"peerDependencies": {
"react-native": "^0.67.2"
"react-native": "^0.67.3"
},
"builders": "./executors.json",
"ng-update": {
Expand Down
12 changes: 6 additions & 6 deletions packages/react-native/src/utils/versions.ts
@@ -1,18 +1,18 @@
export const nxVersion = '*';

export const reactNativeVersion = '0.67.2';
export const typesReactNativeVersion = '0.66.15';
export const reactNativeVersion = '0.67.3';
export const typesReactNativeVersion = '0.67.2';

export const metroVersion = '0.67.0';
export const metroVersion = '0.69.0';

export const reactNativeCommunityCli = '7.0.1';
export const reactNativeCommunityCliIos = '7.0.1';
export const reactNativeCommunityCliAndroid = '7.0.1';

export const reactNativeConfigVersion = '1.4.5';
export const reactNativeAsyncStorageVersion = '1.15.17';
export const reactNativeAsyncStorageVersion = '1.16.1';

export const metroReactNativeBabelPresetVersion = '0.67.0';
export const metroReactNativeBabelPresetVersion = '0.69.0';

export const testingLibraryReactNativeVersion = '9.0.0';
export const testingLibraryJestNativeVersion = '4.0.4';
Expand All @@ -22,6 +22,6 @@ export const jestReactNativeVersion = '18.0.0';
export const reactTestRendererVersion = '17.0.2';

export const reactNativeSvgTransformerVersion = '1.0.0';
export const reactNativeSvgVersion = '12.1.1';
export const reactNativeSvgVersion = '12.3.0';

export const babelRuntimeVersion = '7.17.2';