Skip to content

chore(node, pnpm, skills): bump to Node v26.0.0 + pnpm 11.0.6 + sync updating-xport#1299

Merged
John-David Dalton (jdalton) merged 4 commits intomainfrom
chore/node-26-pnpm-11.0.6
May 5, 2026
Merged

chore(node, pnpm, skills): bump to Node v26.0.0 + pnpm 11.0.6 + sync updating-xport#1299
John-David Dalton (jdalton) merged 4 commits intomainfrom
chore/node-26-pnpm-11.0.6

Conversation

@jdalton
Copy link
Copy Markdown
Collaborator

@jdalton John-David Dalton (jdalton) commented May 5, 2026

Summary

  • Root engines.node: >=25.9.0>=26.0.0
  • Root engines.pnpm: >=11.0.0-rc.3>=11.0.6
  • Root packageManager: pnpm@11.0.0-rc.5pnpm@11.0.6+sha512.<hex>
  • Drop engines from internal-only packages/build-infra + packages/package-builder

Why

Tracks the SocketDev/socket-registry external-tools.json bump (commit 9246c28b) which moved pnpm to 11.0.6 in the canonical CI pin and migrated the schema from per-platform sha256 fields to SRI-format integrity strings.

The root packageManager now carries the corepack hex integrity hash (RFC 2018) so corepack verifies the downloaded pnpm tarball before trusting it. Different encoding from external-tools.json's SRI form because corepack's parser only accepts hex.

The two private subpackages were drift-prone (>=25.5.0 vs root >=25.9.0) without serving any consumer — they're workspace-only and never published. Per the new socket-repo-template CLAUDE.md rule "monorepo-internal subpackages don't need engines", the field is removed.

Test plan

  • CI passes on Node 26.0.0 runners
  • pnpm install succeeds with corepack hash verification

Note

Low Risk
Low risk: this only updates toolchain requirements/pins and removes redundant engines fields, but may break installs/CI for environments not yet on Node 26/pnpm 11.0.6.

Overview
Bumps the monorepo toolchain requirements to Node >=26.0.0 and pnpm >=11.0.6, and updates the root packageManager to pnpm@11.0.6 with a pinned sha512 integrity string for corepack verification.

Removes engines constraints from the internal workspace-only packages build-infra and package-builder to avoid per-package version drift.

Reviewed by Cursor Bugbot for commit 5218f6e. Configure here.

Root engines.node: >=25.9.0 → >=26.0.0; pnpm range: >=11.0.0-rc.3 →
>=11.0.6. The packageManager field carries an integrity hash in the
corepack-mandated hex form (RFC 2018), so corepack verifies the
downloaded pnpm tarball before trusting it.

Subpackage engines drop: build-infra and package-builder are
private workspace-only packages with no published surface — their
engines.node fields were drift-prone (>=25.5.0 vs root >=25.9.0)
without serving any consumer. Per the new socket-repo-template
CLAUDE.md rule "monorepo-internal subpackages don't need engines",
the field is removed entirely. The root package.json's engines is
the single source of truth for the workspace.

Tracks the SocketDev/socket-registry/external-tools.json bump
(commit 9246c28b) which moved pnpm to 11.0.6 in the canonical CI
pin and migrated the schema from per-platform sha256 fields to
SRI-format integrity strings.
Copy link
Copy Markdown

@cursor cursor Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

Bugbot Autofix is ON. A cloud agent has been kicked off to fix the reported issue. You can view the agent here.

Comment @cursor review or bugbot run to trigger another review on this PR

Reviewed by Cursor Bugbot for commit 5218f6e. Configure here.

Comment thread package.json
The /updating umbrella's Phase 3 was read-only (just `pnpm run xport`)
while Phase 4 claimed drift was already auto-bumped. It wasn't —
locked rows would get flagged as drift but nothing would record why
we held. This sync brings the canonical fix from socket-repo-template
+ socket-registry: Phase 3 classifies, Phase 4 invokes updating-xport
which auto-bumps track-latest/major-gate version-pins and emits
advisory notes for everything else.

- updating/SKILL.md: synced from socket-registry canonical.
- updating-xport/SKILL.md: new in this repo — synced from
  socket-registry canonical.
@jdalton John-David Dalton (jdalton) changed the title chore(node, pnpm): bump to Node v26.0.0 + pnpm 11.0.6 with sha512 chore(node, pnpm, skills): bump to Node v26.0.0 + pnpm 11.0.6 + sync updating-xport May 5, 2026
John-David Dalton (jdalton) added a commit that referenced this pull request May 5, 2026
The cascade bump in this PR pulls socket-registry@51f34ffb's
setup-and-install action, which installs pnpm 11.0.6 from
external-tools.json. Without this matching package.json bump,
pnpm refuses to run with `[ERROR] This project is configured to
use 11.0.0-rc.5 of pnpm. Your current pnpm is v11.0.6`.

Independent of #1299's Node 26 + engines.node bump — that PR can
land separately. This PR only widens engines.pnpm to >=11.0.6 and
sets the integrity-checked packageManager string.
The packageManager bump in this PR sets pnpm@11.0.6, but the workflow
files were still pinned to socket-registry@ea1986b8 — which installs
pnpm 11.0.0-rc.5 from external-tools.json. Bump the cascade to
@51f34ffb so the runner pnpm matches the package.json declaration.

@51f34ffb includes:
- 4c4b12cc — pnpm 11.0.6 GA + Rust toolchain pin + SRI integrity migration
- e5f83c31 — wire updating-xport into the umbrella drift flow
- 51f34ffb — release-workflow-guard quote-mask false-positive fix
John-David Dalton (jdalton) added a commit that referenced this pull request May 5, 2026
The cascade bump in this PR pulls socket-registry@51f34ffb's
setup-and-install action, which installs pnpm 11.0.6 from
external-tools.json. Without this matching package.json bump,
pnpm refuses to run with `[ERROR] This project is configured to
use 11.0.0-rc.5 of pnpm. Your current pnpm is v11.0.6`.

Independent of #1299's Node 26 + engines.node bump — that PR can
land separately. This PR only widens engines.pnpm to >=11.0.6 and
sets the integrity-checked packageManager string.
@jdalton John-David Dalton (jdalton) merged commit 9cb69c4 into main May 5, 2026
12 checks passed
@jdalton John-David Dalton (jdalton) deleted the chore/node-26-pnpm-11.0.6 branch May 5, 2026 23:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant