Skip to content

Commit 47b5b1d

Browse files
chore(deps): bump appium-uiautomator2-driver from 5.0.3 to 6.0.0 in /driver (#831)
* chore(deps): bump appium-uiautomator2-driver in /driver Bumps [appium-uiautomator2-driver](https://github.com/appium/appium-uiautomator2-driver) from 5.0.3 to 6.0.0. - [Release notes](https://github.com/appium/appium-uiautomator2-driver/releases) - [Changelog](https://github.com/appium/appium-uiautomator2-driver/blob/master/CHANGELOG.md) - [Commits](appium/appium-uiautomator2-driver@v5.0.3...v6.0.0) --- updated-dependencies: - dependency-name: appium-uiautomator2-driver dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: bump appium-android-driver * workaround --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kazuaki Matsuo <[email protected]>
1 parent a2cf97a commit 47b5b1d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

driver/lib/doctor/checks.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { doctor as androidDoctor } from 'appium-android-driver';
22
import { doctor as iosDoctor } from 'appium-xcuitest-driver';
33

44
// shared
5-
export const homeEnvVarCheck = iosDoctor.required.homeEnvVarCheck;
5+
export const homeEnvVarCheck = /** @type {any} */ (iosDoctor.required.homeEnvVarCheck);
66

77
let androidHomeCheck;
88
let javaHomeCheck;
@@ -26,7 +26,7 @@ let optionalApplesimutilsCommandCheck;
2626
if (!process.env.SKIP_IOS) {
2727
xcodeCheck = iosDoctor.required.xcodeCheck;
2828
xcodeToolsCheck = iosDoctor.required.xcodeToolsCheck;
29-
envVarAndPathCheck = iosDoctor.required.homeEnvVarCheck;
29+
envVarAndPathCheck = /** @type {any} */ (iosDoctor.required.homeEnvVarCheck);
3030
optionalApplesimutilsCommandCheck = iosDoctor.optional.optionalApplesimutilsCheck;
3131
}
3232

driver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@
7373
"typescript": "~5.9"
7474
},
7575
"dependencies": {
76-
"appium-android-driver": "^11.0.0",
76+
"appium-android-driver": "^12.0.0",
7777
"appium-flutter-finder": "^0.2.0",
7878
"appium-ios-device": "^3.0.0",
79-
"appium-uiautomator2-driver": "^5.0.0",
79+
"appium-uiautomator2-driver": "^6.0.0",
8080
"appium-xcuitest-driver": "^10.0.0",
8181
"asyncbox": "^3.0.0",
8282
"bluebird": "^3.1.1",

0 commit comments

Comments
 (0)