adb-ready 0.3.2 → 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 +13 -1
- package/README.md +1 -0
- package/dist/cli.js +3 -2
- package/dist/cli.js.map +2 -2
- package/docs/RELEASING.md +9 -0
- package/package.json +2 -1
- package/schema/agent-tools-v1.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,17 @@ 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
|
+
|
|
12
23
|
## [0.3.2] - 2026-09-11
|
|
13
24
|
|
|
14
25
|
### Fixed
|
|
@@ -207,7 +218,8 @@ breaking changes.
|
|
|
207
218
|
explainable configuration precedence.
|
|
208
219
|
- Human, plain, JSON, and NDJSON output across Node, Bun, and Deno entrypoints.
|
|
209
220
|
|
|
210
|
-
[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
|
|
211
223
|
[0.3.2]: https://github.com/Adam014/adb-ready/compare/v0.3.1...v0.3.2
|
|
212
224
|
[0.3.1]: https://github.com/Adam014/adb-ready/compare/v0.3.0...v0.3.1
|
|
213
225
|
[0.3.0]: https://github.com/Adam014/adb-ready/compare/v0.2.0...v0.3.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",
|
|
@@ -49033,4 +49034,4 @@ try {
|
|
|
49033
49034
|
process14.removeListener("SIGTERM", abort);
|
|
49034
49035
|
}
|
|
49035
49036
|
|
|
49036
|
-
//# debugId=
|
|
49037
|
+
//# debugId=EF4B0DF694B2B23564756E2164756E21
|