Skip to content

Update pods lockfile for example app

8c15a2c
Select commit
Loading
Failed to load commit list.
Merged

Release: version 5.1.1 #748

Update pods lockfile for example app
8c15a2c
Select commit
Loading
Failed to load commit list.
Cursor / Cursor Bugbot completed Nov 7, 2025 in 1m 33s

Bugbot Review

Bugbot Analysis Progress (1m 36s elapsed)

✅ Gathered PR context (2s)
✅ Analyzed code changes (1s)
✅ Completed bug detection — 1 potential bug found (1m 27s)
✅ Validation and filtering completed (0s)
✅ Posted analysis results — 1 bug reported (5s)
✅ Analysis completed successfully (0s)

Final Result: Bugbot completed review and found 1 potential issue

Request ID: serverGenReqId_59befd84-26c1-4080-9726-3e2506223193

Details

This PR is being reviewed by Cursor Bugbot

Details

Your team is on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle for each member of your team.

To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.

Bug: Node Version Mismatch Breaks CLI Installation

The engines.node field specifies >=18 but the upgraded @react-native-community/cli@20.0.2 dependency requires Node >=20.19.4. This version mismatch will cause installation failures for users on Node 18.x or Node 20.0-20.19.3. The engines field should be updated to match the CLI's requirement.

example/package.json#L52-L55

},
"engines": {
"node": ">=18"
},

Fix in Cursor Fix in Web