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/docs/RELEASING.md
CHANGED
|
@@ -21,10 +21,24 @@ The workflow does not use a long-lived npm write token.
|
|
|
21
21
|
|
|
22
22
|
## Prepare a release
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
Release evidence has three tiers:
|
|
25
|
+
|
|
26
|
+
- **Every release:** the complete fixture, unit, integration, runtime, package,
|
|
27
|
+
documentation, privacy, and release-artifact verification gate must pass.
|
|
28
|
+
- **Device-behavior changes:** rerun every affected workflow on a real target
|
|
29
|
+
and record the exact host, target, Android version, and transport. A
|
|
30
|
+
documentation, metadata, or machine-output-only patch does not manufacture
|
|
31
|
+
new hardware evidence.
|
|
32
|
+
- **Support expansion:** before promoting a new host, architecture, transport,
|
|
33
|
+
framework, or device class to a tested tier, complete and record its
|
|
34
|
+
dedicated acceptance matrix.
|
|
35
|
+
|
|
36
|
+
Then prepare the release:
|
|
37
|
+
|
|
38
|
+
1. Confirm the relevant acceptance tier above is complete and that
|
|
39
|
+
`COMPATIBILITY.md` still states the observed boundary accurately.
|
|
26
40
|
2. Set the exact release version in `package.json`.
|
|
27
|
-
3.
|
|
41
|
+
3. Confirm the published package keeps `private: false`.
|
|
28
42
|
4. Move the relevant entries from `Unreleased` into a dated
|
|
29
43
|
`## [VERSION] - YYYY-MM-DD` section in `CHANGELOG.md` and update its links.
|
|
30
44
|
5. Replace all prerelease installation examples and private-preview language in
|
|
@@ -110,6 +124,15 @@ bunx adb-ready@VERSION --version
|
|
|
110
124
|
deno run -A npm:adb-ready@VERSION --version
|
|
111
125
|
```
|
|
112
126
|
|
|
127
|
+
Deno 2 applies a 24-hour minimum dependency age by default. For an immediate
|
|
128
|
+
post-publish verification only, override that safety delay explicitly:
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
deno run -A --minimum-dependency-age 0 npm:adb-ready@VERSION --version
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Normal consumers should keep Deno's default policy and omit the override.
|
|
135
|
+
|
|
113
136
|
Confirm the npm page shows the expected README, MIT license, repository,
|
|
114
137
|
provenance, executable names, unpacked size, and file inventory. Then verify
|
|
115
138
|
the `latest` dist-tag points to the released version.
|
package/docs/automation.md
CHANGED
|
@@ -25,8 +25,13 @@ agent or integration to identify the installed CLI first:
|
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
adb-ready --json
|
|
28
|
+
adb-ready --json --non-interactive
|
|
28
29
|
```
|
|
29
30
|
|
|
31
|
+
Root presentation flags may appear in either order. Adding
|
|
32
|
+
`--non-interactive` does not change the result shape or fall back to human
|
|
33
|
+
help.
|
|
34
|
+
|
|
30
35
|
Machine data is written to `stdout`. Human progress and diagnostics are written
|
|
31
36
|
to `stderr`. `--quiet` hides successful human output without hiding failures.
|
|
32
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adb-ready",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Agent-ready Android CLI for reliable ADB sessions, app automation, and verified evidence.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"ui:playground": "bun run scripts/ui-playground.ts",
|
|
34
34
|
"ui:check": "bun run scripts/ui-playground.ts --all --non-interactive",
|
|
35
35
|
"test": "bun test",
|
|
36
|
+
"test:coverage": "bun test --coverage && bun run scripts/coverage-check.mjs",
|
|
36
37
|
"test:commands": "bun run build && bun run scripts/command-matrix.mjs",
|
|
37
38
|
"test:package-managers": "bun run build && bun run scripts/package-manager-smoke.mjs",
|
|
38
39
|
"test:integration": "bun test tests/integration",
|