From a551e492b7256ddb8829ffbbcab2e9bdfc1c5b248b3c9c2c6290d9d9d56374e7 Mon Sep 17 00:00:00 2001 From: Johannes Kastl Date: Sat, 13 Dec 2025 13:37:31 +0100 Subject: [PATCH 1/2] update to 10.24.0 --- pnpm-10.23.0.tgz | 3 --- pnpm-10.24.0.tgz | 3 +++ pnpm.changes | 28 +++++++++++++++++++++++++++- pnpm.spec | 2 +- 4 files changed, 31 insertions(+), 5 deletions(-) delete mode 100644 pnpm-10.23.0.tgz create mode 100644 pnpm-10.24.0.tgz diff --git a/pnpm-10.23.0.tgz b/pnpm-10.23.0.tgz deleted file mode 100644 index 6847678..0000000 --- a/pnpm-10.23.0.tgz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a1cdd7b468386a9d78a081da05d6049d7e598db62a299db92df21a7062a4b183 -size 4177071 diff --git a/pnpm-10.24.0.tgz b/pnpm-10.24.0.tgz new file mode 100644 index 0000000..5a7571b --- /dev/null +++ b/pnpm-10.24.0.tgz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:196f4bd174ebcbd99786b33452f144cb2dc32ef4e7138ed44491e9d43d702d75 +size 4177720 diff --git a/pnpm.changes b/pnpm.changes index ccd662c..7e92e3e 100644 --- a/pnpm.changes +++ b/pnpm.changes @@ -1,8 +1,34 @@ +------------------------------------------------------------------- +Sat Dec 13 12:35:54 UTC 2025 - Johannes Kastl + +- update to 10.24.0: + * Minor Changes + - Increased network concurrency on machines with many CPU + cores. pnpm now automatically selects a network concurrency + between 16 and 64, based on the number of pnpm workers + (calculated as workers × 3). This improves performance on + high-core systems #10068. + * Patch Changes + - trustPolicy should ignore the trust evidences of prerelease + versions, when installing a non-prerelease version. + - Handle ENOENT errors thrown by fs.linkSync(), which can occur + in containerized environments (OverlayFS) instead of EXDEV. + The operation now gracefully falls back to fs.copyFileSync() + in these cases #10217. + - Reverted: pnpm self-update should download pnpm from the + configured npm registry #10205. + - Packages that don't have a package.json file (like Node.js) + should not be reimported from the store on every install. + Another file from the package should be checked in order to + verify its presence in node_modules. + - Correctly read auth tokens for URLs that contain underscores + #17. + ------------------------------------------------------------------- Sun Nov 23 09:07:44 UTC 2025 - Johannes Kastl - update to 10.23.0: -* Minor Changes + * Minor Changes - Added --lockfile-only option to pnpm list #10020. * Patch Changes - pnpm self-update should download pnpm from the configured npm diff --git a/pnpm.spec b/pnpm.spec index 73e945b..3bdfb1a 100644 --- a/pnpm.spec +++ b/pnpm.spec @@ -23,7 +23,7 @@ %global __nodejs_provides %{nil} %global __nodejs_requires %{nil} Name: pnpm -Version: 10.23.0 +Version: 10.24.0 Release: 0 Summary: Fast, disk space efficient package manager License: MIT -- 2.51.1 From f829e8dc630cf7a7f6df0103f8add71ad166876aa8c65d4b53251631a4efeca4 Mon Sep 17 00:00:00 2001 From: Johannes Kastl Date: Sat, 13 Dec 2025 13:42:33 +0100 Subject: [PATCH 2/2] update to 10.25.0 --- pnpm-10.24.0.tgz | 3 --- pnpm-10.25.0.tgz | 3 +++ pnpm.changes | 25 +++++++++++++++++++++++++ pnpm.spec | 2 +- 4 files changed, 29 insertions(+), 4 deletions(-) delete mode 100644 pnpm-10.24.0.tgz create mode 100644 pnpm-10.25.0.tgz diff --git a/pnpm-10.24.0.tgz b/pnpm-10.24.0.tgz deleted file mode 100644 index 5a7571b..0000000 --- a/pnpm-10.24.0.tgz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:196f4bd174ebcbd99786b33452f144cb2dc32ef4e7138ed44491e9d43d702d75 -size 4177720 diff --git a/pnpm-10.25.0.tgz b/pnpm-10.25.0.tgz new file mode 100644 index 0000000..0279286 --- /dev/null +++ b/pnpm-10.25.0.tgz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3726654b0b5e52e5800904de168afc3c667e2abf84bdb06d9ac1386104bd90 +size 4179482 diff --git a/pnpm.changes b/pnpm.changes index 7e92e3e..c84892a 100644 --- a/pnpm.changes +++ b/pnpm.changes @@ -1,3 +1,28 @@ +------------------------------------------------------------------- +Sat Dec 13 12:41:20 UTC 2025 - Johannes Kastl + +- update to 10.25.0: + * Minor Changes + - Allow loading certificates from cert, ca, and key for + specific registry URLs. E.g., + //registry.example.com/:ca=-----BEGIN CERTIFICATE-----.... + Previously this was only working via certfile, cafile, and + keyfile. + These properties are supported in .npmrc, but were ignored by + pnpm, this will make pnpm read and use them as well. + Related PR: #10230. + - Added a new flag called --bare to pnpm init for creating a + package.json with the bare minimum of required fields #10226. + * Patch Changes + - Improved reporting of ignored dependency scripts #10276. + - pnpm install should build any dependencies that were added to + onlyBuiltDependencies and were not built yet #10256. + - pnpm publish -r --force should allow to run publish over + already existing versions in the registry #10272. + - Don't fail with a ERR_PNPM_MISSING_TIME error if a package + that is excluded from trust policy checks is missing the time + field in the metadata. + ------------------------------------------------------------------- Sat Dec 13 12:35:54 UTC 2025 - Johannes Kastl diff --git a/pnpm.spec b/pnpm.spec index 3bdfb1a..69cf769 100644 --- a/pnpm.spec +++ b/pnpm.spec @@ -23,7 +23,7 @@ %global __nodejs_provides %{nil} %global __nodejs_requires %{nil} Name: pnpm -Version: 10.24.0 +Version: 10.25.0 Release: 0 Summary: Fast, disk space efficient package manager License: MIT -- 2.51.1