chore(release): 11.0.0-rc.4

This commit is contained in:
Zoltan Kochan
2026-04-21 15:03:02 +02:00
parent ba791a3a2f
commit fd437ded13
187 changed files with 918 additions and 122 deletions

View File

@@ -1,11 +0,0 @@
---
"@pnpm/fetching.binary-fetcher": minor
"@pnpm/fetching.fetcher-base": minor
"@pnpm/fetching.tarball-fetcher": minor
"@pnpm/engine.runtime.node-resolver": major
"@pnpm/store.cafs": minor
"@pnpm/worker": minor
"pnpm": major
---
Installing a Node.js runtime via `node@runtime:<version>` (including `pnpm env use` and `pnpm runtime set node`) no longer extracts the bundled `npm`, `npx`, and `corepack` from the Node.js archive. This cuts roughly half of the files pnpm has to hash, write to the CAS, and link during installation, making runtime installs noticeably faster. Users who still need `npm` can install it as a separate package.

View File

@@ -1,8 +0,0 @@
---
"@pnpm/releasing.commands": minor
"pnpm": minor
---
`pnpm pack-app`: replaced the `--node-version` flag with `--runtime`, which takes a `<name>@<version>` spec (e.g. `--runtime node@22.0.0`). The corresponding `pnpm.app.nodeVersion` key in package.json was renamed to `pnpm.app.runtime` with the same syntax. Only `node` is supported today; the prefix leaves room for future runtimes (`bun`, `deno`).
The previous `--node-version` flag silently inherited from pnpm's global `node-version` rc setting (which controls which Node runs user scripts), causing the wrong Node build to be embedded in SEAs for users who had that rc key set.

View File

