appium-uiautomator2-server 10.1.0 → 10.2.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 +16 -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-v10.1.0.apk → appium-uiautomator2-server-v10.2.0.apk} +0 -0
- package/apks/appium-uiautomator2-server-v10.2.0.apk.idsig +0 -0
- package/package.json +7 -5
- package/apks/appium-uiautomator2-server-v10.1.0.apk.idsig +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [10.2.0](https://github.com/appium/appium-uiautomator2-server/compare/v10.1.1...v10.2.0) (2026-05-23)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* Vendor org.eclipse.wst.xml.xpath2.processor lib ([#767](https://github.com/appium/appium-uiautomator2-server/issues/767)) ([4b10e12](https://github.com/appium/appium-uiautomator2-server/commit/4b10e1267ebe4de5bdcdc70ee23860dc3f900e07))
|
|
6
|
+
|
|
7
|
+
## [10.1.1](https://github.com/appium/appium-uiautomator2-server/compare/v10.1.0...v10.1.1) (2026-05-22)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* release ([#768](https://github.com/appium/appium-uiautomator2-server/issues/768)) ([af31192](https://github.com/appium/appium-uiautomator2-server/commit/af31192f704cfb2820025c4f6a7160be163e6bd0))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **deps-dev:** bump appium-adb from 14.6.1 to 15.0.0 ([#766](https://github.com/appium/appium-uiautomator2-server/issues/766)) ([74af2b6](https://github.com/appium/appium-uiautomator2-server/commit/74af2b6eba6e63fe6829b005b599145a8a82900a))
|
|
16
|
+
|
|
1
17
|
## [10.1.0](https://github.com/appium/appium-uiautomator2-server/compare/v10.0.1...v10.1.0) (2026-05-13)
|
|
2
18
|
|
|
3
19
|
### Features
|
|
Binary file
|
|
Binary file
|
package/apks/{appium-uiautomator2-server-v10.1.0.apk → appium-uiautomator2-server-v10.2.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": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "A netty server with uiautomator2 handlers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.mjs",
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"homepage": "https://github.com/appium/appium-uiautomator2-server",
|
|
40
40
|
"scripts": {
|
|
41
41
|
"bump-gradle-version": "node ./scripts/gradle-version-update.mjs --package-version=${npm_package_version} && git add gradle.properties",
|
|
42
|
-
"build": "./gradlew
|
|
42
|
+
"build-vendor-jar": "./gradlew :vendor-xpath2:jar",
|
|
43
|
+
"build": "npm run build-vendor-jar && ./gradlew clean assembleServerDebug assembleServerDebugAndroidTest && npm run move-apks && npm run sign-apk",
|
|
43
44
|
"sign-apk": "node ./scripts/sign-apk.mjs",
|
|
44
45
|
"lint:java": "./gradlew lint",
|
|
45
46
|
"lint": "eslint .",
|
|
@@ -49,14 +50,15 @@
|
|
|
49
50
|
"move-apks": "rm -rf apks && mkdir -p apks && npm run move-server && npm run move-test",
|
|
50
51
|
"version": "npm run bump-gradle-version && npm run build",
|
|
51
52
|
"clean-device": "adb uninstall io.appium.uiautomator2.server && adb uninstall io.appium.uiautomator2.server.test",
|
|
52
|
-
"test": "./gradlew
|
|
53
|
+
"test:vendor-xpath2": "./gradlew :vendor-xpath2:test",
|
|
54
|
+
"test": "npm run build-vendor-jar && ./gradlew testServerDebugUnitTest"
|
|
53
55
|
},
|
|
54
56
|
"devDependencies": {
|
|
55
57
|
"@appium/eslint-config-appium-ts": "^3.0.0",
|
|
56
|
-
"@appium/support": "^7.
|
|
58
|
+
"@appium/support": "^7.2.0",
|
|
57
59
|
"@semantic-release/changelog": "^6.0.1",
|
|
58
60
|
"@semantic-release/git": "^10.0.1",
|
|
59
|
-
"appium-adb": "^
|
|
61
|
+
"appium-adb": "^15.0.0",
|
|
60
62
|
"conventional-changelog-conventionalcommits": "^9.0.0",
|
|
61
63
|
"semantic-release": "^25.0.2",
|
|
62
64
|
"semver": "^7.3.7"
|
|
Binary file
|