Skip to content

Commit

Permalink
feat(react-native): upgrade react-native to 0.67.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi committed Mar 7, 2022
1 parent 7d5988b commit 7e6c6cd
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 9 deletions.
9 changes: 9 additions & 0 deletions packages/detox/migrations.json
Expand Up @@ -87,6 +87,15 @@
"alwaysAddToPackageJson": false
}
}
},
"13.8.5": {
"version": "13.8.5-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.5": {
"version": "13.8.5-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';

0 comments on commit 7e6c6cd

Please sign in to comment.