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
8 changes: 4 additions & 4 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.7.2",
"@react-navigation/stack": "^5.8.0",
"appium": "^1.18.3",
"appium": "^2.0.0",
Copy link
Preview

Copilot AI Aug 8, 2025

Choose a reason for hiding this comment

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

The upgrade from appium 1.18.3 to 2.0.0 is a major version change that introduces breaking changes. This requires updating test scripts and potentially changing the API usage patterns. Ensure all appium-related code is compatible with v2.0.0 before merging.

Suggested change
"appium": "^2.0.0",
"appium": "1.18.3",

Copilot uses AI. Check for mistakes.

"react": "16.13.1",
"react-native": "0.63.2",
"react-native": "0.69.12",
Copy link
Preview

Copilot AI Aug 8, 2025

Choose a reason for hiding this comment

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

The upgrade from React Native 0.63.2 to 0.69.12 spans multiple major versions and includes significant breaking changes. This upgrade requires updating native code, build configurations, and potentially refactoring components to use newer APIs.

Copilot uses AI. Check for mistakes.

"react-native-gesture-handler": "^1.7.0",
"react-native-reanimated": "^1.10.1",
"react-native-safe-area-context": "^3.1.1",
"react-native-screens": "^2.9.0",
"react-native-sensitive-info": "file:.yalc/react-native-sensitive-info",
"react-native-windows": "^0.63.0-0",
"react-native-windows": "^0.65.0",
Copy link
Preview

Copilot AI Aug 8, 2025

Choose a reason for hiding this comment

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

The react-native-windows upgrade from 0.63.0-0 to 0.65.0 may not be compatible with the React Native 0.69.12 upgrade. Verify that react-native-windows 0.65.0 supports React Native 0.69.x, as version mismatches can cause build failures.

Suggested change
"react-native-windows": "^0.65.0",
"react-native-windows": "^0.69.0",

Copilot uses AI. Check for mistakes.

"selenium-appium": "^0.0.15",
"selenium-webdriver": "^4.0.0-alpha.7"
"selenium-webdriver": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
Expand Down
Loading