Skip to content
Open
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
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"react": "19.0.0",
"react-native": "0.78.0",
"react-native": "0.85.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 Incomplete version upgrade: @react-native/ devDependencies still pinned to 0.78.0 after react-native bump to 0.85.0*

The react-native dependency was bumped from 0.78.0 to 0.85.0, but the corresponding @react-native/* devDependencies (@react-native/babel-preset, @react-native/metro-config, @react-native/typescript-config) at example/package.json:24-26 are still pinned to 0.78.0. In the React Native ecosystem, these packages are versioned in lockstep with react-native itself (note they were all at 0.78.0 before this change, matching the previous react-native version). Running the example app with this mismatch will likely cause build or runtime failures due to incompatible tooling versions. The @react-native-community/cli* packages at 15.0.1 (example/package.json:21-23) were also released for react-native 0.78 and may need updating as well.

Prompt for agents
The react-native dependency in example/package.json was bumped from 0.78.0 to 0.85.0, but the @react-native/* devDependencies were not updated to match. Specifically, @react-native/babel-preset (line 24), @react-native/metro-config (line 25), and @react-native/typescript-config (line 26) are still at 0.78.0. These packages are versioned in lockstep with react-native. Additionally, the @react-native-community/cli packages (lines 21-23) at 15.0.1 were built for RN 0.78 and may also need updating. All these devDependencies should be updated to versions compatible with react-native 0.85.0.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

"react-native-ble-plx": "^3.5.0"
},
"devDependencies": {
Expand Down
Loading