Skip to content

chore(release): 11.5.1#12126

Merged
zkochan merged 1 commit into
mainfrom
release-11-5-1
Jun 2, 2026
Merged

chore(release): 11.5.1#12126
zkochan merged 1 commit into
mainfrom
release-11-5-1

Conversation

@zkochan

@zkochan zkochan commented Jun 2, 2026

Copy link
Copy Markdown
Member

Release of pnpm 11.5.1.

Shipped in this release (pnpm CLI)

  • Improve pnpm audit performance — prune non-vulnerable lockfile subtrees and stop path enumeration once vulnerable findings reach the path cap. #12087
  • Avoid crashing when the workspace state cache is partially written or malformed. #12094
  • Set npm_config_user_agent for root lifecycle scripts during headless installs. #12092
  • Preserve the integrity field of a remote (non-registry) tarball dependency on re-resolution — fixes later installs failing with ERR_PNPM_MISSING_TARBALL_INTEGRITY. #12096 (closes #12067)
  • Normalize a string repository field into the { type, url } object form in the publish manifest — fixes registries such as Gitea/Codeberg rejecting pnpm publish with a 500 error. #12109 (closes #12099)
  • Preserve compatible optional peer versions already present in the lockfile when resolving dependencies. #12075
  • Fix inconsistent resolution of a peer dependency shared through a diamond — no longer reuses a hoisted instance of the shared peer resolved against a different version. #12081 (closes #12079)

Written by an agent (Claude Code, claude-opus-4-8).

Summary by CodeRabbit

  • Bug Fixes

    • Improved pnpm audit performance with optimized lockfile pruning
    • Fixed crashes from corrupted workspace cache state
    • Fixed peer dependency resolution inconsistencies
    • Preserved dependency integrity during lockfile re-resolution
    • Improved handling of optional peer versions
  • Changes

    • Root lifecycle scripts now receive user agent information in headless installs
    • Repository fields automatically normalized during publish
  • Chores

    • pnpm-agent license updated to PolyForm Shield License 1.0.0

Copilot AI review requested due to automatic review settings June 2, 2026 06:05
@coderabbitai

coderabbitai Bot commented Jun 2, 2026

Copy link
Copy Markdown

Review Change Stack

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: ed15d2e8-2281-473e-8e19-bf774eda5768

📥 Commits

Reviewing files that changed from the base of the PR and between eec417b and fd28deb.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (58)
  • .changeset-released/release-11-5-1.txt
  • .changeset/audit-path-traversal-performance.md
  • .changeset/fix-workspace-state-race.md
  • .changeset/lucky-user-agent.md
  • .changeset/pnpm-agent-shield-license.md
  • .changeset/preserve-tarball-integrity-on-reresolution.md
  • .changeset/publish-normalize-repository.md
  • .changeset/steady-optional-peers.md
  • .changeset/twelve-peers-diamond.md
  • agent/server/CHANGELOG.md
  • agent/server/package.json
  • building/commands/CHANGELOG.md
  • building/commands/package.json
  • deps/compliance/audit/CHANGELOG.md
  • deps/compliance/audit/package.json
  • deps/compliance/commands/CHANGELOG.md
  • deps/compliance/commands/package.json
  • deps/inspection/commands/CHANGELOG.md
  • deps/inspection/commands/package.json
  • deps/status/CHANGELOG.md
  • deps/status/package.json
  • engine/pm/commands/CHANGELOG.md
  • engine/pm/commands/package.json
  • exec/commands/CHANGELOG.md
  • exec/commands/package.json
  • global/commands/CHANGELOG.md
  • global/commands/package.json
  • installing/commands/CHANGELOG.md
  • installing/commands/package.json
  • installing/deps-installer/CHANGELOG.md
  • installing/deps-installer/package.json
  • installing/deps-resolver/CHANGELOG.md
  • installing/deps-resolver/package.json
  • installing/deps-restorer/CHANGELOG.md
  • installing/deps-restorer/package.json
  • installing/env-installer/CHANGELOG.md
  • installing/env-installer/package.json
  • lockfile/make-dedicated-lockfile/CHANGELOG.md
  • lockfile/make-dedicated-lockfile/package.json
  • patching/commands/CHANGELOG.md
  • patching/commands/package.json
  • pnpm-workspace.yaml
  • pnpm/CHANGELOG.md
  • pnpm/artifacts/darwin-arm64/package.json
  • pnpm/artifacts/exe/package.json
  • pnpm/artifacts/linux-arm64-musl/package.json
  • pnpm/artifacts/linux-arm64/package.json
  • pnpm/artifacts/linux-x64-musl/package.json
  • pnpm/artifacts/linux-x64/package.json
  • pnpm/artifacts/win32-arm64/package.json
  • pnpm/artifacts/win32-x64/package.json
  • pnpm/package.json
  • releasing/commands/CHANGELOG.md
  • releasing/commands/package.json
  • releasing/exportable-manifest/CHANGELOG.md
  • releasing/exportable-manifest/package.json
  • workspace/state/CHANGELOG.md
  • workspace/state/package.json

