@yawlabs/mcp 0.63.1 → 0.63.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 CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  All notable changes to `@yawlabs/mcp` (formerly `@yawlabs/mcph`) are documented here. This project uses [semantic versioning](https://semver.org) and a script-gated release flow: `./release.sh <version>` runs lint + tests + build, bumps, tags, publishes to npm, and creates the GitHub release.
4
4
 
5
+ ## 0.63.2 -- release pipeline: publish npm from CI
6
+
7
+ No changes to the package runtime or CLI -- this release exists to exercise the
8
+ new CI-on-tag-push publish flow end to end. The published artifact is identical
9
+ to 0.63.1 aside from the version bump.
10
+
11
+ - **npm is now published from CI, not the workstation.** A new `publish-npm` job
12
+ in `release.yml` publishes `@yawlabs/mcp` on every `v*` tag using the org
13
+ `NPM_TOKEN` + `--provenance` (the repo and package are public), gated on the
14
+ binary build so npm and the GitHub Release stay in lockstep. It is idempotent:
15
+ a version already live is a clean skip, and an `EPUBLISHCONFLICT` from
16
+ registry read-replica lag is treated as success. `publish-registry` now
17
+ `needs: publish-npm`, so the MCP-registry verify can no longer race ahead of
18
+ the npm publish. `release.sh`'s hand-off detection was tightened to key on a
19
+ real `npm publish` / `NODE_AUTH_TOKEN` signal instead of the registry job's
20
+ `id-token: write` (the false positive that wedged the 0.63.0/0.63.1 runs).
21
+ - **Registry job hardening.** `mcp-publisher` is pinned to a tagged release and
22
+ verified against its published sha256 before execution (was an unpinned
23
+ `curl .../latest | tar`), and the job pins its Node toolchain via `setup-node`.
24
+
5
25
  ## 0.63.1 -- CLI follow-ups: wire dead --dry-run/--stdin flags, fix completion drift, dedup probes
6
26
 
7
27
  Patch-level follow-ups on the 0.63.0 CLI hardening pass. All fixes; no behavior changes for callers who weren't already hitting the dead-flag bugs.
File without changes
package/dist/index.js CHANGED
@@ -3695,7 +3695,7 @@ async function runUpgrade(opts = {}) {
3695
3695
  return { exitCode: 3, lines };
3696
3696
  }
3697
3697
  function readCurrentVersion() {
3698
- return true ? "0.63.1" : "dev";
3698
+ return true ? "0.63.2" : "dev";
3699
3699
  }
3700
3700
 
3701
3701
  // src/usage-hints.ts
@@ -3757,7 +3757,7 @@ function selectFlakyNamespaces(entries, limit) {
3757
3757
  }
3758
3758
 
3759
3759
  // src/doctor-cmd.ts
3760
- var VERSION = true ? "0.63.1" : "dev";
3760
+ var VERSION = true ? "0.63.2" : "dev";
3761
3761
  function isPersistenceDisabled(env) {
3762
3762
  const raw = env.YAW_MCP_DISABLE_PERSISTENCE;
3763
3763
  return raw !== void 0 && raw !== "" && (raw === "1" || raw.toLowerCase() === "true");
@@ -6087,7 +6087,7 @@ function defaultSpawn2(cmd, args) {
6087
6087
  async function maybeAutoUpgrade(deps = {}) {
6088
6088
  const optOut = process.env.YAW_MCP_AUTO_UPGRADE;
6089
6089
  if (optOut === "0" || optOut?.toLowerCase() === "false") return;
6090
- const current = deps.currentVersion ?? (true ? "0.63.1" : "dev");
6090
+ const current = deps.currentVersion ?? (true ? "0.63.2" : "dev");
6091
6091
  if (current === "dev") return;
6092
6092
  const method = (deps.isSeaImpl ? await deps.isSeaImpl() : await detectSea()) ? "binary" : detectInstallMethod(deps.argvPath ?? process.argv[1]);
6093
6093
  const latest = await (deps.fetchLatestImpl ?? fetchLatestVersion2)();
@@ -8778,7 +8778,7 @@ function categorizeSpawnError(err) {
8778
8778
  }
8779
8779
  async function connectToUpstream(config, onDisconnect, onListChanged) {
8780
8780
  const client = new Client(
8781
- { name: "yaw-mcp", version: true ? "0.63.1" : "dev" },
8781
+ { name: "yaw-mcp", version: true ? "0.63.2" : "dev" },
8782
8782
  { capabilities: {} }
8783
8783
  );
8784
8784
  let transport;
@@ -9105,7 +9105,7 @@ var ConnectServer = class _ConnectServer {
9105
9105
  this.apiUrl = apiUrl5;
9106
9106
  this.token = token5;
9107
9107
  this.server = new Server(
9108
- { name: "yaw-mcp", version: true ? "0.63.1" : "dev" },
9108
+ { name: "yaw-mcp", version: true ? "0.63.2" : "dev" },
9109
9109
  {
9110
9110
  capabilities: {
9111
9111
  tools: { listChanged: true },
@@ -12657,7 +12657,7 @@ if (subcommand === "compliance") {
12657
12657
  `);
12658
12658
  process.exit(0);
12659
12659
  } else if (subcommand === "--version" || subcommand === "-V") {
12660
- process.stdout.write(`yaw-mcp ${true ? "0.63.1" : "dev"}
12660
+ process.stdout.write(`yaw-mcp ${true ? "0.63.2" : "dev"}
12661
12661
  `);
12662
12662
  process.exit(0);
12663
12663
  } else if (subcommand && !subcommand.startsWith("-")) {
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yawlabs/mcp",
3
- "version": "0.63.1",
3
+ "version": "0.63.2",
4
4
  "mcpName": "io.github.YawLabs/mcp",
5
5
  "description": "Yaw MCP -- MCP servers, managed. Free to run locally; Yaw Team adds cross-machine sync.",
6
6
  "license": "UNLICENSED",