appium-adb 16.0.1 → 16.0.3
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 +19 -0
- package/package.json +2 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## [16.0.3](https://github.com/appium/appium-adb/compare/v16.0.2...v16.0.3) (2026-07-30)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Drop esmock ([#898](https://github.com/appium/appium-adb/issues/898)) ([cad9af2](https://github.com/appium/appium-adb/commit/cad9af28cd2f8a118447ba3bc234a0119140534b))
|
|
6
|
+
|
|
7
|
+
## [16.0.2](https://github.com/appium/appium-adb/compare/v16.0.1...v16.0.2) (2026-07-28)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Drop chai ([#897](https://github.com/appium/appium-adb/issues/897)) ([942b22f](https://github.com/appium/appium-adb/commit/942b22f5fac05ff552ce9f661bddea3ed932b1f3))
|
|
12
|
+
* **release:** 16.0.2 [skip ci] ([de024dc](https://github.com/appium/appium-adb/commit/de024dcd31ab75969555e4bad5957373cdb4caf5))
|
|
13
|
+
|
|
14
|
+
## [16.0.2](https://github.com/appium/appium-adb/compare/v16.0.1...v16.0.2) (2026-07-27)
|
|
15
|
+
|
|
16
|
+
### Miscellaneous Chores
|
|
17
|
+
|
|
18
|
+
* Drop chai ([#897](https://github.com/appium/appium-adb/issues/897)) ([942b22f](https://github.com/appium/appium-adb/commit/942b22f5fac05ff552ce9f661bddea3ed932b1f3))
|
|
19
|
+
|
|
1
20
|
## [16.0.1](https://github.com/appium/appium-adb/compare/v16.0.0...v16.0.1) (2026-07-27)
|
|
2
21
|
|
|
3
22
|
### Miscellaneous Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-adb",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.3",
|
|
4
4
|
"description": "Android Debug Bridge interface",
|
|
5
5
|
"homepage": "https://github.com/appium/appium-adb",
|
|
6
6
|
"bugs": {
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"rebuild": "npm run clean && npm run build",
|
|
43
43
|
"format": "oxfmt -c oxfmt.config.mjs .",
|
|
44
44
|
"format:check": "oxfmt -c oxfmt.config.mjs --check .",
|
|
45
|
-
"test": "node --enable-source-maps --test --test-force-exit --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
|
|
45
|
+
"test": "node --enable-source-maps --experimental-test-module-mocks --test --test-force-exit --test-timeout=60000 \"./build/test/unit/**/*.spec.js\"",
|
|
46
46
|
"e2e-test": "node --enable-source-maps --test --test-force-exit --test-concurrency=1 --test-timeout=300000 \"./build/test/functional/**/*.spec.js\""
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
@@ -60,15 +60,10 @@
|
|
|
60
60
|
"@appium/tsconfig": "^1.2.0",
|
|
61
61
|
"@appium/types": "^1.0.0-rc.1",
|
|
62
62
|
"@types/async-lock": "^1.4.0",
|
|
63
|
-
"@types/chai": "^5.2.3",
|
|
64
|
-
"@types/chai-as-promised": "^8.0.2",
|
|
65
63
|
"@types/ini": "^4.1.0",
|
|
66
64
|
"@types/node": "^26.0.0",
|
|
67
65
|
"@types/semver": "^7.5.0",
|
|
68
66
|
"@types/sinon": "^22.0.0",
|
|
69
|
-
"chai": "^6.0.0",
|
|
70
|
-
"chai-as-promised": "^8.0.0",
|
|
71
|
-
"esmock": "^2.7.6",
|
|
72
67
|
"sinon": "^22.0.0"
|
|
73
68
|
},
|
|
74
69
|
"engines": {
|