adb-ready 0.3.1 → 0.3.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 +30 -1
- package/README.md +1 -0
- package/dist/cli.js +4 -3
- package/dist/cli.js.map +3 -3
- package/docs/RELEASING.md +26 -3
- package/docs/automation.md +5 -0
- package/package.json +2 -1
- package/schema/agent-tools-v1.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,33 @@ breaking changes.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.3.3] - 2026-09-11
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Fail closed before npm publishing unless the immutable release tag already
|
|
17
|
+
has a matching draft GitHub release.
|
|
18
|
+
- Document Deno's 24-hour minimum dependency age and the explicit override
|
|
19
|
+
reserved for immediate post-publish verification.
|
|
20
|
+
- Enforce 90% LCOV line and function coverage floors in the authoritative
|
|
21
|
+
verification gate and preserve its LCOV report in CI.
|
|
22
|
+
|
|
23
|
+
## [0.3.2] - 2026-09-11
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Keep the commandless capability overview as clean structured JSON when
|
|
28
|
+
`--non-interactive` is combined with `--json` or `--format json`, regardless
|
|
29
|
+
of flag order, and cover the installed package through both executable
|
|
30
|
+
aliases.
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Keep the public security support table aligned with the current release line
|
|
35
|
+
through an automated release check.
|
|
36
|
+
- Clarify which verification, real-device, and support-expansion evidence is
|
|
37
|
+
required for each kind of release.
|
|
38
|
+
|
|
12
39
|
## [0.3.1] - 2026-09-11
|
|
13
40
|
|
|
14
41
|
### Changed
|
|
@@ -191,7 +218,9 @@ breaking changes.
|
|
|
191
218
|
explainable configuration precedence.
|
|
192
219
|
- Human, plain, JSON, and NDJSON output across Node, Bun, and Deno entrypoints.
|
|
193
220
|
|
|
194
|
-
[Unreleased]: https://github.com/Adam014/adb-ready/compare/v0.3.
|
|
221
|
+
[Unreleased]: https://github.com/Adam014/adb-ready/compare/v0.3.3...HEAD
|
|
222
|
+
[0.3.3]: https://github.com/Adam014/adb-ready/compare/v0.3.2...v0.3.3
|
|
223
|
+
[0.3.2]: https://github.com/Adam014/adb-ready/compare/v0.3.1...v0.3.2
|
|
195
224
|
[0.3.1]: https://github.com/Adam014/adb-ready/compare/v0.3.0...v0.3.1
|
|
196
225
|
[0.3.0]: https://github.com/Adam014/adb-ready/compare/v0.2.0...v0.3.0
|
|
197
226
|
[0.2.0]: https://github.com/Adam014/adb-ready/compare/v0.1.2...v0.2.0
|
package/README.md
CHANGED
|
@@ -9,6 +9,7 @@ verified evidence—for developers, agents, and CI.
|
|
|
9
9
|
|
|
10
10
|
[](./docs/agent-integration.md)
|
|
11
11
|
[](https://github.com/Adam014/adb-ready/actions/workflows/ci.yml)
|
|
12
|
+
[](https://github.com/Adam014/adb-ready/actions/workflows/ci.yml)
|
|
12
13
|
[](https://www.npmjs.com/package/adb-ready)
|
|
13
14
|
[](https://nodejs.org/)
|
|
14
15
|
[](https://bun.sh/)
|
package/dist/cli.js
CHANGED
|
@@ -355,7 +355,7 @@ import process13 from "node:process";
|
|
|
355
355
|
// package.json
|
|
356
356
|
var package_default = {
|
|
357
357
|
name: "adb-ready",
|
|
358
|
-
version: "0.3.
|
|
358
|
+
version: "0.3.3",
|
|
359
359
|
description: "Agent-ready Android CLI for reliable ADB sessions, app automation, and verified evidence.",
|
|
360
360
|
private: false,
|
|
361
361
|
type: "module",
|
|
@@ -388,6 +388,7 @@ var package_default = {
|
|
|
388
388
|
"ui:playground": "bun run scripts/ui-playground.ts",
|
|
389
389
|
"ui:check": "bun run scripts/ui-playground.ts --all --non-interactive",
|
|
390
390
|
test: "bun test",
|
|
391
|
+
"test:coverage": "bun test --coverage && bun run scripts/coverage-check.mjs",
|
|
391
392
|
"test:commands": "bun run build && bun run scripts/command-matrix.mjs",
|
|
392
393
|
"test:package-managers": "bun run build && bun run scripts/package-manager-smoke.mjs",
|
|
393
394
|
"test:integration": "bun test tests/integration",
|
|
@@ -48093,7 +48094,7 @@ function rootInvocation(argv) {
|
|
|
48093
48094
|
index += 1;
|
|
48094
48095
|
continue;
|
|
48095
48096
|
}
|
|
48096
|
-
if (argument !== "--json" && argument !== "--quiet" && argument !== "--verbose" && argument !== "--color" && argument !== "--no-color" && argument !== "--unicode" && argument !== "--no-unicode" && argument !== "--animation" && argument !== "--no-animation") {
|
|
48097
|
+
if (argument !== "--json" && argument !== "--quiet" && argument !== "--verbose" && argument !== "--non-interactive" && argument !== "--color" && argument !== "--no-color" && argument !== "--unicode" && argument !== "--no-unicode" && argument !== "--animation" && argument !== "--no-animation") {
|
|
48097
48098
|
return false;
|
|
48098
48099
|
}
|
|
48099
48100
|
}
|
|
@@ -49033,4 +49034,4 @@ try {
|
|
|
49033
49034
|
process14.removeListener("SIGTERM", abort);
|
|
49034
49035
|
}
|
|
49035
49036
|
|
|
49036
|
-
//# debugId=
|
|
49037
|
+
//# debugId=EF4B0DF694B2B23564756E2164756E21
|