-
Notifications
You must be signed in to change notification settings - Fork 393
@W-20151632: MSDK Android Security Bug: CVE-2025-11953 - React Native Community CLI (RCE) #2800
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
Changes from all commits
8885dc3
b2c60ae
d81bd2d
68c00e6
39aa7b2
e467cee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,34 +9,34 @@ | |
| "@babel/plugin-transform-private-property-in-object": "^7.24.7", | ||
| "create-react-class": "^15.7.0", | ||
| "jsc-android": "^250231.0.0", | ||
| "react": "19.0.0", | ||
| "react-native": "0.79.3", | ||
| "react": "19.1.0", | ||
| "react-native": "0.81.5", | ||
| "react-native-force": "git+https://github.com/forcedotcom/SalesforceMobileSDK-ReactNative.git#dev" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "^7.25.2", | ||
| "@babel/preset-env": "^7.25.3", | ||
| "@babel/runtime": "^7.25.0", | ||
| "@react-native-community/cli": "18.0.0", | ||
| "@react-native-community/cli-platform-android": "18.0.0", | ||
| "@react-native-community/cli-platform-ios": "18.0.0", | ||
| "@react-native/babel-preset": "0.79.3", | ||
| "@react-native/eslint-config": "0.79.3", | ||
| "@react-native/metro-config": "0.79.3", | ||
| "@react-native/typescript-config": "0.79.3", | ||
| "@react-native-community/cli": "20.0.0", | ||
| "@react-native-community/cli-platform-android": "20.0.0", | ||
| "@react-native-community/cli-platform-ios": "20.0.0", | ||
| "@react-native/babel-preset": "0.81.5", | ||
| "@react-native/eslint-config": "0.81.5", | ||
| "@react-native/metro-config": "0.81.5", | ||
| "@react-native/typescript-config": "0.81.5", | ||
| "@types/jest": "^29.5.13", | ||
| "@types/react": "^19.0.0", | ||
| "@types/react-test-renderer": "^19.0.0", | ||
| "@types/react": "^19.1.0", | ||
| "@types/react-test-renderer": "^19.1.0", | ||
| "babel-jest": "^30.0.0", | ||
| "chai": "4.4.1", | ||
| "eslint": "^8.19.0", | ||
| "jest": "^29.6.3", | ||
| "metro-react-native-babel-preset": "0.77.0", | ||
| "prettier": "2.8.8", | ||
| "react-test-renderer": "19.0.0", | ||
| "typescript": "5.0.4" | ||
| "react-test-renderer": "19.1.0", | ||
| "typescript": "^5.8.3" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| "node": ">=20" | ||
|
Contributor
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. We need to update the versions spreadsheet so this new min version gets added to release notes. |
||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -12,7 +12,7 @@ plugins { | |||
|
|
||||
| dependencies { | ||||
| val composeVersion = "1.8.2" // Update requires Kotlin 2. | ||||
| val livecycleVersion = "2.8.7" // Update requires Kotlin 2. | ||||
| val lifecycleVersion = "2.8.7" // Update requires Kotlin 2. | ||||
|
Contributor
Author
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. I believe this little typo was mine years ago, so I added it here as an unrelated fix. |
||||
| val androidXActivityVersion = "1.10.1" | ||||
|
|
||||
| api(project(":libs:SalesforceAnalytics")) | ||||
|
|
@@ -29,10 +29,10 @@ dependencies { | |||
| implementation("androidx.core:core-ktx:1.16.0") // Update requires API 36 compileSdk | ||||
|
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.
|
||||
| implementation("androidx.activity:activity-ktx:$androidXActivityVersion") | ||||
|
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.
|
||||
| implementation("androidx.activity:activity-compose:$androidXActivityVersion") | ||||
|
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.
|
||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$livecycleVersion") | ||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-compose:$livecycleVersion") | ||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:$livecycleVersion") | ||||
| implementation("androidx.lifecycle:lifecycle-service:$livecycleVersion") | ||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion") | ||||
|
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.
|
||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycleVersion") | ||||
|
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.
|
||||
| implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycleVersion") | ||||
|
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.
|
||||
| implementation("androidx.lifecycle:lifecycle-service:$lifecycleVersion") | ||||
|
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.
|
||||
| implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3") // Update requires Kotlin 2. | ||||
|
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.
|
||||
| implementation("androidx.window:window:1.4.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.
|
||||
| implementation("androidx.window:window-core:1.4.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.
|
||||
|
|
||||
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.
Since this was reviewed on Friday, Gradle and AGP have been updated.
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.
For future reference, this is the Gradle version not the AGP version. There is no version
8.12.0so this is causing build failures.