appium-uiautomator2-server 10.3.4 → 10.3.5

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,9 @@
1
+ ## [10.3.5](https://github.com/appium/appium-uiautomator2-server/compare/v10.3.4...v10.3.5) (2026-07-28)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Integrate oxc and release configs ([#789](https://github.com/appium/appium-uiautomator2-server/issues/789)) ([de011dd](https://github.com/appium/appium-uiautomator2-server/commit/de011dde24daca9f298c8875d032d9fa2a97a160))
6
+
1
7
  ## [10.3.4](https://github.com/appium/appium-uiautomator2-server/compare/v10.3.3...v10.3.4) (2026-07-24)
2
8
 
3
9
  ### Miscellaneous Chores
package/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
- import path from 'node:path';
2
1
  import {createRequire} from 'node:module';
2
+ import path from 'node:path';
3
3
  import {fileURLToPath} from 'node:url';
4
4
 
5
5
  const require = createRequire(import.meta.url);
package/package.json CHANGED
@@ -1,50 +1,48 @@
1
1
  {
2
2
  "name": "appium-uiautomator2-server",
3
- "version": "10.3.4",
3
+ "version": "10.3.5",
4
4
  "description": "A netty server with uiautomator2 handlers",
5
- "type": "module",
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
- },
15
- "repository": {
16
- "type": "git",
17
- "url": "https://github.com/appium/appium-uiautomator2-server"
18
- },
19
5
  "keywords": [
20
- "appium",
21
6
  "android",
7
+ "appium",
22
8
  "uiautomator2"
23
9
  ],
24
- "engines": {
25
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
26
- "npm": ">=10"
27
- },
28
- "author": "Appium Contributors",
29
- "license": "Apache-2.0",
10
+ "homepage": "https://github.com/appium/appium-uiautomator2-server",
30
11
  "bugs": {
31
12
  "url": "https://github.com/appium/appium-uiautomator2-server/issues"
32
13
  },
14
+ "license": "Apache-2.0",
15
+ "author": "Appium Contributors",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/appium/appium-uiautomator2-server"
19
+ },
33
20
  "files": [
34
21
  "./index.mjs",
35
22
  "./index.d.mts",
36
23
  "./apks",
37
24
  "CHANGELOG.md"
38
25
  ],
39
- "homepage": "https://github.com/appium/appium-uiautomator2-server",
26
+ "type": "module",
27
+ "main": "./index.mjs",
28
+ "types": "./index.d.mts",
29
+ "exports": {
30
+ ".": {
31
+ "types": "./index.d.mts",
32
+ "default": "./index.mjs"
33
+ },
34
+ "./package.json": "./package.json"
35
+ },
40
36
  "scripts": {
41
37
  "bump-gradle-version": "node ./scripts/gradle-version-update.mjs --package-version=${npm_package_version} && git add gradle.properties",
42
38
  "build-vendor-jar": "./gradlew :vendor-xpath2:jar",
43
39
  "build": "npm run build-vendor-jar && ./gradlew clean assembleServerDebug assembleServerDebugAndroidTest && npm run move-apks && npm run sign-apk",
44
40
  "sign-apk": "node ./scripts/sign-apk.mjs",
45
41
  "lint:java": "./gradlew lint",
46
- "lint": "eslint .",
47
- "lint:fix": "npm run lint -- --fix",
42
+ "lint": "oxlint -c oxlint.config.mjs .",
43
+ "lint:fix": "oxlint -c oxlint.config.mjs --fix .",
44
+ "format": "oxfmt -c oxfmt.config.mjs .",
45
+ "format:check": "oxfmt -c oxfmt.config.mjs --check .",
48
46
  "move-server": "cp app/build/outputs/apk/server/debug/appium-uiautomator2-server-v${npm_package_version}.apk ./apks",
49
47
  "move-test": "cp app/build/outputs/apk/androidTest/server/debug/appium-uiautomator2-server-debug-androidTest.apk ./apks",
50
48
  "move-apks": "rm -rf apks && mkdir -p apks && npm run move-server && npm run move-test",
@@ -54,13 +52,14 @@
54
52
  "test": "npm run build-vendor-jar && ./gradlew testServerDebugUnitTest"
55
53
  },
56
54
  "devDependencies": {
57
- "@appium/eslint-config-appium-ts": "^3.0.0",
55
+ "@appium/oxc-config": "^1.1.0",
56
+ "@appium/semantic-release-config": "^1.1.0",
58
57
  "@appium/support": "^7.2.0",
59
- "@semantic-release/changelog": "^6.0.1",
60
- "@semantic-release/git": "^10.0.1",
61
58
  "appium-adb": "^16.0.0",
62
- "conventional-changelog-conventionalcommits": "^9.3.1",
63
- "semantic-release": "^25.0.2",
64
59
  "semver": "^7.3.7"
60
+ },
61
+ "engines": {
62
+ "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
63
+ "npm": ">=10"
65
64
  }
66
65
  }