Skip to content

chore: migrate to pnpm 11.9#232

Open
Sheraff wants to merge 2 commits into
TanStack:mainfrom
Sheraff:chore/pnpm-11-9
Open

chore: migrate to pnpm 11.9#232
Sheraff wants to merge 2 commits into
TanStack:mainfrom
Sheraff:chore/pnpm-11-9

Conversation

@Sheraff

@Sheraff Sheraff commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Updates pnpm to 11.9.0 and aligns workspace security settings with the TanStack pnpm 11.9 procedure.

Verification:

  • pnpm install --frozen-lockfile --ignore-scripts --trust-lockfile=false
  • git diff --check

Summary by CodeRabbit

  • Chores
    • Updated the project and example manifests to use a newer pnpm version.
    • Raised the minimum supported pnpm version to match the new workspace setup.
    • Added workspace package policy settings to improve consistency and control over dependency handling.
    • Adjusted build allowances for a few optional packages in the Angular examples.

@coderabbitai

coderabbitai Bot commented Jun 23, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: fd013a4b-3aa9-4dad-9082-93061dd159f0

📥 Commits

Reviewing files that changed from the base of the PR and between 0229539 and 7168872.

📒 Files selected for processing (41)
  • examples/angular/asyncBatch/package.json
  • examples/angular/asyncDebounce/package.json
  • examples/angular/asyncRateLimit/package.json
  • examples/angular/asyncRetry/package.json
  • examples/angular/asyncThrottle/package.json
  • examples/angular/batch/package.json
  • examples/angular/debounce/package.json
  • examples/angular/injectAsyncBatchedCallback/package.json
  • examples/angular/injectAsyncBatcher/package.json
  • examples/angular/injectAsyncDebouncedCallback/package.json
  • examples/angular/injectAsyncDebouncer/package.json
  • examples/angular/injectAsyncQueuedSignal/package.json
  • examples/angular/injectAsyncQueuer/package.json
  • examples/angular/injectAsyncRateLimiter/package.json
  • examples/angular/injectAsyncRateLimiterWithPersister/package.json
  • examples/angular/injectAsyncThrottledCallback/package.json
  • examples/angular/injectAsyncThrottler/package.json
  • examples/angular/injectBatchedCallback/package.json
  • examples/angular/injectBatcher/package.json
  • examples/angular/injectDebouncedCallback/package.json
  • examples/angular/injectDebouncedSignal/package.json
  • examples/angular/injectDebouncedValue/package.json
  • examples/angular/injectDebouncer/package.json
  • examples/angular/injectQueuedSignal/package.json
  • examples/angular/injectQueuedValue/package.json
  • examples/angular/injectQueuer/package.json
  • examples/angular/injectQueuerWithPersister/package.json
  • examples/angular/injectRateLimitedCallback/package.json
  • examples/angular/injectRateLimitedSignal/package.json
  • examples/angular/injectRateLimitedValue/package.json
  • examples/angular/injectRateLimiter/package.json
  • examples/angular/injectRateLimiterWithPersister/package.json
  • examples/angular/injectThrottledCallback/package.json
  • examples/angular/injectThrottledSignal/package.json
  • examples/angular/injectThrottledValue/package.json
  • examples/angular/injectThrottler/package.json
  • examples/angular/queue/package.json
  • examples/angular/rateLimit/package.json
  • examples/angular/throttle/package.json
  • package.json
  • pnpm-workspace.yaml

📝 Walkthrough

Walkthrough

The root package.json bumps packageManager to pnpm@11.9.0 and raises the engines.pnpm floor to >=11.9.0. pnpm-workspace.yaml gains new workspace-level policies (minimumReleaseAge, blockExoticSubdeps, trustPolicy, trustPolicyExclude, and allowBuilds adjustments). All 39 Angular example package.json files are updated to match the new pnpm version.

Changes

pnpm 11.9.0 Upgrade and Workspace Policy

Layer / File(s) Summary
Root pnpm version bump and workspace policy settings
package.json, pnpm-workspace.yaml
package.json updates packageManager to pnpm@11.9.0 and tightens engines.pnpm to >=11.9.0. pnpm-workspace.yaml adds minimumReleaseAge: 1440, blockExoticSubdeps: true, trustPolicy: no-downgrade with exclusions for chokidar@4.0.3 and semver@6.3.1, and marks @parcel/watcher, lmdb, and msgpackr-extract build allowances as false (optional).
Angular example packageManager bumps
examples/angular/*/package.json
All 39 Angular example package.json files have their packageManager field updated from pnpm@11.1.1 to pnpm@11.9.0 to align with the root declaration.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Possibly related issues

  • Dependency Dashboard workflow#11: Relates to a pending pnpm upgrade task matching the packageManager and policy file changes in this PR.
  • TanStack/state#1: Centers on the same pnpm 11.9.0 upgrade (packageManager and root pnpm settings).

Possibly related PRs

  • TanStack/pacer#224: This PR directly builds on that PR's addition of engines.pnpm: ">=11.0.0" by tightening the constraint to >=11.9.0 and bumping the pinned version.

Suggested reviewers

  • KevinVandy

Poem

🐇 Hippity hop, from one-one to nine,
pnpm gets a bump — everything's fine!
Trust policies set, exotic blocked tight,
Release ages counted through day and through night.
The rabbit approves — the workspace shines bright! ✨

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning It covers the change and verification, but omits the required Checklist and Release Impact sections from the template. Add the missing checklist items and explicitly state whether this is docs/CI/dev-only or needs a changeset.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly states the main change: migrating the repo to pnpm 11.9.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Comment @coderabbitai help to get the list of available commands.

@nx-cloud

nx-cloud Bot commented Jun 23, 2026

Copy link
Copy Markdown

View your CI Pipeline Execution ↗ for commit 7168872

Command Status Duration Result
nx run-many --targets=build --exclude=examples/** ✅ Succeeded 17s View ↗

☁️ Nx Cloud last updated this comment at 2026-06-24 11:11:59 UTC

@pkg-pr-new

pkg-pr-new Bot commented Jun 23, 2026

Copy link
Copy Markdown
More templates

@tanstack/angular-pacer

npm i https://pkg.pr.new/@tanstack/angular-pacer@232

@tanstack/pacer

npm i https://pkg.pr.new/@tanstack/pacer@232

@tanstack/pacer-devtools

npm i https://pkg.pr.new/@tanstack/pacer-devtools@232

@tanstack/pacer-lite

npm i https://pkg.pr.new/@tanstack/pacer-lite@232

@tanstack/preact-pacer

npm i https://pkg.pr.new/@tanstack/preact-pacer@232

@tanstack/preact-pacer-devtools

npm i https://pkg.pr.new/@tanstack/preact-pacer-devtools@232

@tanstack/react-pacer

npm i https://pkg.pr.new/@tanstack/react-pacer@232

@tanstack/react-pacer-devtools

npm i https://pkg.pr.new/@tanstack/react-pacer-devtools@232

@tanstack/solid-pacer

npm i https://pkg.pr.new/@tanstack/solid-pacer@232

@tanstack/solid-pacer-devtools

npm i https://pkg.pr.new/@tanstack/solid-pacer-devtools@232

commit: ca3bfe6

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