appium-uiautomator2-server 7.7.0 → 8.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/apks/appium-uiautomator2-server-debug-androidTest.apk +0 -0
- package/apks/appium-uiautomator2-server-debug-androidTest.apk.idsig +0 -0
- package/apks/{appium-uiautomator2-server-v7.7.0.apk → appium-uiautomator2-server-v8.0.0.apk} +0 -0
- package/apks/appium-uiautomator2-server-v8.0.0.apk.idsig +0 -0
- package/package.json +7 -7
- package/apks/appium-uiautomator2-server-v7.7.0.apk.idsig +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [8.0.0](https://github.com/appium/appium-uiautomator2-server/compare/v7.7.1...v8.0.0) (2025-08-16)
|
|
2
|
+
|
|
3
|
+
### ⚠ BREAKING CHANGES
|
|
4
|
+
|
|
5
|
+
* Required Node.js version has been bumped to ^20.19.0 || ^22.12.0 || >=24.0.0
|
|
6
|
+
* Required npm version has been bumped to >=10
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Bump Node.js version ([#716](https://github.com/appium/appium-uiautomator2-server/issues/716)) ([e43fdc6](https://github.com/appium/appium-uiautomator2-server/commit/e43fdc6ae68ae31e01df4e2f80eb1d1550382ecc))
|
|
11
|
+
|
|
12
|
+
## [7.7.1](https://github.com/appium/appium-uiautomator2-server/compare/v7.7.0...v7.7.1) (2025-08-05)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* Use getTargetContext to fetch the display service ([#715](https://github.com/appium/appium-uiautomator2-server/issues/715)) ([11e0980](https://github.com/appium/appium-uiautomator2-server/commit/11e0980af9a510ba185d92da603070f2e14f9f04))
|
|
17
|
+
|
|
1
18
|
## [7.7.0](https://github.com/appium/appium-uiautomator2-server/compare/v7.6.2...v7.7.0) (2025-07-22)
|
|
2
19
|
|
|
3
20
|
### Features
|
|
Binary file
|
|
Binary file
|
package/apks/{appium-uiautomator2-server-v7.7.0.apk → appium-uiautomator2-server-v8.0.0.apk}
RENAMED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "A netty server with uiautomator2 handlers",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"uiautomator2"
|
|
14
14
|
],
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
17
|
-
"npm": ">=
|
|
16
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
17
|
+
"npm": ">=10"
|
|
18
18
|
},
|
|
19
19
|
"author": "Appium Contributors",
|
|
20
20
|
"license": "Apache-2.0",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"test": "./gradlew testServerDebugUnitTest"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@appium/eslint-config-appium-ts": "^
|
|
46
|
-
"@appium/support": "^
|
|
45
|
+
"@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
|
|
46
|
+
"@appium/support": "^7.0.0-rc.1",
|
|
47
47
|
"@semantic-release/changelog": "^6.0.1",
|
|
48
48
|
"@semantic-release/git": "^10.0.1",
|
|
49
|
-
"android-apidemos": "^
|
|
50
|
-
"appium-adb": "^
|
|
49
|
+
"android-apidemos": "^5.0.0",
|
|
50
|
+
"appium-adb": "^13.0.0",
|
|
51
51
|
"bluebird": "^3.7.2",
|
|
52
52
|
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
53
53
|
"semantic-release": "^24.0.0",
|
|
Binary file
|