@easonwumac/computer-linker 0.1.2 → 0.1.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 +19 -4
- package/README.md +11 -9
- package/docs/release-checklist.md +13 -11
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,26 @@
|
|
|
3
3
|
All notable changes to Computer Linker will be documented in this file.
|
|
4
4
|
|
|
5
5
|
This project follows a small pre-1.0 changelog: breaking contract changes are
|
|
6
|
-
called out even when the package version is still `0.x`.
|
|
7
|
-
|
|
6
|
+
called out even when the package version is still `0.x`.
|
|
7
|
+
|
|
8
|
+
## 0.1.3 - 2026-06-27
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Added `release:verify` to confirm a published npm version's exact metadata,
|
|
13
|
+
dist-tag, and published CLI from a clean temporary directory.
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- `release:publish` now runs the post-publish npm registry verification
|
|
18
|
+
automatically after npm accepts the package.
|
|
19
|
+
- `release:publish -- --push` now pushes `HEAD` and the exact release tag
|
|
20
|
+
explicitly, so lightweight release tags are not skipped by `git push
|
|
21
|
+
--follow-tags`.
|
|
22
|
+
|
|
8
23
|
## 0.1.2 - 2026-06-27
|
|
9
|
-
|
|
10
|
-
### Added
|
|
24
|
+
|
|
25
|
+
### Added
|
|
11
26
|
|
|
12
27
|
- Local npm release wrapper commands: `release:check`, `release:dry-run`, and
|
|
13
28
|
`release:publish`.
|
package/README.md
CHANGED
|
@@ -471,19 +471,21 @@ For npm publishing, use the local release wrapper instead of hand-running every
|
|
|
471
471
|
step:
|
|
472
472
|
|
|
473
473
|
```bash
|
|
474
|
-
npm run release:check
|
|
475
|
-
npm run release:dry-run
|
|
476
|
-
npm run release:publish -- --create-tag --otp <code>
|
|
477
|
-
|
|
478
|
-
```
|
|
474
|
+
npm run release:check
|
|
475
|
+
npm run release:dry-run
|
|
476
|
+
npm run release:publish -- --create-tag --push --otp <code>
|
|
477
|
+
```
|
|
479
478
|
|
|
480
479
|
`release:check` runs the local product/public package gates without publishing.
|
|
481
480
|
`release:dry-run` runs `npm publish --dry-run` and creates a temporary local
|
|
482
481
|
`v<package.version>` tag only for that dry-run when the tag is missing.
|
|
483
|
-
`release:publish` requires a clean main/master worktree, a dated changelog
|
|
484
|
-
heading, npm login, and a release tag. Pass `--create-tag` to create the tag
|
|
485
|
-
on `HEAD`; pass `--push` only when you want the script to push `HEAD` and
|
|
486
|
-
after a successful npm publish.
|
|
482
|
+
`release:publish` requires a clean main/master worktree, a dated changelog
|
|
483
|
+
heading, npm login, and a release tag. Pass `--create-tag` to create the tag
|
|
484
|
+
on `HEAD`; pass `--push` only when you want the script to push `HEAD` and the
|
|
485
|
+
release tag after a successful npm publish. After npm accepts the publish, the
|
|
486
|
+
wrapper waits for registry metadata, verifies the npm dist-tag, and runs the
|
|
487
|
+
published CLI from a clean temporary directory. Use `npm run release:verify` to
|
|
488
|
+
repeat that post-publish check for the current `package.json` version.
|
|
487
489
|
|
|
488
490
|
For a public alpha from this private dogfooding checkout, use the fresh public
|
|
489
491
|
snapshot path:
|
|
@@ -33,11 +33,10 @@ npm run public:check
|
|
|
33
33
|
Use the local wrapper when you are ready to publish from the current repository:
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npm run release:check
|
|
37
|
-
npm run release:dry-run
|
|
38
|
-
npm run release:publish -- --create-tag --otp <code>
|
|
39
|
-
|
|
40
|
-
```
|
|
36
|
+
npm run release:check
|
|
37
|
+
npm run release:dry-run
|
|
38
|
+
npm run release:publish -- --create-tag --push --otp <code>
|
|
39
|
+
```
|
|
41
40
|
|
|
42
41
|
`release:check` runs the local product and public package gates without
|
|
43
42
|
publishing. It does not require a clean worktree, so it is useful before the
|
|
@@ -48,12 +47,15 @@ It runs `npm publish --dry-run`; if `v<package.version>` is missing, it creates
|
|
|
48
47
|
a temporary local tag for the dry-run and removes it afterward. If that tag
|
|
49
48
|
already exists on another commit, bump the package version before releasing.
|
|
50
49
|
|
|
51
|
-
`release:publish` performs the real npm publish. It requires a clean
|
|
52
|
-
main/master worktree, a dated `CHANGELOG.md` heading for the package version,
|
|
53
|
-
npm login, and a release tag on `HEAD`. Pass `--create-tag` to create the
|
|
54
|
-
release tag automatically before publishing, `--otp <code>` for npm 2FA, and
|
|
55
|
-
`--push` only when the script should push `HEAD` and
|
|
56
|
-
successful publish.
|
|
50
|
+
`release:publish` performs the real npm publish. It requires a clean
|
|
51
|
+
main/master worktree, a dated `CHANGELOG.md` heading for the package version,
|
|
52
|
+
npm login, and a release tag on `HEAD`. Pass `--create-tag` to create the
|
|
53
|
+
release tag automatically before publishing, `--otp <code>` for npm 2FA, and
|
|
54
|
+
`--push` only when the script should push `HEAD` and the release tag to
|
|
55
|
+
`origin` after a successful publish. After npm accepts the publish, it also waits for exact
|
|
56
|
+
version metadata, verifies the configured npm dist-tag, and runs the published
|
|
57
|
+
CLI from a clean temporary directory. `release:verify` repeats only that
|
|
58
|
+
post-publish registry check for the current `package.json` version.
|
|
57
59
|
|
|
58
60
|
For the one-command local alpha readiness gate, run:
|
|
59
61
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easonwumac/computer-linker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "One computer, one permissioned MCP linker for local workspaces.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/client.js",
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
"release:check": "node scripts/release-npm.mjs --check",
|
|
65
65
|
"release:dry-run": "node scripts/release-npm.mjs --dry-run",
|
|
66
66
|
"release:publish": "node scripts/release-npm.mjs --publish",
|
|
67
|
+
"release:verify": "node scripts/verify-npm-release.mjs",
|
|
67
68
|
"release:validate": "node scripts/release-validate.mjs",
|
|
68
69
|
"start": "node dist/cli.js start",
|
|
69
70
|
"test": "node scripts/run-tests.mjs",
|