pnpm_10: 10.34.0 -> 10.34.4 (#525381)

This commit is contained in:
dotlambda
2026-06-27 14:56:40 +00:00
committed by GitHub
5 changed files with 20 additions and 5 deletions
+2
View File
@@ -56,6 +56,8 @@
- `librest` providing 0.7 ABI was removed. `librest_1_0` providing 1.0 ABI was renamed to `librest` and `librest_1_0` was kept as an alias.
- `pnpm_10` was upgraded to version 10.34.1+, which introduced stricter integrity checks. If you encounter `ERR_PNPM_MISSING_TARBALL_INTEGRITY`, you can fall back to the older `pnpm_10_34_0`.
- `fetchPnpmDeps`' `fetcherVersion = 1` and `fetcherVersion = 2` have been
removed, as announced in the 26.05 release. Packages still using them now
throw an evaluation error and must migrate to `fetcherVersion = 3` (or later)
+2 -2
View File
@@ -15,7 +15,7 @@
pango,
pixman,
pkg-config,
pnpm_10,
pnpm_10_34_0,
fetchPnpmDeps,
pnpmConfigHook,
python3,
@@ -24,7 +24,7 @@
}:
let
pnpm = pnpm_10.override { nodejs-slim = nodejs-slim_22; };
pnpm = pnpm_10_34_0.override { nodejs-slim = nodejs-slim_22; };
in
stdenv.mkDerivation (finalAttrs: {
pname = "sharkey";
@@ -4,13 +4,13 @@
fetchFromGitHub,
fetchPnpmDeps,
pnpmConfigHook,
pnpm_10,
pnpm_10_34_0,
nodejs,
nix-update-script,
makeBinaryWrapper,
}:
let
pnpm = pnpm_10;
pnpm = pnpm_10_34_0;
in
stdenv.mkDerivation (finalAttrs: {
pname = "vue-language-server";
+13 -1
View File
@@ -30,9 +30,21 @@ let
"CVE-2026-55699"
];
};
"10" = {
# 10.34.1 made a breaking change that causes
# ERR_PNPM_MISSING_TARBALL_INTEGRITY error for some packages.
"10_34_0" = {
version = "10.34.0";
hash = "sha256-WOFDJYhx31FYm2UcBiBdq+xIdmpdu6PCWZm2m1C+WY4=";
knownVulnerabilities = [
"CVE-2026-55487"
"CVE-2026-55698"
"CVE-2026-55180"
"CVE-2026-55697"
];
};
"10" = {
version = "10.34.4";
hash = "sha256-mM1XGNvYxLJokVZJO5WWzs9rZLGpjUoIfoITWhdbQOs=";
};
"11" = {
version = "11.9.0";
+1
View File
@@ -2812,6 +2812,7 @@ with pkgs;
pnpm_8
pnpm_9
pnpm_10_29_2
pnpm_10_34_0
pnpm_10
pnpm_11
;