📝 Walkthrough

Walkthrough

This PR aggregates eight completed changesets into pnpm version 11.5.1, updating package versions and CHANGELOG entries across the monorepo. Changes include audit performance improvements, workspace state robustness, peer dependency resolution fixes, headless environment setup, and publish manifest normalization, with a license update for pnpm-agent.

Changes

pnpm 11.5.1 Patch Release

Layer / File(s) Summary
Release metadata consolidation
.changeset-released/release-11-5-1.txt
Aggregates eight named change items (audit-path-traversal-performance, fix-workspace-state-race, lucky-user-agent, pnpm-agent-shield-license, preserve-tarball-integrity-on-reresolution, publish-normalize-repository, steady-optional-peers, twelve-peers-diamond) into a released bundle.
pnpm-agent license update
agent/server/CHANGELOG.md, agent/server/package.json
Package version bumped to 0.0.21 with MIT → PolyForm Shield License 1.0.0 license change and updated dependency.
Audit path-traversal performance improvements
deps/compliance/audit/CHANGELOG.md, deps/compliance/audit/package.json, deps/compliance/commands/CHANGELOG.md, deps/compliance/commands/package.json
Audit package released at 1101.0.12 with lockfile pruning and path enumeration optimizations; compliance/commands cascaded to 1101.3.1.
Workspace state cache robustness
workspace/state/CHANGELOG.md, workspace/state/package.json, deps/status/CHANGELOG.md, deps/status/package.json
Workspace state released at 1100.0.18 to handle partially written/malformed cache; deps.status cascaded to 1100.0.21.
Dependency resolver peer-handling fixes
installing/deps-resolver/CHANGELOG.md, installing/deps-resolver/package.json, installing/deps-installer/CHANGELOG.md, installing/deps-installer/package.json, installing/env-installer/CHANGELOG.md, installing/env-installer/package.json
Deps-resolver released at 1100.1.6 with three behavioral fixes (optional peer preservation, diamond peer resolution, tarball integrity); cascaded through deps-installer (1101.6.1) and env-installer (1101.1.5).
Headless install environment setup
installing/deps-restorer/CHANGELOG.md, installing/deps-restorer/package.json, engine/pm/commands/CHANGELOG.md, engine/pm/commands/package.json, installing/commands/CHANGELOG.md, installing/commands/package.json
Deps-restorer released at 1101.1.8 setting npm_config_user_agent for root lifecycle scripts; cascaded to engine/pm/commands (1101.1.19) and installing/commands (1100.7.1).
Publish manifest repository normalization
releasing/exportable-manifest/CHANGELOG.md, releasing/exportable-manifest/package.json, releasing/commands/CHANGELOG.md, releasing/commands/package.json, lockfile/make-dedicated-lockfile/CHANGELOG.md, lockfile/make-dedicated-lockfile/package.json
Exportable-manifest released at 1100.1.2 normalizing repository string to object form; cascaded to releasing/commands (1100.4.1) and lockfile/make-dedicated-lockfile (1100.0.15).
Downstream cascading updates
building/commands/CHANGELOG.md, building/commands/package.json, exec/commands/CHANGELOG.md, exec/commands/package.json, global/commands/CHANGELOG.md, global/commands/package.json, deps/inspection/commands/CHANGELOG.md, deps/inspection/commands/package.json, patching/commands/CHANGELOG.md, patching/commands/package.json
Version bumps across dependent packages (building, exec, global, inspection, patching) due to updated upstream dependencies.
Main pnpm 11.5.1 release
pnpm/CHANGELOG.md, pnpm/package.json, pnpm/artifacts/*/package.json
Main pnpm package and all platform artifacts (darwin-arm64, exe, linux-arm64-musl, linux-arm64, linux-x64-musl, linux-x64, win32-arm64, win32-x64) bumped to 11.5.1 with consolidated patch changelog.
Workspace configuration
pnpm-workspace.yaml
Dependency catalog updated: promise-share bumped from ^2.0.0 to ^2.0.1.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Possibly related PRs

  • pnpm/pnpm#12092: Implements the "lucky-user-agent" feature setting npm_config_user_agent for root lifecycle scripts in headless installs.
  • pnpm/pnpm#12087: Implements the "audit-path-traversal-performance" optimization pruning non-vulnerable lockfile subtrees.
  • pnpm/pnpm#12081: Implements the "twelve-peers-diamond" fix for inconsistent peer resolution in diamond dependency graphs.

Poem

🐰 Eight bundles bundled, versions stacked so high,

Changelogs and manifests reaching toward the sky,

From audit to agents, all peers now at peace,

A patch release sprint with no code-wars to cease! 🚀

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release-11-5-1

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@qodo-free-for-open-source-projects

Copy link
Copy Markdown

Review Summary by Qodo

Release pnpm 11.5.1 with bug fixes and performance improvements

✨ Enhancement

Grey Divider

Walkthroughs

Description
• Release version 11.5.1 with multiple bug fixes and improvements
• Improved pnpm audit performance by pruning non-vulnerable subtrees
• Fixed workspace state cache crash on partial writes or malformed data
• Fixed tarball integrity preservation during dependency re-resolution
• Fixed peer dependency resolution in diamond dependency patterns
• Normalized repository field in publish manifests for registry compatibility
• Set npm_config_user_agent for root lifecycle scripts in headless installs
• Preserved optional peer versions in lockfile during resolution
• Updated promise-share dependency from 2.0.0 to 2.0.1
• Updated pnpm-agent license to PolyForm Shield License 1.0.0
Diagram
flowchart LR
  A["Release 11.5.1"] --> B["Bug Fixes"]
  A --> C["Performance"]
  A --> D["Dependencies"]
  B --> B1["Workspace State"]
  B --> B2["Tarball Integrity"]
  B --> B3["Peer Resolution"]
  B --> B4["Repository Normalization"]
  C --> C1["Audit Performance"]
  D --> D1["promise-share 2.0.1"]
  D --> D2["pnpm-agent License"]

Loading

Grey Divider

File Changes

1. .changeset-released/release-11-5-1.txt ⚙️ Configuration changes +8/-0

Record released changesets for version 11.5.1

.changeset-released/release-11-5-1.txt


2. .changeset/audit-path-traversal-performance.md Miscellaneous +0/-6

Remove audit performance changeset after release

.changeset/audit-path-traversal-performance.md


3. .changeset/fix-workspace-state-race.md Miscellaneous +0/-6

Remove workspace state race condition changeset

.changeset/fix-workspace-state-race.md


View more (56)
4. .changeset/lucky-user-agent.md Miscellaneous +0/-6

Remove user agent environment variable changeset

.changeset/lucky-user-agent.md


5. .changeset/pnpm-agent-shield-license.md Miscellaneous +0/-5

Remove pnpm-agent license change changeset

.changeset/pnpm-agent-shield-license.md


6. .changeset/preserve-tarball-integrity-on-reresolution.md Miscellaneous +0/-6

Remove tarball integrity preservation changeset

.changeset/preserve-tarball-integrity-on-reresolution.md


7. .changeset/publish-normalize-repository.md Miscellaneous +0/-6

Remove repository normalization changeset

.changeset/publish-normalize-repository.md


8. .changeset/steady-optional-peers.md Miscellaneous +0/-6

Remove optional peers preservation changeset

.changeset/steady-optional-peers.md


9. .changeset/twelve-peers-diamond.md Miscellaneous +0/-6

Remove diamond peer dependency changeset

.changeset/twelve-peers-diamond.md


10. agent/server/CHANGELOG.md 📝 Documentation +7/-0

Add pnpm-agent 0.0.21 release notes

agent/server/CHANGELOG.md


11. agent/server/package.json ⚙️ Configuration changes +1/-1

Bump pnpm-agent version to 0.0.21

agent/server/package.json


12. building/commands/CHANGELOG.md 📝 Documentation +6/-0

Add building commands 1100.1.1 release notes

building/commands/CHANGELOG.md


13. building/commands/package.json ⚙️ Configuration changes +1/-1

Bump building commands version to 1100.1.1

building/commands/package.json


14. deps/compliance/audit/CHANGELOG.md 📝 Documentation +6/-0

Add audit 1101.0.12 release notes

deps/compliance/audit/CHANGELOG.md


15. deps/compliance/audit/package.json ⚙️ Configuration changes +1/-1

Bump audit package version to 1101.0.12

deps/compliance/audit/package.json


16. deps/compliance/commands/CHANGELOG.md 📝 Documentation +8/-0

Add compliance commands 1101.3.1 release notes

deps/compliance/commands/CHANGELOG.md


17. deps/compliance/commands/package.json ⚙️ Configuration changes +1/-1

Bump compliance commands version to 1101.3.1

deps/compliance/commands/package.json


18. deps/inspection/commands/CHANGELOG.md 📝 Documentation +6/-0

Add inspection commands 1100.3.3 release notes

deps/inspection/commands/CHANGELOG.md


19. deps/inspection/commands/package.json ⚙️ Configuration changes +1/-1

Bump inspection commands version to 1100.3.3

deps/inspection/commands/package.json


20. deps/status/CHANGELOG.md 📝 Documentation +7/-0

Add status 1100.0.21 release notes

deps/status/CHANGELOG.md


21. deps/status/package.json ⚙️ Configuration changes +1/-1

Bump status package version to 1100.0.21

deps/status/package.json


22. engine/pm/commands/CHANGELOG.md 📝 Documentation +9/-0

Add engine pm commands 1101.1.19 release notes

engine/pm/commands/CHANGELOG.md


23. engine/pm/commands/package.json ⚙️ Configuration changes +1/-1

Bump engine pm commands version to 1101.1.19

engine/pm/commands/package.json


24. exec/commands/CHANGELOG.md 📝 Documentation +8/-0

Add exec commands 1100.2.1 release notes

exec/commands/CHANGELOG.md


25. exec/commands/package.json ⚙️ Configuration changes +1/-1

Bump exec commands version to 1100.2.1

exec/commands/package.json


26. global/commands/CHANGELOG.md 📝 Documentation +6/-0

Add global commands 1100.0.24 release notes

global/commands/CHANGELOG.md


27. global/commands/package.json ⚙️ Configuration changes +1/-1

Bump global commands version to 1100.0.24

global/commands/package.json


28. installing/commands/CHANGELOG.md 📝 Documentation +11/-0

Add installing commands 1100.7.1 release notes

installing/commands/CHANGELOG.md


29. installing/commands/package.json ⚙️ Configuration changes +1/-1

Bump installing commands version to 1100.7.1

installing/commands/package.json


30. installing/deps-installer/CHANGELOG.md 📝 Documentation +11/-0

Add deps installer 1101.6.1 release notes

installing/deps-installer/CHANGELOG.md


31. installing/deps-installer/package.json ⚙️ Configuration changes +1/-1

Bump deps installer version to 1101.6.1

installing/deps-installer/package.json


32. installing/deps-resolver/CHANGELOG.md 📝 Documentation +8/-0

Add deps resolver 1100.1.6 release notes

installing/deps-resolver/CHANGELOG.md


33. installing/deps-resolver/package.json ⚙️ Configuration changes +1/-1

Bump deps resolver version to 1100.1.6

installing/deps-resolver/package.json


34. installing/deps-restorer/CHANGELOG.md 📝 Documentation +6/-0

Add deps restorer 1101.1.8 release notes

installing/deps-restorer/CHANGELOG.md


35. installing/deps-restorer/package.json ⚙️ Configuration changes +1/-1

Bump deps restorer version to 1101.1.8

installing/deps-restorer/package.json


36. installing/env-installer/CHANGELOG.md 📝 Documentation +9/-0

Add env installer 1101.1.5 release notes

installing/env-installer/CHANGELOG.md


37. installing/env-installer/package.json ⚙️ Configuration changes +1/-1

Bump env installer version to 1101.1.5

installing/env-installer/package.json


38. lockfile/make-dedicated-lockfile/CHANGELOG.md 📝 Documentation +7/-0

Add dedicated lockfile 1100.0.15 release notes

lockfile/make-dedicated-lockfile/CHANGELOG.md


39. lockfile/make-dedicated-lockfile/package.json ⚙️ Configuration changes +1/-1

Bump dedicated lockfile version to 1100.0.15

lockfile/make-dedicated-lockfile/package.json


40. patching/commands/CHANGELOG.md 📝 Documentation +6/-0

Add patching commands 1100.1.1 release notes

patching/commands/CHANGELOG.md


41. patching/commands/package.json ⚙️ Configuration changes +1/-1

Bump patching commands version to 1100.1.1

patching/commands/package.json


42. pnpm-lock.yaml Dependencies +8/-8

Update promise-share dependency to 2.0.1

pnpm-lock.yaml


43. pnpm-workspace.yaml ⚙️ Configuration changes +1/-1

Update promise-share catalog version to 2.0.1

pnpm-workspace.yaml


44. pnpm/CHANGELOG.md 📝 Documentation +12/-0

Add pnpm 11.5.1 release notes

pnpm/CHANGELOG.md


45. pnpm/artifacts/darwin-arm64/package.json ⚙️ Configuration changes +1/-1

Bump macOS ARM64 artifact version to 11.5.1

pnpm/artifacts/darwin-arm64/package.json


46. pnpm/artifacts/exe/package.json ⚙️ Configuration changes +1/-1

Bump exe artifact version to 11.5.1

pnpm/artifacts/exe/package.json


47. pnpm/artifacts/linux-arm64-musl/package.json ⚙️ Configuration changes +1/-1

Bump Linux ARM64 musl artifact version to 11.5.1

pnpm/artifacts/linux-arm64-musl/package.json


48. pnpm/artifacts/linux-arm64/package.json ⚙️ Configuration changes +1/-1

Bump Linux ARM64 artifact version to 11.5.1

pnpm/artifacts/linux-arm64/package.json


49. pnpm/artifacts/linux-x64-musl/package.json ⚙️ Configuration changes +1/-1

Bump Linux x64 musl artifact version to 11.5.1

pnpm/artifacts/linux-x64-musl/package.json


50. pnpm/artifacts/linux-x64/package.json ⚙️ Configuration changes +1/-1

Bump Linux x64 artifact version to 11.5.1

pnpm/artifacts/linux-x64/package.json


51. pnpm/artifacts/win32-arm64/package.json ⚙️ Configuration changes +1/-1

Bump Windows ARM64 artifact version to 11.5.1

pnpm/artifacts/win32-arm64/package.json


52. pnpm/artifacts/win32-x64/package.json ⚙️ Configuration changes +1/-1

Bump Windows x64 artifact version to 11.5.1

pnpm/artifacts/win32-x64/package.json


53. pnpm/package.json ⚙️ Configuration changes +1/-1

Bump pnpm version to 11.5.1

pnpm/package.json


54. releasing/commands/CHANGELOG.md 📝 Documentation +8/-0

Add releasing commands 1100.4.1 release notes

releasing/commands/CHANGELOG.md


55. releasing/commands/package.json ⚙️ Configuration changes +1/-1

Bump releasing commands version to 1100.4.1

releasing/commands/package.json


56. releasing/exportable-manifest/CHANGELOG.md 📝 Documentation +6/-0

Add exportable manifest 1100.1.2 release notes

releasing/exportable-manifest/CHANGELOG.md


57. releasing/exportable-manifest/package.json ⚙️ Configuration changes +1/-1

Bump exportable manifest version to 1100.1.2

releasing/exportable-manifest/package.json


58. workspace/state/CHANGELOG.md 📝 Documentation +6/-0

Add workspace state 1100.0.18 release notes

workspace/state/CHANGELOG.md


59. workspace/state/package.json ⚙️ Configuration changes +1/-1

Bump workspace state version to 1100.0.18

workspace/state/package.json


Grey Divider

Qodo Logo

@zkochan zkochan merged commit 0f509d0 into main Jun 2, 2026
13 of 14 checks passed
@zkochan zkochan deleted the release-11-5-1 branch June 2, 2026 06:07

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

This PR cuts the pnpm 11.5.1 patch release by updating package versions and changelogs across the workspace, updating the workspace catalog/lockfile for a dependency bump, and archiving released changesets.

Changes:

  • Bump pnpm and multiple workspace package versions for the 11.5.1 release.
  • Add new release entries to package changelogs and remove the now-released .changeset/*.md files (recorded in .changeset-released/).
  • Update the workspace catalog + lockfile for promise-share ^2.0.0^2.0.1.

Reviewed changes

Copilot reviewed 58 out of 59 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
workspace/state/package.json Bump @pnpm/workspace.state version for release.
workspace/state/CHANGELOG.md Add 1100.0.18 release notes.
releasing/exportable-manifest/package.json Bump @pnpm/releasing.exportable-manifest version for release.
releasing/exportable-manifest/CHANGELOG.md Add 1100.1.2 release notes.
releasing/commands/package.json Bump @pnpm/releasing.commands version for release.
releasing/commands/CHANGELOG.md Add 1100.4.1 release notes / dependency updates.
pnpm/package.json Bump pnpm to 11.5.1.
pnpm/CHANGELOG.md Add 11.5.1 release notes.
pnpm/artifacts/win32-x64/package.json Bump Windows x64 artifact package version to 11.5.1.
pnpm/artifacts/win32-arm64/package.json Bump Windows arm64 artifact package version to 11.5.1.
pnpm/artifacts/linux-x64/package.json Bump Linux x64 artifact package version to 11.5.1.
pnpm/artifacts/linux-x64-musl/package.json Bump Linux x64 musl artifact package version to 11.5.1.
pnpm/artifacts/linux-arm64/package.json Bump Linux arm64 artifact package version to 11.5.1.
pnpm/artifacts/linux-arm64-musl/package.json Bump Linux arm64 musl artifact package version to 11.5.1.
pnpm/artifacts/exe/package.json Bump standalone exe artifact package version to 11.5.1.
pnpm/artifacts/darwin-arm64/package.json Bump macOS arm64 artifact package version to 11.5.1.
pnpm-workspace.yaml Update catalog dependency promise-share to ^2.0.1.
pnpm-lock.yaml Lockfile update reflecting promise-share@2.0.1 and related snapshot changes.
patching/commands/package.json Bump @pnpm/patching.commands version for release.
patching/commands/CHANGELOG.md Add 1100.1.1 entry (dependency bump).
lockfile/make-dedicated-lockfile/package.json Bump @pnpm/lockfile.make-dedicated-lockfile version for release.
lockfile/make-dedicated-lockfile/CHANGELOG.md Add 1100.0.15 entry (dependency bump).
installing/env-installer/package.json Bump @pnpm/installing.env-installer version for release.
installing/env-installer/CHANGELOG.md Add 1101.1.5 entry (dependency updates).
installing/deps-restorer/package.json Bump @pnpm/installing.deps-restorer version for release.
installing/deps-restorer/CHANGELOG.md Add 1101.1.8 entry (user-agent change).
installing/deps-resolver/package.json Bump @pnpm/installing.deps-resolver version for release.
installing/deps-resolver/CHANGELOG.md Add 1100.1.6 entry (integrity/peer resolution fixes).
installing/deps-installer/package.json Bump @pnpm/installing.deps-installer version for release.
installing/deps-installer/CHANGELOG.md Add 1101.6.1 entry (dependency updates).
installing/commands/package.json Bump @pnpm/installing.commands version for release.
installing/commands/CHANGELOG.md Add 1100.7.1 entry (dependency updates).
global/commands/package.json Bump @pnpm/global.commands version for release.
global/commands/CHANGELOG.md Add 1100.0.24 entry (dependency bump).
exec/commands/package.json Bump @pnpm/exec.commands version for release.
exec/commands/CHANGELOG.md Add 1100.2.1 entry (dependency bumps).
engine/pm/commands/package.json Bump @pnpm/engine.pm.commands version for release.
engine/pm/commands/CHANGELOG.md Add 1101.1.19 entry (dependency updates).
deps/status/package.json Bump @pnpm/deps.status version for release.
deps/status/CHANGELOG.md Add 1100.0.21 entry (dependency bump).
deps/inspection/commands/package.json Bump @pnpm/deps.inspection.commands version for release.
deps/inspection/commands/CHANGELOG.md Add 1100.3.3 entry (dependency bump).
deps/compliance/commands/package.json Bump @pnpm/deps.compliance.commands version for release.
deps/compliance/commands/CHANGELOG.md Add 1101.3.1 entry (dependency updates).
deps/compliance/audit/package.json Bump @pnpm/deps.compliance.audit version for release.
deps/compliance/audit/CHANGELOG.md Add 1101.0.12 entry (audit perf change).
building/commands/package.json Bump @pnpm/building.commands version for release.
building/commands/CHANGELOG.md Add 1100.1.1 entry (dependency bump).
agent/server/package.json Bump pnpm-agent version for release.
agent/server/CHANGELOG.md Add 0.0.21 entry (license note + dependency bump).
.changeset/twelve-peers-diamond.md Remove released changeset (archived via .changeset-released).
.changeset/steady-optional-peers.md Remove released changeset (archived via .changeset-released).
.changeset/publish-normalize-repository.md Remove released changeset (archived via .changeset-released).
.changeset/preserve-tarball-integrity-on-reresolution.md Remove released changeset (archived via .changeset-released).
.changeset/pnpm-agent-shield-license.md Remove released changeset (archived via .changeset-released).
.changeset/lucky-user-agent.md Remove released changeset (archived via .changeset-released).
.changeset/fix-workspace-state-race.md Remove released changeset (archived via .changeset-released).
.changeset/audit-path-traversal-performance.md Remove released changeset (archived via .changeset-released).
.changeset-released/release-11-5-1.txt Record released changeset IDs for the 11.5.1 release.
Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 1 to +3
# @pnpm/exportable-manifest

## 1100.1.2
Comment thread agent/server/CHANGELOG.md
Comment on lines +7 to +8
- d99b725: `pnpm-agent` is now source-available under the [PolyForm Shield License 1.0.0](https://polyformproject.org/licenses/shield/1.0.0) instead of MIT. It may be run, modified, and self-hosted for any purpose except providing a product that competes with it.
- @pnpm/installing.deps-installer@1101.6.1
@coderabbitai coderabbitai Bot mentioned this pull request Jun 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

2 participants