- Package:
@will-cppa/pinecone-read-only-mcp - Version:
0.5.0 - Git tag:
v0.5.0→c28e346efafadbfef98891e523d566eebe957dad(“Updated documents for new release (#236)”) - Recorded: 2026-07-29 (UTC+8 local)
- Verifier: Jonathan (@jonathanMLDev), assignee for week 5 verification task
- Scope: Verification and sign-off only. No product code changes.
ServerContextdecomposition and legacy facade removal remain deferred past July 2026.
| Field | Value |
|---|---|
npm view … version |
0.5.0 |
dist-tags.latest |
0.5.0 |
time['0.5.0'] (UTC) |
2026-07-24T18:41:39.687Z |
| CHANGELOG release date | 2026-07-25 (CHANGELOG.md; calendar date vs UTC publish timestamp) |
Commands used: npm view @will-cppa/pinecone-read-only-mcp@0.5.0 version gitHead dist-tags time --json
Repository state for verification: detached HEAD at v0.5.0 (c28e346).
Compared packed package/package.json from:
- Local
npm packafternpm ciandnpm run buildonv0.5.0 - Registry
npm pack @will-cppa/pinecone-read-only-mcp@0.5.0
These fields are identical in both tarballs (local pack vs registry pack; no differences in version, files, exports, or bin):
version:0.5.0files:dist,README.md,LICENSE,CHANGELOG.mdbin:
{
"pinecone-read-only-mcp": "dist/index.js"
}exports(same object in both packedpackage/package.jsonfiles):
{
".": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./alliance": {
"types": "./dist/alliance/index.d.ts",
"import": "./dist/alliance/index.js"
},
"./package.json": "./package.json"
}npm pack --dry-run on the tag reported 208 packaged files; registry pack lists the same paths (no src/).
- Fresh build on tag:
npm run build(runscleanthentsc -p tsconfig.build.json) before pack. - No
*.test.*(or other test sources) under packeddist/. - File path set under
package/(local vs registry): identical. dist/**content: SHA-256 compared for every file underdist/in both tarballs → 0 mismatches (functional parity of compiled output).- Tarball bytes: full
.tgzSHA-256 differs between local pack and registry. This is expected from tar entry ordering and gzip stream differences across npm/Node versions (local pack used Node v24.11.1; registry was published from CI on Node 20.x) — not content drift:package.json,README.md,CHANGELOG.md, andLICENSEare byte-identical between the packed tarball andgit show v0.5.0:<path>for each file (verified independently of the localnpm pack, so this holds regardless of the packer's Node version). Registry tarball matches npmdist.shasumf912f88fee5a8499eadac70ddcbf4a25660fbe76. - Local verification used Node v24.11.1; publish workflow uses Node 20.x on Ubuntu (publish.yml). Despite Node major difference, compiled
dist/artifacts matched registry byte-for-byte.
npm gitHead: c28e346efafadbfef98891e523d566eebe957dad — matches git rev-parse v0.5.0^{commit}.
Workflow runs confirmed via the public GitHub Actions UI on 2026-07-29 (listed as successful; no failure marker on these runs):
| Check | Run | Link |
|---|---|---|
CI on merge commit c28e346 (#236) |
CI #480 — “Updated documents for new release (#236)” on main |
Run #480 — Success |
CodeQL on c28e346 |
CodeQL #505 — same commit on main |
Run #505 — Success |
Publish to npm for release v0.5.0 |
Publish #11 — “Release v0.5.0 published” (~3m 25s) | Run #11 — Success |
Direct run permalinks (not ?query= filters, which GitHub Actions silently ignores for this UI and would otherwise land on the unfiltered run list).
Release: v0.5.0 · Commit checks
Publish path aligns with RELEASING.md: workflow_call to ci.yml, then npm publish --provenance --access public; prepublishOnly runs npm run ci.
Artifact verification is complete. The published npm package matches repository tag v0.5.0 (c28e346) for the checks in AC 1–4:
- Registry version and
gitHeadalign with tagc28e346. - Packed manifest (
version,files,exports,bin) matches the taggedpackage.json(see AC 2). - Published
dist/matches a clean tag build (no test sources in artifact;dist/**hash parity with registry). - CI (#480), CodeQL (#505), and Publish (#11) for the
v0.5.0release completed successfully per GitHub Actions (see AC 4).
No re-publish or version bump is required based on this verification.
Registry tarball: https://registry.npmjs.org/@will-cppa/pinecone-read-only-mcp/-/pinecone-read-only-mcp-0.5.0.tgz (dist.shasum f912f88fee5a8499eadac70ddcbf4a25660fbe76).
Process sign-off: Organizational production-readiness sign-off (AC 6) remains pending until this documentation PR is approved and merged. Until then, do not treat the release process as fully signed off in-repo.
Sign-off is committed under docs/. Requires:
- PR opened with this file and doc index updates (README.md, RELEASING.md) — PR #242
- ≥ 1 reviewer approval
- Approver and approval date recorded here after review
- Merged PR URL recorded here after merge (same as #242 when merged)
git checkout v0.5.0
npm ci
npm run build
npm pack --dry-run
npm pack
npm pack @will-cppa/pinecone-read-only-mcp@0.5.0
# Extract local and registry tarballs; compare dist/** SHA-256 (expect 0 mismatches)
$localTgz = (Get-ChildItem -Name 'will-cppa-pinecone-read-only-mcp-0.5.0.tgz' | Select-Object -First 1)
$registryTgz = (Get-ChildItem -Name 'will-cppa-pinecone-read-only-mcp-*.tgz' | Where-Object { $_ -ne $localTgz } | Select-Object -First 1)
Remove-Item -Recurse -Force .tmp\verify-local, .tmp\verify-registry -ErrorAction SilentlyContinue
New-Item -ItemType Directory -Force .tmp\verify-local, .tmp\verify-registry | Out-Null
tar -xf $localTgz -C .tmp\verify-local
tar -xf $registryTgz -C .tmp\verify-registry
$localDist = '.tmp\verify-local\package\dist'
$registryDist = '.tmp\verify-registry\package\dist'
$localFiles = Get-ChildItem $localDist -Recurse -File | ForEach-Object { $_.FullName.Substring((Resolve-Path $localDist).Path.Length + 1) }
$registryFiles = Get-ChildItem $registryDist -Recurse -File | ForEach-Object { $_.FullName.Substring((Resolve-Path $registryDist).Path.Length + 1) }
Compare-Object $localFiles $registryFiles
$mismatches = @()
foreach ($rel in $localFiles) {
$lHash = (Get-FileHash -Algorithm SHA256 (Join-Path $localDist $rel)).Hash
$rHash = (Get-FileHash -Algorithm SHA256 (Join-Path $registryDist $rel)).Hash
if ($lHash -ne $rHash) { $mismatches += $rel }
}
if ($mismatches.Count -gt 0) { throw "dist hash mismatches: $($mismatches -join ', ')" }
'dist/** SHA-256 parity: 0 mismatches'On Ubuntu (publish workflow host), after extracting both tarballs under .tmp/verify-local/package/dist and .tmp/verify-registry/package/dist, compare with sha256sum on each relative path; expect identical digests for every file under dist/.
Docs link-check: npm run docs:link-check — exit 0 on 2026-07-30 (local, after extending the checker with heading-anchor validation and fixing the anchors it flagged). Pending: record the PR #242 quality job run URL here once CI finishes on the pushed commit — see the PR #242 checks tab.