adb-ready 0.3.1 → 0.3.2
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 +18 -1
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +3 -3
- package/docs/RELEASING.md +17 -3
- package/docs/automation.md +5 -0
- package/package.json +1 -1
- package/schema/agent-tools-v1.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,22 @@ breaking changes.
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.3.2] - 2026-09-11
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Keep the commandless capability overview as clean structured JSON when
|
|
17
|
+
`--non-interactive` is combined with `--json` or `--format json`, regardless
|
|
18
|
+
of flag order, and cover the installed package through both executable
|
|
19
|
+
aliases.
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Keep the public security support table aligned with the current release line
|
|
24
|
+
through an automated release check.
|
|
25
|
+
- Clarify which verification, real-device, and support-expansion evidence is
|
|
26
|
+
required for each kind of release.
|
|
27
|
+
|
|
12
28
|
## [0.3.1] - 2026-09-11
|
|
13
29
|
|
|
14
30
|
### Changed
|
|
@@ -191,7 +207,8 @@ breaking changes.
|
|
|
191
207
|
explainable configuration precedence.
|
|
192
208
|
- Human, plain, JSON, and NDJSON output across Node, Bun, and Deno entrypoints.
|
|
193
209
|
|
|
194
|
-
[Unreleased]: https://github.com/Adam014/adb-ready/compare/v0.3.
|
|
210
|
+
[Unreleased]: https://github.com/Adam014/adb-ready/compare/v0.3.2...HEAD
|
|
211
|
+
[0.3.2]: https://github.com/Adam014/adb-ready/compare/v0.3.1...v0.3.2
|
|
195
212
|
[0.3.1]: https://github.com/Adam014/adb-ready/compare/v0.3.0...v0.3.1
|
|
196
213
|
[0.3.0]: https://github.com/Adam014/adb-ready/compare/v0.2.0...v0.3.0
|
|
197
214
|
[0.2.0]: https://github.com/Adam014/adb-ready/compare/v0.1.2...v0.2.0
|
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.2",
|
|
359
359
|
description: "Agent-ready Android CLI for reliable ADB sessions, app automation, and verified evidence.",
|
|
360
360
|
private: false,
|
|
361
361
|
type: "module",
|
|
@@ -48093,7 +48093,7 @@ function rootInvocation(argv) {
|
|
|
48093
48093
|
index += 1;
|
|
48094
48094
|
continue;
|
|
48095
48095
|
}
|
|
48096
|
-
if (argument !== "--json" && argument !== "--quiet" && argument !== "--verbose" && argument !== "--color" && argument !== "--no-color" && argument !== "--unicode" && argument !== "--no-unicode" && argument !== "--animation" && argument !== "--no-animation") {
|
|
48096
|
+
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
48097
|
return false;
|
|
48098
48098
|
}
|
|
48099
48099
|
}
|
|
@@ -49033,4 +49033,4 @@ try {
|
|
|
49033
49033
|
process14.removeListener("SIGTERM", abort);
|
|
49034
49034
|
}
|
|
49035
49035
|
|
|
49036
|
-
//# debugId=
|
|
49036
|
+
//# debugId=9FF39DC1195928CE64756E2164756E21
|