-
-
Notifications
You must be signed in to change notification settings - Fork 358
chore(deps): update React Native to v0.85.3 #5987
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,10 +9,10 @@ | |
| }, | ||
| "dependencies": { | ||
| "react": "19.2.3", | ||
| "react-native": "0.85.1" | ||
| "react-native": "0.85.3" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^7.25.2", | ||
|
Check warning on line 15 in performance-tests/TestAppPlain/package.json
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. engines.node constraint is incompatible with React Native 0.85.x minimum Node requirement The PR description notes that RN v0.84.0 bumped the minimum Node.js version to v22.11, but the Evidence
Identified by Warden code-review · KWP-4T5 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Stale The Evidence
Identified by Warden find-bugs · CFF-CVJ |
||
| "@babel/preset-env": "^7.25.3", | ||
| "@babel/runtime": "^7.25.0", | ||
| "@react-native-community/cli": "20.1.0", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,10 +20,10 @@ | |
| "@sentry/react": "10.53.1", | ||
| "@sentry/react-native": "8.11.1", | ||
| "delay": "^6.0.0", | ||
| "react": "18.2.0", | ||
|
Check failure on line 23 in samples/react-native-macos/package.json
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
React Native 0.85 requires React 19; keeping Evidence
Identified by Warden find-bugs · 5YH-3UC |
||
| "react-native": "0.73.9", | ||
| "react-native": "0.85.3", | ||
|
Check failure on line 24 in samples/react-native-macos/package.json
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Evidence
Identified by Warden code-review · PRM-WDR |
||
| "react-native-gesture-handler": "2.14.0", | ||
| "react-native-macos": "0.73.34", | ||
|
Check failure on line 26 in samples/react-native-macos/package.json
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Evidence
Identified by Warden find-bugs · 6TG-M9F |
||
| "react-native-reanimated": "3.8.1", | ||
| "react-native-safe-area-context": "4.8.0", | ||
| "react-native-screens": "3.29.0", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
React 18 incompatible with React Native 0.85.3
React Native 0.85.3 requires React 19; keeping
reactat18.3.1here will likely cause runtime errors in the e2e test environment.Evidence
samples/react-native/package.jsonusesreact-native: 0.85.3paired withreact: 19.2.3.packages/core/package.jsonlistsreact: 19.1.0alongside the same RN version bump.performance-tests/TestAppPlain/package.jsonalso usesreact: 19.2.3with RN 0.85.x.react: 18.3.1, creating a mismatch that will break the e2e test suite at runtime.Identified by Warden code-review · M3V-F4Y