-
Notifications
You must be signed in to change notification settings - Fork 230
[Snyk] Fix for 1 vulnerabilities #442
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: master
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 | ||||
---|---|---|---|---|---|---|
|
@@ -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", | ||||||
"react": "16.13.1", | ||||||
"react-native": "0.63.2", | ||||||
"react-native": "0.69.12", | ||||||
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. 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. Positive FeedbackNegative Feedback |
||||||
"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", | ||||||
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. 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
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
"selenium-appium": "^0.0.15", | ||||||
"selenium-webdriver": "^4.0.0-alpha.7" | ||||||
"selenium-webdriver": "^4.0.0" | ||||||
}, | ||||||
"devDependencies": { | ||||||
"@babel/core": "^7.10.5", | ||||||
|
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.
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.
Copilot uses AI. Check for mistakes.