chore: upgrade react-native to 0.77.3#17039
Conversation
There was a problem hiding this comment.
Pull request overview
This PR upgrades React Native from version 0.77.2 to 0.77.3, which appears to be a minor patch release. The upgrade includes updates to the main react-native package and all related @react-native/* dependencies, along with corresponding metro bundler packages. Additionally, the android/build.gradle file has been improved to dynamically read the React Native version from node_modules instead of hardcoding it.
Changes:
- Upgraded react-native from 0.77.2 to 0.77.3
- Updated all @react-native/* packages (@react-native/babel-preset, @react-native/metro-config, and all transitive dependencies) to 0.77.3
- Updated metro dependencies (metro, metro-config, metro-runtime, metro-source-map) from 0.81.3 to 0.81.5
- Modified android/build.gradle to dynamically read React Native version from package.json instead of hardcoding
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updated react-native to 0.77.3 and related @react-native dev dependencies |
| package-lock.json | Updated all React Native and metro dependencies with new versions and checksums |
| android/build.gradle | Changed rnVersion from hardcoded "0.77.2" to dynamically read from node_modules/react-native/package.json |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "react-i18next": "10.11.4", | ||
| "react-linkify": "1.0.0-alpha", | ||
| "react-native": "0.77.2", | ||
| "react-native": "0.77.3", |
There was a problem hiding this comment.
The iOS Podfile.lock still references React Native 0.77.2 and should be updated. After making these package.json changes, you need to run pod install (or pod update) in the ios directory to regenerate the Podfile.lock with the new React Native 0.77.3 dependencies. This ensures the iOS build uses the correct versions.
|
Hi, thanks for your contribution! |
upgrade react-native to 0.77.3