adb-ready 0.3.2 → 0.3.4
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 +38 -1
- package/README.md +1 -0
- package/dist/cli.js +20 -5
- package/dist/cli.js.map +4 -4
- package/docs/RELEASING.md +14 -3
- package/package.json +2 -1
- package/schema/agent-tools-v1.json +1 -1
package/docs/RELEASING.md
CHANGED
|
@@ -79,12 +79,14 @@ Do not create or move the final tag until this rehearsal is green.
|
|
|
79
79
|
|
|
80
80
|
1. Create a draft GitHub release for the exact `vVERSION` tag on the audited
|
|
81
81
|
release commit.
|
|
82
|
-
2. Dispatch the workflow
|
|
83
|
-
|
|
82
|
+
2. Dispatch the audited workflow from protected `main` while selecting the
|
|
83
|
+
immutable tag as the release target. Publish mode rejects every other branch,
|
|
84
|
+
requires the checkout to resolve to that exact tag commit, and also permits a
|
|
85
|
+
self-contained dispatch from the matching tag:
|
|
84
86
|
|
|
85
87
|
```bash
|
|
86
88
|
gh workflow run release.yml \
|
|
87
|
-
--ref
|
|
89
|
+
--ref main \
|
|
88
90
|
-f mode=publish \
|
|
89
91
|
-f release_tag=vVERSION \
|
|
90
92
|
-f ref=vVERSION
|
|
@@ -124,6 +126,15 @@ bunx adb-ready@VERSION --version
|
|
|
124
126
|
deno run -A npm:adb-ready@VERSION --version
|
|
125
127
|
```
|
|
126
128
|
|
|
129
|
+
Deno 2 applies a 24-hour minimum dependency age by default. For an immediate
|
|
130
|
+
post-publish verification only, override that safety delay explicitly:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
deno run -A --minimum-dependency-age 0 npm:adb-ready@VERSION --version
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Normal consumers should keep Deno's default policy and omit the override.
|
|
137
|
+
|
|
127
138
|
Confirm the npm page shows the expected README, MIT license, repository,
|
|
128
139
|
provenance, executable names, unpacked size, and file inventory. Then verify
|
|
129
140
|
the `latest` dist-tag points to the released version.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adb-ready",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
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",
|