appium-uiautomator2-server 10.0.1 → 10.1.1

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 CHANGED
@@ -1,3 +1,19 @@
1
+ ## [10.1.1](https://github.com/appium/appium-uiautomator2-server/compare/v10.1.0...v10.1.1) (2026-05-22)
2
+
3
+ ### Bug Fixes
4
+
5
+ * release ([#768](https://github.com/appium/appium-uiautomator2-server/issues/768)) ([af31192](https://github.com/appium/appium-uiautomator2-server/commit/af31192f704cfb2820025c4f6a7160be163e6bd0))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * **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))
10
+
11
+ ## [10.1.0](https://github.com/appium/appium-uiautomator2-server/compare/v10.0.1...v10.1.0) (2026-05-13)
12
+
13
+ ### Features
14
+
15
+ * Add type exports ([#765](https://github.com/appium/appium-uiautomator2-server/issues/765)) ([9094b2e](https://github.com/appium/appium-uiautomator2-server/commit/9094b2e9ca8cb35727301e2709d485020e6674d3))
16
+
1
17
  ## [10.0.1](https://github.com/appium/appium-uiautomator2-server/compare/v10.0.0...v10.0.1) (2026-05-09)
2
18
 
3
19
  ### Miscellaneous Chores
package/index.d.mts ADDED
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Version of this package (mirrors package.json#version).
3
+ */
4
+ export const version: string;
5
+
6
+ /**
7
+ * Absolute path to the `appium-uiautomator2-server-v<version>.apk` APK.
8
+ */
9
+ export const SERVER_APK_PATH: string;
10
+
11
+ /**
12
+ * Absolute path to the `appium-uiautomator2-server-debug-androidTest.apk` APK.
13
+ */
14
+ export const TEST_APK_PATH: string;
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "appium-uiautomator2-server",
3
- "version": "10.0.1",
3
+ "version": "10.1.1",
4
4
  "description": "A netty server with uiautomator2 handlers",
5
5
  "type": "module",
6
- "main": "index.mjs",
6
+ "main": "./index.mjs",
7
+ "types": "./index.d.mts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.mts",
11
+ "default": "./index.mjs"
12
+ },
13
+ "./package.json": "./package.json"
14
+ },
7
15
  "repository": {
8
16
  "type": "git",
9
17
  "url": "https://github.com/appium/appium-uiautomator2-server"
@@ -24,6 +32,7 @@
24
32
  },
25
33
  "files": [
26
34
  "./index.mjs",
35
+ "./index.d.mts",
27
36
  "./apks",
28
37
  "CHANGELOG.md"
29
38
  ],
@@ -44,10 +53,10 @@
44
53
  },
45
54
  "devDependencies": {
46
55
  "@appium/eslint-config-appium-ts": "^3.0.0",
47
- "@appium/support": "^7.0.0-rc.1",
56
+ "@appium/support": "^7.2.0",
48
57
  "@semantic-release/changelog": "^6.0.1",
49
58
  "@semantic-release/git": "^10.0.1",
50
- "appium-adb": "^14.0.0",
59
+ "appium-adb": "^15.0.0",
51
60
  "conventional-changelog-conventionalcommits": "^9.0.0",
52
61
  "semantic-release": "^25.0.2",
53
62
  "semver": "^7.3.7"