diff --git a/.meta-updater/package.json b/.meta-updater/package.json index 114217e062..7028b0ff6a 100644 --- a/.meta-updater/package.json +++ b/.meta-updater/package.json @@ -19,14 +19,16 @@ "is-subdir": "catalog:", "load-json-file": "catalog:", "normalize-path": "catalog:", + "semver": "catalog:", "write-json-file": "catalog:" }, "devDependencies": { - "@pnpm-private/updater": "workspace:*" + "@pnpm-private/updater": "workspace:*", + "@types/semver": "catalog:" }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/.meta-updater" } diff --git a/.meta-updater/src/index.ts b/.meta-updater/src/index.ts index c886ac4107..5312f73cb9 100644 --- a/.meta-updater/src/index.ts +++ b/.meta-updater/src/index.ts @@ -8,6 +8,7 @@ import { parsePkgAndParentSelector } from '@pnpm/parse-overrides' import { readWorkspaceManifest } from '@pnpm/workspace.read-manifest' import isSubdir from 'is-subdir' import { loadJsonFileSync } from 'load-json-file' +import semver from 'semver' import normalizePath from 'normalize-path' import { writeJsonFile } from 'write-json-file' @@ -50,7 +51,7 @@ export default async (workspaceDir: string) => { // eslint-disable-line const smallestAllowedLibVersion = Number(pnpmMajorNumber) * 100 const libMajorVersion = Number(manifest.version!.split('.')[0]) if (manifest.name !== CLI_PKG_NAME) { - if (libMajorVersion < smallestAllowedLibVersion || libMajorVersion >= smallestAllowedLibVersion + 100) { + if (!semver.prerelease(pnpmVersion) && (libMajorVersion < smallestAllowedLibVersion || libMajorVersion >= smallestAllowedLibVersion + 100)) { manifest.version = `${smallestAllowedLibVersion}.0.0` } for (const depType of ['dependencies', 'devDependencies', 'optionalDependencies'] as const) { diff --git a/__typecheck__/package.json b/__typecheck__/package.json index 6079c7f749..69de6bb558 100644 --- a/__typecheck__/package.json +++ b/__typecheck__/package.json @@ -8,7 +8,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__typecheck__" } diff --git a/__typings__/package.json b/__typings__/package.json index 417ed966c6..ad7580d28a 100644 --- a/__typings__/package.json +++ b/__typings__/package.json @@ -7,7 +7,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__typings__" } diff --git a/__utils__/assert-project/package.json b/__utils__/assert-project/package.json index bb2acc2a1c..751d08fad7 100644 --- a/__utils__/assert-project/package.json +++ b/__utils__/assert-project/package.json @@ -28,7 +28,7 @@ "homepage": "https://github.com/pnpm/pnpm/blob/master/privatePackages/assert-project#readme", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "engines": { diff --git a/__utils__/assert-store/package.json b/__utils__/assert-store/package.json index 6ee5b5db49..f4b693baf9 100644 --- a/__utils__/assert-store/package.json +++ b/__utils__/assert-store/package.json @@ -17,7 +17,7 @@ "homepage": "https://github.com/pnpm/pnpm/blob/master/privatePackages/assert-store#readme", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "engines": { diff --git a/__utils__/eslint-config/package.json b/__utils__/eslint-config/package.json index 40e94fad78..522add0830 100644 --- a/__utils__/eslint-config/package.json +++ b/__utils__/eslint-config/package.json @@ -18,7 +18,7 @@ "homepage": "https://pnpm.io", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "engines": { diff --git a/__utils__/get-release-text/package.json b/__utils__/get-release-text/package.json index 28e5a46cd7..ba4def14c6 100644 --- a/__utils__/get-release-text/package.json +++ b/__utils__/get-release-text/package.json @@ -18,7 +18,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/get-release-text" } diff --git a/__utils__/jest-config/package.json b/__utils__/jest-config/package.json index 06f550cdd7..eb04213a39 100644 --- a/__utils__/jest-config/package.json +++ b/__utils__/jest-config/package.json @@ -16,7 +16,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/jest-config" } diff --git a/__utils__/prepare-temp-dir/package.json b/__utils__/prepare-temp-dir/package.json index 450aea4f1d..36526ed863 100644 --- a/__utils__/prepare-temp-dir/package.json +++ b/__utils__/prepare-temp-dir/package.json @@ -16,7 +16,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/prepare-temp-dir" } diff --git a/__utils__/prepare/package.json b/__utils__/prepare/package.json index b3e68ee99a..314256cf48 100644 --- a/__utils__/prepare/package.json +++ b/__utils__/prepare/package.json @@ -24,7 +24,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/prepare" } diff --git a/__utils__/scripts/package.json b/__utils__/scripts/package.json index 1b12a572b4..af47e22736 100644 --- a/__utils__/scripts/package.json +++ b/__utils__/scripts/package.json @@ -18,7 +18,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/__utils__/scripts" } diff --git a/__utils__/test-fixtures/package.json b/__utils__/test-fixtures/package.json index e98602a1be..91b47c2393 100644 --- a/__utils__/test-fixtures/package.json +++ b/__utils__/test-fixtures/package.json @@ -22,7 +22,7 @@ "homepage": "https://github.com/pnpm/pnpm/blob/master/privatePackages/test-fixtures#readme", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "engines": { diff --git a/__utils__/test-ipc-server/package.json b/__utils__/test-ipc-server/package.json index be8684b26f..268b7913b6 100644 --- a/__utils__/test-ipc-server/package.json +++ b/__utils__/test-ipc-server/package.json @@ -21,7 +21,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "jest": { "preset": "@pnpm/jest-config" diff --git a/__utils__/tsconfig/package.json b/__utils__/tsconfig/package.json index 3a91701ca0..af90b0b879 100644 --- a/__utils__/tsconfig/package.json +++ b/__utils__/tsconfig/package.json @@ -20,7 +20,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "engines": { "node": ">=14.6" diff --git a/builder/policy/package.json b/builder/policy/package.json index d45420c812..642fe36b54 100644 --- a/builder/policy/package.json +++ b/builder/policy/package.json @@ -4,7 +4,7 @@ "description": "Create a function for filtering out dependencies that are not allowed to be built", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/cache/api/package.json b/cache/api/package.json index 3da3fe4e8d..96e9f1903c 100644 --- a/cache/api/package.json +++ b/cache/api/package.json @@ -4,7 +4,7 @@ "description": "API for controlling the cache", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "cache" ], "license": "MIT", diff --git a/cache/commands/package.json b/cache/commands/package.json index 4263ad9974..9226504033 100644 --- a/cache/commands/package.json +++ b/cache/commands/package.json @@ -4,7 +4,7 @@ "description": "Commands for controlling the cache", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "cache" ], "license": "MIT", diff --git a/catalogs/config/package.json b/catalogs/config/package.json index 1728e50db1..069b00029a 100644 --- a/catalogs/config/package.json +++ b/catalogs/config/package.json @@ -4,7 +4,7 @@ "description": "Create a normalized catalogs config from pnpm-workspace.yaml contents.", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/catalogs/protocol-parser/package.json b/catalogs/protocol-parser/package.json index bf11cfa594..48a1b03150 100644 --- a/catalogs/protocol-parser/package.json +++ b/catalogs/protocol-parser/package.json @@ -4,7 +4,7 @@ "description": "Parse catalog protocol specifiers and return the catalog name.", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/catalogs/resolver/package.json b/catalogs/resolver/package.json index 8e40225572..037da9efc5 100644 --- a/catalogs/resolver/package.json +++ b/catalogs/resolver/package.json @@ -4,7 +4,7 @@ "description": "Dereferences catalog protocol specifiers into usable specifiers.", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/catalogs/types/package.json b/catalogs/types/package.json index 115ff1d1a5..1caac7a15a 100644 --- a/catalogs/types/package.json +++ b/catalogs/types/package.json @@ -4,7 +4,7 @@ "description": "Types related to the pnpm catalogs feature.", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/cli/cli-meta/package.json b/cli/cli-meta/package.json index 6272f2e1fb..2b7ecfbe26 100644 --- a/cli/cli-meta/package.json +++ b/cli/cli-meta/package.json @@ -4,7 +4,7 @@ "description": "Reads the metainfo of the currently running pnpm instance", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/cli/cli-utils/package.json b/cli/cli-utils/package.json index 48beb45fee..bc289e3dc1 100644 --- a/cli/cli-utils/package.json +++ b/cli/cli-utils/package.json @@ -4,7 +4,7 @@ "description": "Utils for pnpm commands", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/cli/command/package.json b/cli/command/package.json index 7c188b4ccd..eee3a9f610 100644 --- a/cli/command/package.json +++ b/cli/command/package.json @@ -4,7 +4,7 @@ "description": "Types and utils for pnpm commands", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/cli/common-cli-options-help/package.json b/cli/common-cli-options-help/package.json index a6c4b419b2..ffa1b0da02 100644 --- a/cli/common-cli-options-help/package.json +++ b/cli/common-cli-options-help/package.json @@ -4,7 +4,7 @@ "description": "Help for some common CLI options", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/cli/default-reporter/package.json b/cli/default-reporter/package.json index b8b1b338b5..7c09271b70 100644 --- a/cli/default-reporter/package.json +++ b/cli/default-reporter/package.json @@ -4,7 +4,7 @@ "description": "The default reporter of pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-reporter" ], "license": "MIT", diff --git a/cli/parse-cli-args/package.json b/cli/parse-cli-args/package.json index 7af6f3f58d..736acc3852 100644 --- a/cli/parse-cli-args/package.json +++ b/cli/parse-cli-args/package.json @@ -4,7 +4,7 @@ "description": "Parses the CLI args passed to pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/completion/plugin-commands-completion/package.json b/completion/plugin-commands-completion/package.json index 6cdfd2ef38..fd7b5bf89d 100644 --- a/completion/plugin-commands-completion/package.json +++ b/completion/plugin-commands-completion/package.json @@ -4,7 +4,7 @@ "description": "Commands for shell completions", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/config/config-writer/package.json b/config/config-writer/package.json index e2f72a95c3..ff3b12c645 100644 --- a/config/config-writer/package.json +++ b/config/config-writer/package.json @@ -4,7 +4,7 @@ "description": "Functions for updating the configuration settings", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "config" ], "license": "MIT", diff --git a/config/config/package.json b/config/config/package.json index a56e30f3e5..6fa248985a 100644 --- a/config/config/package.json +++ b/config/config/package.json @@ -4,7 +4,7 @@ "description": "Gets configuration options for pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "config" ], "license": "MIT", diff --git a/config/deps-installer/package.json b/config/deps-installer/package.json index ae4a2640c3..82c66abdfe 100644 --- a/config/deps-installer/package.json +++ b/config/deps-installer/package.json @@ -4,7 +4,7 @@ "description": "Installer for configurational dependencies", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "config" ], "license": "MIT", diff --git a/config/matcher/package.json b/config/matcher/package.json index b617e486b3..cb8d17affb 100644 --- a/config/matcher/package.json +++ b/config/matcher/package.json @@ -4,7 +4,7 @@ "description": "A simple pattern matcher for pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "match", "pattern", "wildcard" diff --git a/config/normalize-registries/package.json b/config/normalize-registries/package.json index 438e1e3dc2..1cba7fe8cd 100644 --- a/config/normalize-registries/package.json +++ b/config/normalize-registries/package.json @@ -4,7 +4,7 @@ "description": "Accepts a mapping of registry URLs and returns a mapping with the same URLs but normalized", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/config/package-is-installable/package.json b/config/package-is-installable/package.json index 58ca2f889b..b54bacc2d3 100644 --- a/config/package-is-installable/package.json +++ b/config/package-is-installable/package.json @@ -4,7 +4,7 @@ "description": "Checks if a package is installable on the current system", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/config/parse-overrides/package.json b/config/parse-overrides/package.json index 67dd73d48a..6ef1fd9e27 100644 --- a/config/parse-overrides/package.json +++ b/config/parse-overrides/package.json @@ -4,7 +4,7 @@ "description": "Parse overrides", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/config/pick-registry-for-package/package.json b/config/pick-registry-for-package/package.json index 5800253d77..df78a5a21c 100644 --- a/config/pick-registry-for-package/package.json +++ b/config/pick-registry-for-package/package.json @@ -4,7 +4,7 @@ "description": "Picks the right registry for the package from a registries config", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/config/plugin-commands-config/package.json b/config/plugin-commands-config/package.json index abdd5b2140..a3b09c0ef0 100644 --- a/config/plugin-commands-config/package.json +++ b/config/plugin-commands-config/package.json @@ -4,7 +4,7 @@ "description": "Commands for reading and writing settings to/from config files", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "config" ], "license": "MIT", diff --git a/config/version-policy/package.json b/config/version-policy/package.json index c83d5ea5dd..fc57efba9f 100644 --- a/config/version-policy/package.json +++ b/config/version-policy/package.json @@ -4,7 +4,7 @@ "description": "Parses and evaluates package version policy specs and produces package-version matchers", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/crypto/hash/package.json b/crypto/hash/package.json index ec5e72ded9..33d769d13e 100644 --- a/crypto/hash/package.json +++ b/crypto/hash/package.json @@ -4,7 +4,7 @@ "description": "Generate hashes", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "crypto", "hash" ], diff --git a/crypto/object-hasher/package.json b/crypto/object-hasher/package.json index 2232e49a46..85b5d23be8 100644 --- a/crypto/object-hasher/package.json +++ b/crypto/object-hasher/package.json @@ -4,7 +4,7 @@ "description": "Generate hashes from objects", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "crypto", "hash" ], diff --git a/crypto/shasums-file/package.json b/crypto/shasums-file/package.json index 980f769864..9e2d0dc137 100644 --- a/crypto/shasums-file/package.json +++ b/crypto/shasums-file/package.json @@ -4,7 +4,7 @@ "description": "Utils for working with shasums files", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "crypto", "shasums-file" ], diff --git a/dedupe/check/package.json b/dedupe/check/package.json index e7e08e2d3b..e5c7d193b4 100644 --- a/dedupe/check/package.json +++ b/dedupe/check/package.json @@ -4,7 +4,7 @@ "description": "Visualize pnpm dedupe --check issues.", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/dedupe/issues-renderer/package.json b/dedupe/issues-renderer/package.json index 279e1f5274..0381b2cfe9 100644 --- a/dedupe/issues-renderer/package.json +++ b/dedupe/issues-renderer/package.json @@ -4,7 +4,7 @@ "description": "Visualize pnpm dedupe --check issues.", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/dedupe/types/package.json b/dedupe/types/package.json index 5db2378e91..3408ebf016 100644 --- a/dedupe/types/package.json +++ b/dedupe/types/package.json @@ -4,7 +4,7 @@ "description": "Types for the pnpm dedupe command", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/deps/graph-builder/package.json b/deps/graph-builder/package.json index f8e4e93955..a308329721 100644 --- a/deps/graph-builder/package.json +++ b/deps/graph-builder/package.json @@ -4,7 +4,7 @@ "description": "A package for building a dependency graph from a lockfile", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/deps/graph-sequencer/package.json b/deps/graph-sequencer/package.json index 45d439e66c..420b5aacbd 100644 --- a/deps/graph-sequencer/package.json +++ b/deps/graph-sequencer/package.json @@ -4,7 +4,7 @@ "description": "Sort items in a graph using a topological sort", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "graph" ], "license": "MIT", diff --git a/deps/status/package.json b/deps/status/package.json index f433ec507d..f09ff8ec58 100644 --- a/deps/status/package.json +++ b/deps/status/package.json @@ -4,7 +4,7 @@ "description": "Check dependencies status", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "scripts" ], "license": "MIT", diff --git a/env/node.fetcher/package.json b/env/node.fetcher/package.json index f5a83f4447..fd4917988c 100644 --- a/env/node.fetcher/package.json +++ b/env/node.fetcher/package.json @@ -4,7 +4,7 @@ "description": "Node.js artifacts fetcher", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "env", "node.js" ], diff --git a/env/node.resolver/package.json b/env/node.resolver/package.json index abb47a8aaf..ba38b2a4d9 100644 --- a/env/node.resolver/package.json +++ b/env/node.resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolves a Node.js version specifier to an exact Node.js version", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "env", "node.js" ], diff --git a/env/path/package.json b/env/path/package.json index 5a2f7899ab..db209614a5 100644 --- a/env/path/package.json +++ b/env/path/package.json @@ -4,7 +4,7 @@ "description": "Functions for changing PATH env variable", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "env" ], "license": "MIT", diff --git a/env/plugin-commands-env/package.json b/env/plugin-commands-env/package.json index 34440e016a..9262708c2f 100644 --- a/env/plugin-commands-env/package.json +++ b/env/plugin-commands-env/package.json @@ -4,7 +4,7 @@ "description": "pnpm commands for managing Node.js", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "env" ], "license": "MIT", diff --git a/env/system-node-version/package.json b/env/system-node-version/package.json index 8d761e82c3..dbfc501f33 100644 --- a/env/system-node-version/package.json +++ b/env/system-node-version/package.json @@ -4,7 +4,7 @@ "description": "Detects the current system node version", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "env" ], "license": "MIT", diff --git a/exec/build-commands/package.json b/exec/build-commands/package.json index 1503820ade..5e1b27ba1d 100644 --- a/exec/build-commands/package.json +++ b/exec/build-commands/package.json @@ -4,7 +4,7 @@ "description": "Commands for managing dependency builds", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "rebuild" ], "license": "MIT", diff --git a/exec/build-modules/package.json b/exec/build-modules/package.json index 7dc4750e4a..b4447b692d 100644 --- a/exec/build-modules/package.json +++ b/exec/build-modules/package.json @@ -4,7 +4,7 @@ "description": "Build packages in node_modules", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/exec/lifecycle/package.json b/exec/lifecycle/package.json index 08d6aa70e3..71777d02d5 100644 --- a/exec/lifecycle/package.json +++ b/exec/lifecycle/package.json @@ -4,7 +4,7 @@ "description": "Package lifecycle hook runner", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lifecycle", "scripts" ], diff --git a/exec/pkg-requires-build/package.json b/exec/pkg-requires-build/package.json index c3f2cddcb8..f981e9c91a 100644 --- a/exec/pkg-requires-build/package.json +++ b/exec/pkg-requires-build/package.json @@ -4,7 +4,7 @@ "description": "Checks if a package requires to be built", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/exec/plugin-commands-rebuild/package.json b/exec/plugin-commands-rebuild/package.json index 20190521cd..48b6c0fc24 100644 --- a/exec/plugin-commands-rebuild/package.json +++ b/exec/plugin-commands-rebuild/package.json @@ -4,7 +4,7 @@ "description": "Commands for rebuilding dependencies", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "rebuild" ], "license": "MIT", diff --git a/exec/plugin-commands-script-runners/package.json b/exec/plugin-commands-script-runners/package.json index 35221f8299..f9b5e1a196 100644 --- a/exec/plugin-commands-script-runners/package.json +++ b/exec/plugin-commands-script-runners/package.json @@ -4,7 +4,7 @@ "description": "Commands for running scripts", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "scripts" ], "license": "MIT", diff --git a/exec/pnpm-cli-runner/package.json b/exec/pnpm-cli-runner/package.json index 59870bcf02..7ac301c05e 100644 --- a/exec/pnpm-cli-runner/package.json +++ b/exec/pnpm-cli-runner/package.json @@ -4,7 +4,7 @@ "description": "Runs pnpm CLI", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/exec/prepare-package/package.json b/exec/prepare-package/package.json index 9dcb791ce9..e5eef8addc 100644 --- a/exec/prepare-package/package.json +++ b/exec/prepare-package/package.json @@ -4,7 +4,7 @@ "description": "Prepares a Git-hosted package", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/exec/run-npm/package.json b/exec/run-npm/package.json index 1125817a5c..73a8434b75 100644 --- a/exec/run-npm/package.json +++ b/exec/run-npm/package.json @@ -4,7 +4,7 @@ "description": "Runs the npm CLI", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fetching/binary-fetcher/package.json b/fetching/binary-fetcher/package.json index 314fca1160..5f8016ad19 100644 --- a/fetching/binary-fetcher/package.json +++ b/fetching/binary-fetcher/package.json @@ -4,7 +4,7 @@ "description": "A fetcher for binary archives", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fetching/directory-fetcher/package.json b/fetching/directory-fetcher/package.json index 607acba47f..82524a6f5b 100644 --- a/fetching/directory-fetcher/package.json +++ b/fetching/directory-fetcher/package.json @@ -4,7 +4,7 @@ "description": "A fetcher for local directory packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "fetcher" ], "license": "MIT", diff --git a/fetching/fetcher-base/package.json b/fetching/fetcher-base/package.json index c3979b3668..09142796ce 100644 --- a/fetching/fetcher-base/package.json +++ b/fetching/fetcher-base/package.json @@ -4,7 +4,7 @@ "description": "Types for pnpm-compatible fetchers", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "fetcher" ], "license": "MIT", diff --git a/fetching/git-fetcher/package.json b/fetching/git-fetcher/package.json index 167f96fcc1..b629cfe58a 100644 --- a/fetching/git-fetcher/package.json +++ b/fetching/git-fetcher/package.json @@ -4,7 +4,7 @@ "description": "A fetcher for git-hosted packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "fetcher" ], "license": "MIT", diff --git a/fetching/pick-fetcher/package.json b/fetching/pick-fetcher/package.json index fb5207fe28..9e885e70b7 100644 --- a/fetching/pick-fetcher/package.json +++ b/fetching/pick-fetcher/package.json @@ -4,7 +4,7 @@ "description": "Pick a package fetcher by type", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fetching/tarball-fetcher/package.json b/fetching/tarball-fetcher/package.json index 21c46a20dd..be545d7727 100644 --- a/fetching/tarball-fetcher/package.json +++ b/fetching/tarball-fetcher/package.json @@ -4,7 +4,7 @@ "description": "Fetcher for packages hosted as tarballs", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "fetcher", "tarball" ], diff --git a/fs/find-packages/package.json b/fs/find-packages/package.json index 0f937331aa..f261da0af5 100644 --- a/fs/find-packages/package.json +++ b/fs/find-packages/package.json @@ -4,7 +4,7 @@ "description": "Find all packages inside a directory", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "find", "package" ], diff --git a/fs/graceful-fs/package.json b/fs/graceful-fs/package.json index 01c0570b1b..a1aae1b098 100644 --- a/fs/graceful-fs/package.json +++ b/fs/graceful-fs/package.json @@ -4,7 +4,7 @@ "description": "Promisified graceful-fs", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fs/hard-link-dir/package.json b/fs/hard-link-dir/package.json index 340c24f517..fb5ae744ca 100644 --- a/fs/hard-link-dir/package.json +++ b/fs/hard-link-dir/package.json @@ -4,7 +4,7 @@ "description": "Hard link (or copy if linking fails) all files from a directory to several target directories.", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "find", "package" ], diff --git a/fs/indexed-pkg-importer/package.json b/fs/indexed-pkg-importer/package.json index c2a488c4d8..b25a2e8102 100644 --- a/fs/indexed-pkg-importer/package.json +++ b/fs/indexed-pkg-importer/package.json @@ -4,7 +4,7 @@ "description": "Replicates indexed directories using hard links, copies, or cloning", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "cache", "central storage", "global store", diff --git a/fs/is-empty-dir-or-nothing/package.json b/fs/is-empty-dir-or-nothing/package.json index 9d5450e8e3..441f27539c 100644 --- a/fs/is-empty-dir-or-nothing/package.json +++ b/fs/is-empty-dir-or-nothing/package.json @@ -4,7 +4,7 @@ "description": "Checks if a path is empty (Not a file or directory with content)", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fs/packlist/package.json b/fs/packlist/package.json index 8da0aab582..7425f5187c 100644 --- a/fs/packlist/package.json +++ b/fs/packlist/package.json @@ -4,7 +4,7 @@ "description": "Get a list of the files to add from a directory into an npm package", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fs/read-modules-dir/package.json b/fs/read-modules-dir/package.json index ce638ff409..a3ed68f3ba 100644 --- a/fs/read-modules-dir/package.json +++ b/fs/read-modules-dir/package.json @@ -4,7 +4,7 @@ "description": "Finds all direct packages in node_modules", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fs/symlink-dependency/package.json b/fs/symlink-dependency/package.json index 670373256f..a9935c6e35 100644 --- a/fs/symlink-dependency/package.json +++ b/fs/symlink-dependency/package.json @@ -4,7 +4,7 @@ "description": "Symlink a dependency to node_modules", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/fs/v8-file/package.json b/fs/v8-file/package.json index 308386def0..25484633af 100644 --- a/fs/v8-file/package.json +++ b/fs/v8-file/package.json @@ -1,10 +1,10 @@ { "name": "@pnpm/fs.v8-file", - "version": "1000.0.0-0", + "version": "1100.0.0-0", "description": "Reading/writing binary files serialized with v8", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", @@ -29,8 +29,6 @@ "prepublishOnly": "pnpm run compile", "compile": "tsc --build && pnpm run lint --fix" }, - "dependencies": { - }, "devDependencies": { "@pnpm/fs.v8-file": "workspace:*" }, diff --git a/hooks/pnpmfile/package.json b/hooks/pnpmfile/package.json index 59b008d6af..ad33e0a1ef 100644 --- a/hooks/pnpmfile/package.json +++ b/hooks/pnpmfile/package.json @@ -4,7 +4,7 @@ "description": "Reading a .pnpmfile.cjs", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/hooks/read-package-hook/package.json b/hooks/read-package-hook/package.json index 5f958fece2..e035ca1146 100644 --- a/hooks/read-package-hook/package.json +++ b/hooks/read-package-hook/package.json @@ -4,7 +4,7 @@ "description": "Creates the default package reader hook used by pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/hooks/types/package.json b/hooks/types/package.json index d94303eb6b..edb93c3124 100644 --- a/hooks/types/package.json +++ b/hooks/types/package.json @@ -4,7 +4,7 @@ "description": "Types for hooks", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/lockfile/audit/package.json b/lockfile/audit/package.json index c77ce422ea..23fd051791 100644 --- a/lockfile/audit/package.json +++ b/lockfile/audit/package.json @@ -4,7 +4,7 @@ "description": "Audit a lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "audit" ], "license": "MIT", diff --git a/lockfile/detect-dep-types/package.json b/lockfile/detect-dep-types/package.json index bc8f4923fb..187912eceb 100644 --- a/lockfile/detect-dep-types/package.json +++ b/lockfile/detect-dep-types/package.json @@ -4,7 +4,7 @@ "description": "Detect the types of dependencies", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/filtering/package.json b/lockfile/filtering/package.json index 1a67839ecc..897f6be78e 100644 --- a/lockfile/filtering/package.json +++ b/lockfile/filtering/package.json @@ -4,7 +4,7 @@ "description": "Filters a lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/fs/package.json b/lockfile/fs/package.json index 8da579b355..fec5b07190 100644 --- a/lockfile/fs/package.json +++ b/lockfile/fs/package.json @@ -4,7 +4,7 @@ "description": "Read/write pnpm-lock.yaml files", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/lockfile-to-pnp/package.json b/lockfile/lockfile-to-pnp/package.json index 7dc6262b9f..458fec4d52 100644 --- a/lockfile/lockfile-to-pnp/package.json +++ b/lockfile/lockfile-to-pnp/package.json @@ -4,7 +4,7 @@ "description": "Creates a Plug'n'Play file from a pnpm-lock.yaml", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/merger/package.json b/lockfile/merger/package.json index 7d3ac02f1e..7e1d2a9943 100644 --- a/lockfile/merger/package.json +++ b/lockfile/merger/package.json @@ -4,7 +4,7 @@ "description": "Merges lockfiles. Can automatically fix merge conflicts", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/plugin-commands-audit/package.json b/lockfile/plugin-commands-audit/package.json index bb9b471f2e..d6185fe1d1 100644 --- a/lockfile/plugin-commands-audit/package.json +++ b/lockfile/plugin-commands-audit/package.json @@ -4,7 +4,7 @@ "description": "pnpm commands for dependencies audit", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "audit" ], "license": "MIT", diff --git a/lockfile/preferred-versions/package.json b/lockfile/preferred-versions/package.json index ec73c6595a..615a24d624 100644 --- a/lockfile/preferred-versions/package.json +++ b/lockfile/preferred-versions/package.json @@ -4,7 +4,7 @@ "description": "Get preferred version from lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/pruner/package.json b/lockfile/pruner/package.json index 608263da26..a8e1a8458c 100644 --- a/lockfile/pruner/package.json +++ b/lockfile/pruner/package.json @@ -4,7 +4,7 @@ "description": "Prune a pnpm-lock.yaml", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/settings-checker/package.json b/lockfile/settings-checker/package.json index cd545c8d53..1e914ed39b 100644 --- a/lockfile/settings-checker/package.json +++ b/lockfile/settings-checker/package.json @@ -4,7 +4,7 @@ "description": "Utilities to check if lockfile settings are out-of-date", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "base32", "crypto", "hash" diff --git a/lockfile/types/package.json b/lockfile/types/package.json index 164627ebd1..42624b4ba5 100644 --- a/lockfile/types/package.json +++ b/lockfile/types/package.json @@ -4,7 +4,7 @@ "description": "Types for the pnpm-lock.yaml lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "types" ], diff --git a/lockfile/utils/package.json b/lockfile/utils/package.json index f80386fb57..89b40d01ff 100644 --- a/lockfile/utils/package.json +++ b/lockfile/utils/package.json @@ -4,7 +4,7 @@ "description": "Utils for dealing with pnpm-lock.yaml", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/lockfile/verification/package.json b/lockfile/verification/package.json index 24d0acc041..4e58a75944 100644 --- a/lockfile/verification/package.json +++ b/lockfile/verification/package.json @@ -4,7 +4,7 @@ "description": "Checks a lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile" ], "license": "MIT", diff --git a/lockfile/walker/package.json b/lockfile/walker/package.json index 6dd72647e4..bc38648c58 100644 --- a/lockfile/walker/package.json +++ b/lockfile/walker/package.json @@ -4,7 +4,7 @@ "description": "Walk over all the dependencies in a lockfile", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/modules-mounter/daemon/package.json b/modules-mounter/daemon/package.json index 813c60b130..649a270787 100644 --- a/modules-mounter/daemon/package.json +++ b/modules-mounter/daemon/package.json @@ -4,7 +4,7 @@ "description": "Mounts a node_modules directory with FUSE", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "lockfile", "shrinkwrap" ], diff --git a/network/auth-header/package.json b/network/auth-header/package.json index 3a91c50315..5b928b4d85 100644 --- a/network/auth-header/package.json +++ b/network/auth-header/package.json @@ -4,7 +4,7 @@ "description": "Gets the authorization header for the given URI", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "auth" ], "license": "MIT", diff --git a/network/fetch/package.json b/network/fetch/package.json index 099ab7f884..e35cd7e941 100644 --- a/network/fetch/package.json +++ b/network/fetch/package.json @@ -4,7 +4,7 @@ "description": "node-fetch with retries", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "fetch", "npm" ], diff --git a/network/fetching-types/package.json b/network/fetching-types/package.json index f7604c5fb1..0503a4c9e1 100644 --- a/network/fetching-types/package.json +++ b/network/fetching-types/package.json @@ -4,7 +4,7 @@ "description": "Types for fetching", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/object/key-sorting/package.json b/object/key-sorting/package.json index 88e44e5891..6dc811baf0 100644 --- a/object/key-sorting/package.json +++ b/object/key-sorting/package.json @@ -4,7 +4,7 @@ "description": "Sorting the keys of an object", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/object/property-path/package.json b/object/property-path/package.json index 222bedb444..f57ccc2bb1 100644 --- a/object/property-path/package.json +++ b/object/property-path/package.json @@ -4,7 +4,7 @@ "description": "Basic library to manipulate object property path which includes dots and subscriptions", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "object.property-path" ], "license": "MIT", diff --git a/package.json b/package.json index 5552acdd57..e1f8c8e9c1 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "lint:meta": "pnpm run meta-updater --test", "copy-artifacts": "ts-node __utils__/scripts/src/copy-artifacts.ts", "make-release-description": "pnpm --filter=@pnpm/get-release-text run write-release-text", - "release": "pnpm --filter=@pnpm/exe publish --tag=next-10 --access=public && pnpm publish --filter=!pnpm --filter=!@pnpm/exe --access=public && pnpm publish --filter=pnpm --tag=next-10 --access=public", + "release": "pnpm --filter=@pnpm/exe publish --tag=next-11 --access=public && pnpm publish --filter=!pnpm --filter=!@pnpm/exe --access=public && pnpm publish --filter=pnpm --tag=next-11 --access=public", "dev-setup": "pnpm -C=./pnpm/dev link -g" }, "devDependencies": { diff --git a/packages/calc-dep-state/package.json b/packages/calc-dep-state/package.json index b551515547..a5e0f062ac 100644 --- a/packages/calc-dep-state/package.json +++ b/packages/calc-dep-state/package.json @@ -4,7 +4,7 @@ "description": "Calculates the state of a dependency", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/packages/constants/package.json b/packages/constants/package.json index 4b193ab4a2..74df48c6ad 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -4,7 +4,7 @@ "description": "pnpm constants", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "constants" ], "license": "MIT", diff --git a/packages/core-loggers/package.json b/packages/core-loggers/package.json index cce93fa117..1105b3fb05 100644 --- a/packages/core-loggers/package.json +++ b/packages/core-loggers/package.json @@ -4,7 +4,7 @@ "description": "Core loggers of pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/packages/dependency-path/package.json b/packages/dependency-path/package.json index 3f2156a1c0..d1b5bcf684 100644 --- a/packages/dependency-path/package.json +++ b/packages/dependency-path/package.json @@ -4,7 +4,7 @@ "description": "Utilities for working with symlinked node_modules", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "node_modules", "path" ], diff --git a/packages/error/package.json b/packages/error/package.json index 1e4b9b8eda..aaa3907dcd 100644 --- a/packages/error/package.json +++ b/packages/error/package.json @@ -4,7 +4,7 @@ "description": "An error class for pnpm errors", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "error" ], "license": "MIT", diff --git a/packages/git-utils/package.json b/packages/git-utils/package.json index ec7ca1d5af..784c4a9701 100644 --- a/packages/git-utils/package.json +++ b/packages/git-utils/package.json @@ -4,7 +4,7 @@ "description": "Utilities for git", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "git", "npm" ], diff --git a/packages/logger/package.json b/packages/logger/package.json index e791c6ec4a..fc591ee994 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -4,7 +4,7 @@ "description": "Logger for pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "logger" ], "license": "MIT", diff --git a/packages/make-dedicated-lockfile/package.json b/packages/make-dedicated-lockfile/package.json index 95af29007e..216a530203 100644 --- a/packages/make-dedicated-lockfile/package.json +++ b/packages/make-dedicated-lockfile/package.json @@ -4,7 +4,7 @@ "description": "Creates a dedicated lockfile for a subset of workspace projects", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "make-dedicated-lockfile" ], "license": "MIT", diff --git a/packages/naming-cases/package.json b/packages/naming-cases/package.json index 8891d85479..3f7c9c19bb 100644 --- a/packages/naming-cases/package.json +++ b/packages/naming-cases/package.json @@ -1,10 +1,10 @@ { "name": "@pnpm/naming-cases", - "version": "1000.0.0-0", + "version": "1100.0.0-0", "description": "manipulate and check naming cases", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "naming-cases" ], "license": "MIT", diff --git a/packages/parse-wanted-dependency/package.json b/packages/parse-wanted-dependency/package.json index 53e8554209..9a3548e2a0 100644 --- a/packages/parse-wanted-dependency/package.json +++ b/packages/parse-wanted-dependency/package.json @@ -4,7 +4,7 @@ "description": "Parse dependency specifier", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/packages/plugin-commands-doctor/package.json b/packages/plugin-commands-doctor/package.json index 1c8f07347f..f00e3eb2f9 100644 --- a/packages/plugin-commands-doctor/package.json +++ b/packages/plugin-commands-doctor/package.json @@ -4,7 +4,7 @@ "description": "Commands for checks of known common issues ", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "doctor" ], "license": "MIT", diff --git a/packages/plugin-commands-init/package.json b/packages/plugin-commands-init/package.json index 18a999096b..c7e328e101 100644 --- a/packages/plugin-commands-init/package.json +++ b/packages/plugin-commands-init/package.json @@ -4,7 +4,7 @@ "description": "Create a package.json file", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "init" ], "license": "MIT", diff --git a/packages/plugin-commands-setup/package.json b/packages/plugin-commands-setup/package.json index c47b644ccc..d3c092d337 100644 --- a/packages/plugin-commands-setup/package.json +++ b/packages/plugin-commands-setup/package.json @@ -4,7 +4,7 @@ "description": "pnpm commands for setting up pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "setup" ], "license": "MIT", diff --git a/packages/render-peer-issues/package.json b/packages/render-peer-issues/package.json index 0159069302..1b9b749608 100644 --- a/packages/render-peer-issues/package.json +++ b/packages/render-peer-issues/package.json @@ -4,7 +4,7 @@ "description": "Visualizes peer dependency issues", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/packages/types/package.json b/packages/types/package.json index 2b77c31935..7a4bce81b3 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -4,7 +4,7 @@ "description": "Basic types used by pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/patching/apply-patch/package.json b/patching/apply-patch/package.json index e3bf0ded81..50a716fd65 100644 --- a/patching/apply-patch/package.json +++ b/patching/apply-patch/package.json @@ -4,7 +4,7 @@ "description": "Apply a patch to a directory", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "patch" ], "license": "MIT", diff --git a/patching/config/package.json b/patching/config/package.json index 86acbbc0e5..4ca5808836 100644 --- a/patching/config/package.json +++ b/patching/config/package.json @@ -4,7 +4,7 @@ "description": "Functions related to patching configurations", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "patch" ], "license": "MIT", diff --git a/patching/plugin-commands-patching/package.json b/patching/plugin-commands-patching/package.json index 9db37bee2c..8395928ec0 100644 --- a/patching/plugin-commands-patching/package.json +++ b/patching/plugin-commands-patching/package.json @@ -4,7 +4,7 @@ "description": "Commands for creating patches", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "scripts" ], "license": "MIT", diff --git a/patching/types/package.json b/patching/types/package.json index 8d7dfa1eb4..e0e44d9108 100644 --- a/patching/types/package.json +++ b/patching/types/package.json @@ -4,7 +4,7 @@ "description": "Types related to patching", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "patch" ], "license": "MIT", diff --git a/pkg-manager/client/package.json b/pkg-manager/client/package.json index 95f8730a02..d9a7456388 100644 --- a/pkg-manager/client/package.json +++ b/pkg-manager/client/package.json @@ -4,7 +4,7 @@ "description": "Creates the package resolve and fetch functions", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/pkg-manager/core/package.json b/pkg-manager/core/package.json index 632fbeb15b..0cd5dcfbb8 100644 --- a/pkg-manager/core/package.json +++ b/pkg-manager/core/package.json @@ -4,7 +4,7 @@ "description": "Fast, disk space efficient installation engine", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "dependencies", "dependency manager", "efficient", diff --git a/pkg-manager/direct-dep-linker/package.json b/pkg-manager/direct-dep-linker/package.json index 98e9126d6b..4c9c27f665 100644 --- a/pkg-manager/direct-dep-linker/package.json +++ b/pkg-manager/direct-dep-linker/package.json @@ -4,7 +4,7 @@ "description": "Fast installation using only pnpm-lock.yaml", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/get-context/package.json b/pkg-manager/get-context/package.json index 3c796f8faf..88367ecd0e 100644 --- a/pkg-manager/get-context/package.json +++ b/pkg-manager/get-context/package.json @@ -4,7 +4,7 @@ "description": "Gets context information about a project", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "scripts" ], "license": "MIT", diff --git a/pkg-manager/headless/package.json b/pkg-manager/headless/package.json index c54da0f2e3..db1d75592c 100644 --- a/pkg-manager/headless/package.json +++ b/pkg-manager/headless/package.json @@ -4,7 +4,7 @@ "description": "Fast installation using only pnpm-lock.yaml", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "install", "installer" ], diff --git a/pkg-manager/hoist/package.json b/pkg-manager/hoist/package.json index 205b91d391..8e377e9728 100644 --- a/pkg-manager/hoist/package.json +++ b/pkg-manager/hoist/package.json @@ -4,7 +4,7 @@ "description": "Hoists dependencies in a node_modules created by pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/link-bins/package.json b/pkg-manager/link-bins/package.json index 8a54754591..169a1b58d5 100644 --- a/pkg-manager/link-bins/package.json +++ b/pkg-manager/link-bins/package.json @@ -4,7 +4,7 @@ "description": "Link bins to node_modules/.bin", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "bin" ], "license": "MIT", diff --git a/pkg-manager/modules-cleaner/package.json b/pkg-manager/modules-cleaner/package.json index d6625db38f..788e735d3b 100644 --- a/pkg-manager/modules-cleaner/package.json +++ b/pkg-manager/modules-cleaner/package.json @@ -4,7 +4,7 @@ "description": "Exports util functions to clean up node_modules", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/modules-yaml/package.json b/pkg-manager/modules-yaml/package.json index 80f07c0c5f..91ff0c6ca3 100644 --- a/pkg-manager/modules-yaml/package.json +++ b/pkg-manager/modules-yaml/package.json @@ -4,7 +4,7 @@ "description": "Reads/writes `node_modules/.modules.yaml`", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "modules.yaml" ], "license": "MIT", diff --git a/pkg-manager/package-bins/package.json b/pkg-manager/package-bins/package.json index 4662178a36..4ec9554d7a 100644 --- a/pkg-manager/package-bins/package.json +++ b/pkg-manager/package-bins/package.json @@ -4,7 +4,7 @@ "description": "Returns bins of a package", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "bins" ], "license": "MIT", diff --git a/pkg-manager/package-requester/package.json b/pkg-manager/package-requester/package.json index 0c44f2cf79..1de9e1a030 100644 --- a/pkg-manager/package-requester/package.json +++ b/pkg-manager/package-requester/package.json @@ -4,7 +4,7 @@ "description": "Concurrent downloader of npm-compatible packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/pkg-manager/plugin-commands-installation/package.json b/pkg-manager/plugin-commands-installation/package.json index 443c302017..1db61c70c2 100644 --- a/pkg-manager/plugin-commands-installation/package.json +++ b/pkg-manager/plugin-commands-installation/package.json @@ -4,7 +4,7 @@ "description": "Commands for installation", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/read-projects-context/package.json b/pkg-manager/read-projects-context/package.json index fbf3b7efce..5c1850e29d 100644 --- a/pkg-manager/read-projects-context/package.json +++ b/pkg-manager/read-projects-context/package.json @@ -4,7 +4,7 @@ "description": "Reads the current state of projects from modules manifest", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/real-hoist/package.json b/pkg-manager/real-hoist/package.json index 79c574996f..5800478d9c 100644 --- a/pkg-manager/real-hoist/package.json +++ b/pkg-manager/real-hoist/package.json @@ -4,7 +4,7 @@ "description": "Hoists dependencies in a node_modules created by pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/remove-bins/package.json b/pkg-manager/remove-bins/package.json index bb8ead2bbe..6ec91577ef 100644 --- a/pkg-manager/remove-bins/package.json +++ b/pkg-manager/remove-bins/package.json @@ -4,7 +4,7 @@ "description": "Remove bins from .bin", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manager/resolve-dependencies/package.json b/pkg-manager/resolve-dependencies/package.json index 589f2db277..ff2a88ee9f 100644 --- a/pkg-manager/resolve-dependencies/package.json +++ b/pkg-manager/resolve-dependencies/package.json @@ -4,7 +4,7 @@ "description": "Resolves dependency graph of a package", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manifest/exportable-manifest/package.json b/pkg-manifest/exportable-manifest/package.json index b8070b9efb..51f65bcc0a 100644 --- a/pkg-manifest/exportable-manifest/package.json +++ b/pkg-manifest/exportable-manifest/package.json @@ -4,7 +4,7 @@ "description": "Creates an exportable manifest", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manifest/manifest-utils/package.json b/pkg-manifest/manifest-utils/package.json index 8516cb6f32..7cfc304faa 100644 --- a/pkg-manifest/manifest-utils/package.json +++ b/pkg-manifest/manifest-utils/package.json @@ -4,7 +4,7 @@ "description": "Utils for dealing with package manifest", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manifest/read-package-json/package.json b/pkg-manifest/read-package-json/package.json index 07be05c4fa..a79d6c62d0 100644 --- a/pkg-manifest/read-package-json/package.json +++ b/pkg-manifest/read-package-json/package.json @@ -4,7 +4,7 @@ "description": "Read a package.json", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "outdated" ], "license": "MIT", diff --git a/pkg-manifest/read-project-manifest/package.json b/pkg-manifest/read-project-manifest/package.json index ff14be101e..6740a4254a 100644 --- a/pkg-manifest/read-project-manifest/package.json +++ b/pkg-manifest/read-project-manifest/package.json @@ -4,7 +4,7 @@ "description": "Read a project manifest (called package.json in most cases)", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pkg-manifest/write-project-manifest/package.json b/pkg-manifest/write-project-manifest/package.json index a994ec9d69..aa12dc74ab 100644 --- a/pkg-manifest/write-project-manifest/package.json +++ b/pkg-manifest/write-project-manifest/package.json @@ -4,7 +4,7 @@ "description": "Write a project manifest (called package.json in most cases)", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c083ec68e6..06a0b8dbac 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -959,6 +959,9 @@ importers: normalize-path: specifier: 'catalog:' version: 3.0.0 + semver: + specifier: 'catalog:' + version: 7.7.2 write-json-file: specifier: 'catalog:' version: 6.0.0 @@ -966,6 +969,9 @@ importers: '@pnpm-private/updater': specifier: workspace:* version: 'link:' + '@types/semver': + specifier: 'catalog:' + version: 7.5.3 __typecheck__: devDependencies: diff --git a/pnpm/CHANGELOG.md b/pnpm/CHANGELOG.md index a5dc56951c..9447b1e6a8 100644 --- a/pnpm/CHANGELOG.md +++ b/pnpm/CHANGELOG.md @@ -1,5 +1,47 @@ # pnpm +## 11.0.0-alpha.0 + +### Major Changes + +- `pnpm config get` (without `--json`) no longer print INI formatted text. + Instead, it would print JSON for both objects and arrays and raw string for + strings, numbers, booleans, and nulls. + `pnpm config get --json` would still print all types of values as JSON like before. +- `pnpm config list` and `pnpm config get` (without argument) now hide auth-related settings. +- This package is now pure ESM. +- pnpm no longer loads non-auth and non-registry settings from rc files. Other settings must be defined in `pnpm-workspace.yaml`. +- The pnpm CLI now gets installed with a specific version of Node.js, which it uses for its runtime. This makes pnpm more stable and it doesn't rely on your globally install Node.js anymore. +- Node.js v18 and 19 support discontinued. +- `pnpm config get ` now prints a JSON array. +- The default value of the `type` field in the `package.json` file of the project initialized by `pnpm init` command has been changed to `module`. +- `pnpm config list` and `pnpm config get` (without argument) now show top-level keys as camelCase. + Exception: Keys that start with `@` or `//` would be preserved (their cases don't change). +- The standalone exe version of pnpm requires at least glibc 2.27. +- `pnpm config list` now prints a JSON object instead of INI formatted text. +- `pnpm config get` and `pnpm config list` no longer load non camelCase options from the workspace manifest (`pnpm-workspace.yaml`). +- JSON files in the store and cache are replaced with binary files generated with v8.serialize. + + Reading and deserializing a binary file generated with v8.serialize appears to be about 23% faster than reading and parsing a JSON file. Other operations are similar in speed. Therefore, we have switched to V8 binary files for storing data in pnpm’s global store and cache. The disadvantage of this approach is that V8 files generated by newer versions of Node.js cannot be deserialized by older versions. In such cases, we ignore the cache. + + Related PR: [#9971](https://github.com/pnpm/pnpm/pull/9971). + +### Minor Changes + +- Load environment variables whose names start with `pnpm_config_` into config. These environment variables override settings from `pnpm-workspace.yaml` but not the CLI arguments. +- Add support for a global YAML config file named `config.yaml`. + + Now configurations are divided into 2 categories: + + - Registry and auth settings which can be stored in INI files such as global `rc` and local `.npmrc`. + - pnpm-specific settings which can only be loaded from YAML files such as global `config.yaml` and local `pnpm-workspace.yaml`. + +- Added support for pnpmfiles written in ESM. They should have the `.mjs` extension: `.pnpmfile.mjs` [#9730](https://github.com/pnpm/pnpm/pull/9730). + +### Patch Changes + +- Explicitly tell `npm` the path to the global `rc` config file. + ## 10.20.0 ### Minor Changes diff --git a/pnpm/artifacts/exe/package.json b/pnpm/artifacts/exe/package.json index 419343eae0..553a15f655 100644 --- a/pnpm/artifacts/exe/package.json +++ b/pnpm/artifacts/exe/package.json @@ -1,10 +1,10 @@ { "name": "@pnpm/exe", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "description": "Fast, disk space efficient package manager", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/linux-arm64/package.json b/pnpm/artifacts/linux-arm64/package.json index cbba668752..fd5ff57428 100644 --- a/pnpm/artifacts/linux-arm64/package.json +++ b/pnpm/artifacts/linux-arm64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/linux-arm64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/linux-x64/package.json b/pnpm/artifacts/linux-x64/package.json index 4080779427..ddc1ea4ae8 100644 --- a/pnpm/artifacts/linux-x64/package.json +++ b/pnpm/artifacts/linux-x64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/linux-x64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/macos-arm64/package.json b/pnpm/artifacts/macos-arm64/package.json index 5553306839..a99cd8078d 100644 --- a/pnpm/artifacts/macos-arm64/package.json +++ b/pnpm/artifacts/macos-arm64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/macos-arm64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/macos-x64/package.json b/pnpm/artifacts/macos-x64/package.json index 4c6881a737..5da68b6730 100644 --- a/pnpm/artifacts/macos-x64/package.json +++ b/pnpm/artifacts/macos-x64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/macos-x64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/win-arm64/package.json b/pnpm/artifacts/win-arm64/package.json index 77249f1106..4ae0a0c353 100644 --- a/pnpm/artifacts/win-arm64/package.json +++ b/pnpm/artifacts/win-arm64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/win-arm64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/artifacts/win-x64/package.json b/pnpm/artifacts/win-x64/package.json index d7f3f507b5..7850fbf7ff 100644 --- a/pnpm/artifacts/win-x64/package.json +++ b/pnpm/artifacts/win-x64/package.json @@ -1,9 +1,9 @@ { "name": "@pnpm/win-x64", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pnpm-artifact" ], "license": "MIT", diff --git a/pnpm/dev/package.json b/pnpm/dev/package.json index 981144364a..b0acaf7549 100644 --- a/pnpm/dev/package.json +++ b/pnpm/dev/package.json @@ -19,7 +19,7 @@ }, "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "repository": "https://github.com/pnpm/pnpm/tree/main/pnpm/dev" } diff --git a/pnpm/package.json b/pnpm/package.json index 385a1073d0..2749f60473 100644 --- a/pnpm/package.json +++ b/pnpm/package.json @@ -1,10 +1,10 @@ { "name": "pnpm", - "version": "10.20.0", + "version": "11.0.0-alpha.0", "description": "Fast, disk space efficient package manager", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "dependencies", "dependency manager", "efficient", @@ -218,7 +218,7 @@ }, "preferGlobal": true, "publishConfig": { - "tag": "next-10", + "tag": "next-11", "executableFiles": [ "./dist/node-gyp-bin/node-gyp", "./dist/node-gyp-bin/node-gyp.cmd", diff --git a/registry/pkg-metadata-filter/package.json b/registry/pkg-metadata-filter/package.json index 206afa5468..de31604fcb 100644 --- a/registry/pkg-metadata-filter/package.json +++ b/registry/pkg-metadata-filter/package.json @@ -4,7 +4,7 @@ "description": "Filters the package metadata from the registry", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "pkg-doc" ], diff --git a/registry/types/package.json b/registry/types/package.json index 5714048a3a..278698516f 100644 --- a/registry/types/package.json +++ b/registry/types/package.json @@ -4,7 +4,7 @@ "description": "Types related to the npm registry", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm" ], "license": "MIT", diff --git a/releasing/plugin-commands-deploy/package.json b/releasing/plugin-commands-deploy/package.json index d937f4c09f..886a3c6d90 100644 --- a/releasing/plugin-commands-deploy/package.json +++ b/releasing/plugin-commands-deploy/package.json @@ -4,7 +4,7 @@ "description": "Commands for deploy", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/releasing/plugin-commands-publishing/package.json b/releasing/plugin-commands-publishing/package.json index 1fe9907823..8d85eccdb0 100644 --- a/releasing/plugin-commands-publishing/package.json +++ b/releasing/plugin-commands-publishing/package.json @@ -4,7 +4,7 @@ "description": "The pack and publish commands of pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "pack", "publish" ], diff --git a/resolving/bun-resolver/package.json b/resolving/bun-resolver/package.json index d484811bc9..7b90331efb 100644 --- a/resolving/bun-resolver/package.json +++ b/resolving/bun-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolves the Bun runtime", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "bun", "runtime" ], diff --git a/resolving/default-resolver/package.json b/resolving/default-resolver/package.json index 2bb615d46e..5370b45375 100644 --- a/resolving/default-resolver/package.json +++ b/resolving/default-resolver/package.json @@ -4,7 +4,7 @@ "description": "pnpm's default package resolver", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/resolving/deno-resolver/package.json b/resolving/deno-resolver/package.json index ea28e4b955..8d46c42c8e 100644 --- a/resolving/deno-resolver/package.json +++ b/resolving/deno-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolves the Deno runtime", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "deno", "runtime" ], diff --git a/resolving/git-resolver/package.json b/resolving/git-resolver/package.json index 067b25243f..77dbba60f0 100644 --- a/resolving/git-resolver/package.json +++ b/resolving/git-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolver for git-hosted packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/resolving/jsr-specifier-parser/package.json b/resolving/jsr-specifier-parser/package.json index 48ab93f5d8..5f8f56229e 100644 --- a/resolving/jsr-specifier-parser/package.json +++ b/resolving/jsr-specifier-parser/package.json @@ -4,7 +4,7 @@ "description": "Parser of jsr specifiers", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "jsr" ], "license": "MIT", diff --git a/resolving/local-resolver/package.json b/resolving/local-resolver/package.json index 6ce05461e3..714fe29c96 100644 --- a/resolving/local-resolver/package.json +++ b/resolving/local-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolver for local packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/resolving/npm-resolver/package.json b/resolving/npm-resolver/package.json index fcc4f8cd59..689211d287 100644 --- a/resolving/npm-resolver/package.json +++ b/resolving/npm-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolver for npm-hosted packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "npm", "resolver" ], diff --git a/resolving/resolver-base/package.json b/resolving/resolver-base/package.json index a5b7188f70..842fff30ca 100644 --- a/resolving/resolver-base/package.json +++ b/resolving/resolver-base/package.json @@ -4,7 +4,7 @@ "description": "Types for pnpm-compatible resolvers", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "resolver" ], "license": "MIT", diff --git a/resolving/tarball-resolver/package.json b/resolving/tarball-resolver/package.json index b0834fb25c..99020264f0 100644 --- a/resolving/tarball-resolver/package.json +++ b/resolving/tarball-resolver/package.json @@ -4,7 +4,7 @@ "description": "Resolver for tarball dependencies", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/reviewing/dependencies-hierarchy/package.json b/reviewing/dependencies-hierarchy/package.json index 51665f30d8..92fd889b90 100644 --- a/reviewing/dependencies-hierarchy/package.json +++ b/reviewing/dependencies-hierarchy/package.json @@ -4,7 +4,7 @@ "description": "Creates a dependencies hierarchy for a symlinked `node_modules`", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "dependencies", "hierarchy", "node_modules" diff --git a/reviewing/license-scanner/package.json b/reviewing/license-scanner/package.json index 0e1b911b3e..b55dac39bb 100644 --- a/reviewing/license-scanner/package.json +++ b/reviewing/license-scanner/package.json @@ -4,7 +4,7 @@ "description": "Check for licenses packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "licenses" ], "license": "MIT", diff --git a/reviewing/list/package.json b/reviewing/list/package.json index 1669407acf..4328cff9af 100644 --- a/reviewing/list/package.json +++ b/reviewing/list/package.json @@ -4,7 +4,7 @@ "description": "List installed packages in a symlinked `node_modules`", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "list", "ls" ], diff --git a/reviewing/outdated/package.json b/reviewing/outdated/package.json index 495801a296..87130e91f3 100644 --- a/reviewing/outdated/package.json +++ b/reviewing/outdated/package.json @@ -4,7 +4,7 @@ "description": "Check for outdated packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "outdated" ], "license": "MIT", diff --git a/reviewing/plugin-commands-licenses/package.json b/reviewing/plugin-commands-licenses/package.json index a1bcc0ebc7..74ff9f8f34 100644 --- a/reviewing/plugin-commands-licenses/package.json +++ b/reviewing/plugin-commands-licenses/package.json @@ -4,7 +4,7 @@ "description": "The licenses command of pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "licenses" ], "license": "MIT", diff --git a/reviewing/plugin-commands-listing/package.json b/reviewing/plugin-commands-listing/package.json index d3c339b55c..e635eb4ff3 100644 --- a/reviewing/plugin-commands-listing/package.json +++ b/reviewing/plugin-commands-listing/package.json @@ -4,7 +4,7 @@ "description": "The list and why commands of pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/reviewing/plugin-commands-outdated/package.json b/reviewing/plugin-commands-outdated/package.json index 3827d1dc41..4aadd5b4d9 100644 --- a/reviewing/plugin-commands-outdated/package.json +++ b/reviewing/plugin-commands-outdated/package.json @@ -4,7 +4,7 @@ "description": "The outdated command of pnpm", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "outdated" ], "license": "MIT", diff --git a/semver/peer-range/package.json b/semver/peer-range/package.json index 6a1e1b9b46..a85914b32a 100644 --- a/semver/peer-range/package.json +++ b/semver/peer-range/package.json @@ -4,7 +4,7 @@ "description": "Validates peer ranges", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "peer", "semver" ], diff --git a/store/cafs-types/package.json b/store/cafs-types/package.json index 130e3eb9f6..878bbc7a51 100644 --- a/store/cafs-types/package.json +++ b/store/cafs-types/package.json @@ -4,7 +4,7 @@ "description": "Types for the cafs", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/store/cafs/package.json b/store/cafs/package.json index 213730372d..3ad3f020c7 100644 --- a/store/cafs/package.json +++ b/store/cafs/package.json @@ -4,7 +4,7 @@ "description": "A content-addressable filesystem for the packages storage", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/store/create-cafs-store/package.json b/store/create-cafs-store/package.json index b2db398e02..9eb1ec1297 100644 --- a/store/create-cafs-store/package.json +++ b/store/create-cafs-store/package.json @@ -4,7 +4,7 @@ "description": "Create a CAFS store controller", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "cache", "central storage", "global store", diff --git a/store/package-store/package.json b/store/package-store/package.json index 8935ab723f..dc2aa85113 100644 --- a/store/package-store/package.json +++ b/store/package-store/package.json @@ -4,7 +4,7 @@ "description": "A storage for packages", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "cache", "central storage", "global store", diff --git a/store/plugin-commands-server/package.json b/store/plugin-commands-server/package.json index d88dd2113b..2f925912e4 100644 --- a/store/plugin-commands-server/package.json +++ b/store/plugin-commands-server/package.json @@ -4,7 +4,7 @@ "description": "Commands for controlling the store server", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "server" ], "license": "MIT", diff --git a/store/plugin-commands-store-inspecting/package.json b/store/plugin-commands-store-inspecting/package.json index 8ca637a98b..de81028893 100644 --- a/store/plugin-commands-store-inspecting/package.json +++ b/store/plugin-commands-store-inspecting/package.json @@ -4,7 +4,7 @@ "description": "The inspecting store commands of pnpm", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/store/plugin-commands-store/package.json b/store/plugin-commands-store/package.json index 61c4a9ebd8..fe7fbb8ccf 100644 --- a/store/plugin-commands-store/package.json +++ b/store/plugin-commands-store/package.json @@ -4,7 +4,7 @@ "description": "Commands for controlling the store", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "scripts" ], "license": "MIT", diff --git a/store/server/package.json b/store/server/package.json index 11f8983956..8f2a950874 100644 --- a/store/server/package.json +++ b/store/server/package.json @@ -4,7 +4,7 @@ "description": "A pnpm installer server", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "server" ], "license": "MIT", diff --git a/store/store-connection-manager/package.json b/store/store-connection-manager/package.json index 27cdace7dd..801a578221 100644 --- a/store/store-connection-manager/package.json +++ b/store/store-connection-manager/package.json @@ -4,7 +4,7 @@ "description": "Create a direct pnpm store controller or connect to a running store server", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/store/store-controller-types/package.json b/store/store-controller-types/package.json index c2378513d6..a12aa15902 100644 --- a/store/store-controller-types/package.json +++ b/store/store-controller-types/package.json @@ -4,7 +4,7 @@ "description": "Types for the store controller", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "types" ], "license": "MIT", diff --git a/store/store-path/package.json b/store/store-path/package.json index ec10c430ea..07acf3530d 100644 --- a/store/store-path/package.json +++ b/store/store-path/package.json @@ -4,7 +4,7 @@ "description": "Resolves the pnpm store path", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "store" ], "license": "MIT", diff --git a/testing/temp-store/package.json b/testing/temp-store/package.json index ef19ed97de..05661f78d4 100644 --- a/testing/temp-store/package.json +++ b/testing/temp-store/package.json @@ -4,7 +4,7 @@ "description": "A temporary store for testing purposes", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "store" ], "license": "MIT", diff --git a/text/comments-parser/package.json b/text/comments-parser/package.json index bc272fec56..e8864dcce4 100644 --- a/text/comments-parser/package.json +++ b/text/comments-parser/package.json @@ -4,7 +4,7 @@ "description": "Extracts and inserts comments from/to text", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/tools/path/package.json b/tools/path/package.json index dce7614eeb..c98596dcf0 100644 --- a/tools/path/package.json +++ b/tools/path/package.json @@ -4,7 +4,7 @@ "description": "Path to tools", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/tools/plugin-commands-self-updater/package.json b/tools/plugin-commands-self-updater/package.json index e39f725c38..b88ba13245 100644 --- a/tools/plugin-commands-self-updater/package.json +++ b/tools/plugin-commands-self-updater/package.json @@ -4,7 +4,7 @@ "description": "A command for updating pnpm itself", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/worker/package.json b/worker/package.json index 0ea7b3a888..02d9738039 100644 --- a/worker/package.json +++ b/worker/package.json @@ -4,7 +4,7 @@ "description": "A worker for extracting package taralls to the store", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "tarball" ], "license": "MIT", diff --git a/workspace/filter-packages-from-dir/package.json b/workspace/filter-packages-from-dir/package.json index 271ea5b676..48a19dec34 100644 --- a/workspace/filter-packages-from-dir/package.json +++ b/workspace/filter-packages-from-dir/package.json @@ -4,7 +4,7 @@ "description": "Filters packages in a directory", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/filter-workspace-packages/package.json b/workspace/filter-workspace-packages/package.json index f18cd6a9d7..b2476decc6 100644 --- a/workspace/filter-workspace-packages/package.json +++ b/workspace/filter-workspace-packages/package.json @@ -4,7 +4,7 @@ "description": "Filters packages in a workspace", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/find-packages/package.json b/workspace/find-packages/package.json index 0b0ddf508c..3bedaf0e36 100644 --- a/workspace/find-packages/package.json +++ b/workspace/find-packages/package.json @@ -4,7 +4,7 @@ "description": "Finds packages inside a workspace", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/find-workspace-dir/package.json b/workspace/find-workspace-dir/package.json index 2f37c4ed4e..6c1a0d3444 100644 --- a/workspace/find-workspace-dir/package.json +++ b/workspace/find-workspace-dir/package.json @@ -4,7 +4,7 @@ "description": "Finds the root of a pnpm workspace", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/injected-deps-syncer/package.json b/workspace/injected-deps-syncer/package.json index ee6d8b6dd9..954c024b73 100644 --- a/workspace/injected-deps-syncer/package.json +++ b/workspace/injected-deps-syncer/package.json @@ -4,7 +4,7 @@ "description": "Update all injected replica of a workspace package", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/manifest-writer/package.json b/workspace/manifest-writer/package.json index 7c7d302b54..6b328fbf94 100644 --- a/workspace/manifest-writer/package.json +++ b/workspace/manifest-writer/package.json @@ -4,7 +4,7 @@ "description": "Updates the workspace manifest file", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/pkgs-graph/package.json b/workspace/pkgs-graph/package.json index 8bdcb96043..c17add7825 100644 --- a/workspace/pkgs-graph/package.json +++ b/workspace/pkgs-graph/package.json @@ -4,7 +4,7 @@ "description": "Create a graph from an array of packages", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/read-manifest/package.json b/workspace/read-manifest/package.json index 1fde223e93..14d0e77610 100644 --- a/workspace/read-manifest/package.json +++ b/workspace/read-manifest/package.json @@ -4,7 +4,7 @@ "description": "Reads a workspace manifest file", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/resolve-workspace-range/package.json b/workspace/resolve-workspace-range/package.json index 26a4754ccd..60ee7673a4 100644 --- a/workspace/resolve-workspace-range/package.json +++ b/workspace/resolve-workspace-range/package.json @@ -4,7 +4,7 @@ "description": "Resolves a range from versions that are present inside a workspace", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/sort-packages/package.json b/workspace/sort-packages/package.json index 202e3af7de..23d6773256 100644 --- a/workspace/sort-packages/package.json +++ b/workspace/sort-packages/package.json @@ -4,7 +4,7 @@ "description": "Sort packages", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/spec-parser/package.json b/workspace/spec-parser/package.json index 233a403f64..eb28715b52 100644 --- a/workspace/spec-parser/package.json +++ b/workspace/spec-parser/package.json @@ -4,7 +4,7 @@ "description": "Parse and stringify workspace specifier", "keywords": [ "pnpm", - "pnpm10" + "pnpm11" ], "license": "MIT", "funding": "https://opencollective.com/pnpm", diff --git a/workspace/state/package.json b/workspace/state/package.json index 6c49f668f8..29b9909b3e 100644 --- a/workspace/state/package.json +++ b/workspace/state/package.json @@ -4,7 +4,7 @@ "description": "Track the list of actual paths of workspace packages in a cache", "keywords": [ "pnpm", - "pnpm10", + "pnpm11", "mtime" ], "license": "MIT",