appium-uiautomator2-server 10.1.1 → 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 +6 -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.1.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 +5 -3
- package/apks/appium-uiautomator2-server-v10.1.1.apk.idsig +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
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
|
+
|
|
1
7
|
## [10.1.1](https://github.com/appium/appium-uiautomator2-server/compare/v10.1.0...v10.1.1) (2026-05-22)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
Binary file
|
|
Binary file
|
package/apks/{appium-uiautomator2-server-v10.1.1.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,7 +50,8 @@
|
|
|
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",
|
|
Binary file
|