@@ -1,7 +0,0 @@
---
"@pnpm/engine.pm.commands": patch
"@pnpm/exe": patch
"pnpm": patch
---
Restored the legacy `@pnpm/{macos,win,linux,linuxstatic}-{x64,arm64}` npm names for the platform-specific optional dependencies of `@pnpm/exe`, reverting the scope-nested `@pnpm/exe.<platform>-<arch>[-musl]` rename from [#11316](https://github.com/pnpm/pnpm/pull/11316) on the published package names only — the workspace directory layout (`pnpm/artifacts/<platform>-<arch>[-musl]/`) and the GitHub release asset filenames stay on the new scheme. The rename broke `pnpm self-update` from v10, which looks up the platform child by its legacy name. `linkExePlatformBinary` now checks for both schemes so a later rename can ship without a v10-compatibility hazard.

View File

@@ -1,5 +1,11 @@
# @pnpm-private/updater
## 1100.0.4
### Patch Changes
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm-private/updater",
"version": "1100.0.3",
"version": "1100.0.4",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,5 +1,11 @@
# @pnpm/assert-project
## 1100.0.3
### Patch Changes
- @pnpm/assert-store@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/assert-project",
"description": "Utils for testing projects that use pnpm",
"version": "1100.0.2",
"version": "1100.0.3",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",

View File

@@ -1,5 +1,12 @@
# @pnpm/assert-store
## 1100.0.3
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
## 1100.0.2
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/assert-store",
"description": "Utils for testing pnpm store",
"version": "1100.0.2",
"version": "1100.0.3",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,12 @@
# @pnpm/jest-config
## 1100.0.3
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/worker@1100.1.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/jest-config",
"version": "1100.0.2",
"version": "1100.0.3",
"private": true,
"main": "jest-preset.js",
"type": "module",

View File

@@ -1,5 +1,11 @@
# @pnpm/prepare
## 1100.0.3
### Patch Changes
- @pnpm/assert-project@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/prepare",
"version": "1100.0.2",
"version": "1100.0.3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",

View File

@@ -1,5 +1,13 @@
# @pnpm/agent.client
## 1.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
- @pnpm/worker@1100.1.0
## 0.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/agent.client",
"version": "0.0.1",
"version": "1.0.0",
"description": "Client for pnpm agent server — sends store state, receives resolved lockfile and missing files",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,16 @@
# pnpm-agent
## 0.0.2
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
- @pnpm/installing.client@1100.0.4
- @pnpm/store.controller@1101.0.0
- @pnpm/installing.deps-installer@1101.0.0
- @pnpm/lockfile.fs@1100.0.3
## 0.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "pnpm-agent",
"version": "0.0.1",
"version": "0.0.2",
"description": "pnpm agent server for server-side resolution and store-aware downloads",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/auth.commands
## 1100.0.4
### Patch Changes
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/auth.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for authentication with npm registries",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,20 @@
# @pnpm/building.after-install
## 1101.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
- @pnpm/worker@1100.1.0
- @pnpm/store.controller-types@1100.0.3
- @pnpm/store.connection-manager@1100.0.4
- @pnpm/exec.lifecycle@1100.0.4
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/installing.context@1100.0.3
- @pnpm/deps.graph-hasher@1100.1.1
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/building.after-install",
"version": "1100.0.3",
"version": "1101.0.0",
"description": "Rebuild packages that are already installed by running their lifecycle scripts",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,14 @@
# @pnpm/building.commands
## 1100.0.4
### Patch Changes
- @pnpm/building.after-install@1101.0.0
- @pnpm/installing.commands@1100.1.2
- @pnpm/store.connection-manager@1100.0.4
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/building.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for rebuilding and managing dependency builds",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,18 @@
# @pnpm/building.during-install
## 1101.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/worker@1100.1.0
- @pnpm/store.controller-types@1100.0.3
- @pnpm/exec.lifecycle@1100.0.4
- @pnpm/deps.graph-hasher@1100.1.1
- @pnpm/config.reader@1101.1.1
- @pnpm/fs.hard-link-dir@1100.0.0
- @pnpm/patching.apply-patch@1100.0.0
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/building.during-install",
"version": "1100.0.3",
"version": "1101.0.0",
"description": "Build packages in node_modules",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,14 @@
# @pnpm/cache.api
## 1100.0.4
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
- @pnpm/resolving.npm-resolver@1101.0.0
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cache.api",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "API for controlling the cache",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/cache.commands
## 1100.0.4
### Patch Changes
- @pnpm/cache.api@1100.0.4
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cache.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for controlling the cache",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/cli.commands
## 1100.0.4
### Patch Changes
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cli.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for pnpm CLI",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/default-reporter
## 1100.0.4
### Patch Changes
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cli.default-reporter",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "The default reporter of pnpm",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/plugin-commands-config
## 1100.0.4
### Patch Changes
- @pnpm/config.reader@1101.1.1
- @pnpm/workspace.workspace-manifest-writer@1100.0.2
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/config.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for reading and writing settings to/from config files",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/config
## 1101.1.1
### Patch Changes
- @pnpm/hooks.pnpmfile@1100.0.3
## 1101.1.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/config.reader",
"version": "1101.1.0",
"version": "1101.1.1",
"description": "Gets configuration options for pnpm",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/audit
## 1101.0.2
### Patch Changes
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
## 1101.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.compliance.audit",
"version": "1101.0.1",
"version": "1101.0.2",
"description": "Audit a lockfile",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,17 @@
# @pnpm/deps.compliance.commands
## 1101.1.1
### Patch Changes
- @pnpm/deps.compliance.license-scanner@1100.0.4
- @pnpm/deps.compliance.sbom@1100.0.4
- @pnpm/installing.commands@1100.1.2
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/deps.compliance.audit@1101.0.2
- @pnpm/lockfile.fs@1100.0.3
- @pnpm/config.reader@1101.1.1
## 1101.1.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.compliance.commands",
"version": "1101.1.0",
"version": "1101.1.1",
"description": "pnpm commands for audit, licenses, and sbom",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,13 @@
# @pnpm/license-scanner
## 1100.0.4
### Patch Changes
- @pnpm/store.pkg-finder@1100.0.4
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.compliance.license-scanner",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Check for licenses packages",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/deps.compliance.sbom
## 1100.0.4
### Patch Changes
- @pnpm/store.pkg-finder@1100.0.4
- @pnpm/lockfile.utils@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.compliance.sbom",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Generate SBOM from pnpm lockfile",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,15 @@
# @pnpm/deps.graph-builder
## 1100.0.3
### Patch Changes
- @pnpm/hooks.types@1100.0.3
- @pnpm/store.controller-types@1100.0.3
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/deps.graph-hasher@1100.1.1
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.graph-builder",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "A package for building a dependency graph from a lockfile",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/calc-dep-state
## 1100.1.1
### Patch Changes
- @pnpm/lockfile.utils@1100.0.3
## 1100.1.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.graph-hasher",
"version": "1100.1.0",
"version": "1100.1.1",
"description": "Calculates the state of a dependency",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,18 @@
# @pnpm/deps.inspection.commands
## 1100.1.3
### Patch Changes
- @pnpm/resolving.default-resolver@1100.0.4
- @pnpm/resolving.npm-resolver@1101.0.0
- @pnpm/deps.inspection.outdated@1100.0.4
- @pnpm/deps.inspection.list@1100.0.4
- @pnpm/global.commands@1100.0.4
- @pnpm/lockfile.fs@1100.0.3
- @pnpm/config.reader@1101.1.1
- @pnpm/deps.inspection.peers-checker@1100.0.3
## 1100.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.inspection.commands",
"version": "1100.1.2",
"version": "1100.1.3",
"description": "The list, ll, why, and outdated commands of pnpm",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/list
## 1100.0.4
### Patch Changes
- @pnpm/deps.inspection.tree-builder@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.inspection.list",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "List installed packages in a symlinked `node_modules`",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,14 @@
# @pnpm/outdated
## 1100.0.4
### Patch Changes
- @pnpm/installing.client@1100.0.4
- @pnpm/resolving.npm-resolver@1101.0.0
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.inspection.outdated",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Check for outdated packages",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/deps.inspection.peers-checker
## 1100.0.3
### Patch Changes
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.inspection.peers-checker",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Check for unmet and missing peer dependency issues from the lockfile",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,14 @@
# @pnpm/reviewing.dependencies-hierarchy
## 1100.0.3
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/store.cafs@1100.1.0
- @pnpm/lockfile.utils@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.inspection.tree-builder",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Creates a dependencies hierarchy for a symlinked `node_modules`",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,16 @@
# @pnpm/deps.status
## 1100.0.4
### Patch Changes
- @pnpm/installing.context@1100.0.3
- @pnpm/lockfile.fs@1100.0.3
- @pnpm/lockfile.verification@1100.0.3
- @pnpm/config.reader@1101.1.1
- @pnpm/lockfile.settings-checker@1100.0.3
- @pnpm/workspace.state@1100.0.4
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/deps.status",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Check dependencies status",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,20 @@
# @pnpm/engine.pm.commands
## 1101.0.2
### Patch Changes
- ef4ef7b: Restored the legacy `@pnpm/{macos,win,linux,linuxstatic}-{x64,arm64}` npm names for the platform-specific optional dependencies of `@pnpm/exe`, reverting the scope-nested `@pnpm/exe.<platform>-<arch>[-musl]` rename from [#11316](https://github.com/pnpm/pnpm/pull/11316) on the published package names only — the workspace directory layout (`pnpm/artifacts/<platform>-<arch>[-musl]/`) and the GitHub release asset filenames stay on the new scheme. The rename broke `pnpm self-update` from v10, which looks up the platform child by its legacy name. `linkExePlatformBinary` now checks for both schemes so a later rename can ship without a v10-compatibility hazard.
- @pnpm/installing.client@1100.0.4
- @pnpm/store.controller@1101.0.0
- @pnpm/installing.deps-restorer@1101.0.0
- @pnpm/resolving.npm-resolver@1101.0.0
- @pnpm/installing.env-installer@1101.0.0
- @pnpm/store.connection-manager@1100.0.4
- @pnpm/global.commands@1100.0.4
- @pnpm/deps.graph-hasher@1100.1.1
- @pnpm/config.reader@1101.1.1
## 1101.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/engine.pm.commands",
"version": "1101.0.1",
"version": "1101.0.2",
"description": "pnpm commands for self-updating and setting up pnpm",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,15 @@
# @pnpm/resolving.bun-resolver
## 1101.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.binary-fetcher@1101.0.0
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/worker@1100.1.0
- @pnpm/resolving.npm-resolver@1101.0.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/engine.runtime.bun-resolver",
"version": "1100.0.2",
"version": "1101.0.0",
"description": "Resolves the Bun runtime",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,13 @@
# @pnpm/engine.runtime.commands
## 1100.0.4
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/engine.runtime.node-resolver@1101.0.0
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/engine.runtime.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "pnpm commands for managing runtimes",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,15 @@
# @pnpm/resolving.deno-resolver
## 1101.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.binary-fetcher@1101.0.0
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/worker@1100.1.0
- @pnpm/resolving.npm-resolver@1101.0.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/engine.runtime.deno-resolver",
"version": "1100.0.2",
"version": "1101.0.0",
"description": "Resolves the Deno runtime",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,15 @@
# @pnpm/node.resolver
## 1101.0.0
### Major Changes
- 421317c: Installing a Node.js runtime via `node@runtime:<version>` (including `pnpm env use` and `pnpm runtime set node`) no longer extracts the bundled `npm`, `npx`, and `corepack` from the Node.js archive. This cuts roughly half of the files pnpm has to hash, write to the CAS, and link during installation, making runtime installs noticeably faster. Users who still need `npm` can install it as a separate package.
### Patch Changes
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/engine.runtime.node-resolver",
"version": "1100.0.3",
"version": "1101.0.0",
"description": "Resolves a Node.js version specifier to an exact Node.js version",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,18 @@
# @pnpm/plugin-commands-script-runners
## 1100.0.4
### Patch Changes
- @pnpm/installing.client@1100.0.4
- @pnpm/engine.runtime.commands@1100.0.4
- @pnpm/installing.commands@1100.1.2
- @pnpm/exec.lifecycle@1100.0.4
- @pnpm/workspace.injected-deps-syncer@1100.0.4
- @pnpm/config.reader@1101.1.1
- @pnpm/deps.status@1100.0.4
- @pnpm/crypto.hash@1100.0.0
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/exec.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Commands for running scripts",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/lifecycle
## 1100.0.4
### Patch Changes
- @pnpm/fetching.directory-fetcher@1100.0.4
- @pnpm/store.controller-types@1100.0.3
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/exec.lifecycle",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Package lifecycle hook runner",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/prepare-package
## 1100.0.4
### Patch Changes
- @pnpm/exec.lifecycle@1100.0.4
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/exec.prepare-package",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Prepares a Git-hosted package",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,17 @@
# @pnpm/fetching.binary-fetcher
## 1101.0.0
### Minor Changes
- 421317c: Installing a Node.js runtime via `node@runtime:<version>` (including `pnpm env use` and `pnpm runtime set node`) no longer extracts the bundled `npm`, `npx`, and `corepack` from the Node.js archive. This cuts roughly half of the files pnpm has to hash, write to the CAS, and link during installation, making runtime installs noticeably faster. Users who still need `npm` can install it as a separate package.
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/worker@1100.1.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.binary-fetcher",
"version": "1100.0.2",
"version": "1101.0.0",
"description": "A fetcher for binary archives",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/directory-fetcher
## 1100.0.4
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.directory-fetcher",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "A fetcher for local directory packages",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/fetcher-base
## 1100.1.0
### Minor Changes
- 421317c: Installing a Node.js runtime via `node@runtime:<version>` (including `pnpm env use` and `pnpm runtime set node`) no longer extracts the bundled `npm`, `npx`, and `corepack` from the Node.js archive. This cuts roughly half of the files pnpm has to hash, write to the CAS, and link during installation, making runtime installs noticeably faster. Users who still need `npm` can install it as a separate package.
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.fetcher-base",
"version": "1100.0.2",
"version": "1100.1.0",
"description": "Types for pnpm-compatible fetchers",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,14 @@
# @pnpm/git-fetcher
## 1101.0.0
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/worker@1100.1.0
- @pnpm/exec.prepare-package@1100.0.4
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.git-fetcher",
"version": "1100.0.3",
"version": "1101.0.0",
"description": "A fetcher for git-hosted packages",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,13 @@
# @pnpm/pick-fetcher
## 1100.0.3
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/hooks.types@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.pick-fetcher",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Pick a package fetcher by type",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,18 @@
# @pnpm/tarball-fetcher
## 1101.0.0
### Minor Changes
- 421317c: Installing a Node.js runtime via `node@runtime:<version>` (including `pnpm env use` and `pnpm runtime set node`) no longer extracts the bundled `npm`, `npx`, and `corepack` from the Node.js archive. This cuts roughly half of the files pnpm has to hash, write to the CAS, and link during installation, making runtime installs noticeably faster. Users who still need `npm` can install it as a separate package.
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
- @pnpm/worker@1100.1.0
- @pnpm/exec.prepare-package@1100.0.4
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetching.tarball-fetcher",
"version": "1100.0.3",
"version": "1101.0.0",
"description": "Fetcher for packages hosted as tarballs",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,11 @@
# @pnpm/fs.indexed-pkg-importer
## 1100.0.3
### Patch Changes
- @pnpm/store.controller-types@1100.0.3
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fs.indexed-pkg-importer",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Replicates indexed directories using hard links, copies, or cloning",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,13 @@
# @pnpm/global.commands
## 1100.0.4
### Patch Changes
- @pnpm/installing.deps-installer@1101.0.0
- @pnpm/store.connection-manager@1100.0.4
- @pnpm/config.reader@1101.1.1
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/global.commands",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Global package command handlers for pnpm",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,13 @@
# @pnpm/pnpmfile
## 1100.0.3
### Patch Changes
- @pnpm/hooks.types@1100.0.3
- @pnpm/store.controller-types@1100.0.3
- @pnpm/crypto.hash@1100.0.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/hooks.pnpmfile",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Reading a .pnpmfile.cjs",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,12 @@
# @pnpm/hooks.types
## 1100.0.3
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.fetcher-base@1100.1.0
## 1100.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/hooks.types",
"version": "1100.0.2",
"version": "1100.0.3",
"description": "Types for hooks",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,18 @@
# @pnpm/client
## 1100.0.4
### Patch Changes
- Updated dependencies [421317c]
- @pnpm/fetching.binary-fetcher@1101.0.0
- @pnpm/fetching.tarball-fetcher@1101.0.0
- @pnpm/engine.runtime.node-resolver@1101.0.0
- @pnpm/fetching.directory-fetcher@1100.0.4
- @pnpm/fetching.git-fetcher@1101.0.0
- @pnpm/hooks.types@1100.0.3
- @pnpm/resolving.default-resolver@1100.0.4
## 1100.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/installing.client",
"version": "1100.0.3",
"version": "1100.0.4",
"description": "Creates the package resolve and fetch functions",
"keywords": [
"pnpm",

View File

@@ -1,5 +1,25 @@
# @pnpm/plugin-commands-installation
## 1100.1.2
### Patch Changes
- @pnpm/hooks.pnpmfile@1100.0.3
- @pnpm/store.controller@1101.0.0
- @pnpm/building.after-install@1101.0.0
- @pnpm/installing.deps-installer@1101.0.0
- @pnpm/installing.env-installer@1101.0.0
- @pnpm/deps.inspection.outdated@1100.0.4
- @pnpm/store.connection-manager@1100.0.4
- @pnpm/installing.context@1100.0.3
- @pnpm/global.commands@1100.0.4
- @pnpm/workspace.projects-graph@1100.0.3
- @pnpm/config.reader@1101.1.1
- @pnpm/deps.status@1100.0.4
- @pnpm/workspace.projects-filter@1100.0.4
- @pnpm/workspace.state@1100.0.4
- @pnpm/workspace.workspace-manifest-writer@1100.0.2
## 1100.1.1
### Patch Changes

Some files were not shown because too many files have changed in this diff Show More