Skip to content

chore(deps): update pnpm to v10.28.2#49

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/pnpm-10.x
Open

chore(deps): update pnpm to v10.28.2#49
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/pnpm-10.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 7, 2025

This PR contains the following updates:

Package Change Age Confidence
pnpm (source) 10.17.110.28.2 age confidence

Release Notes

pnpm/pnpm (pnpm)

v10.28.2

Compare Source

v10.28.1

Compare Source

v10.28.0

Compare Source

v10.27.0

Compare Source

v10.26.2: pnpm 10.26.2

Compare Source

Patch Changes

  • Improve error message when a package version exists but does not meet the minimumReleaseAge constraint. The error now clearly states that the version exists and shows a human-readable time since release (e.g., "released 6 hours ago") #​10307.

  • Fix installation of Git dependencies using annotated tags #​10335.

    Previously, pnpm would store the annotated tag object's SHA in the lockfile instead of the actual commit SHA. This caused ERR_PNPM_GIT_CHECKOUT_FAILED errors because the checked-out commit hash didn't match the stored tag object hash.

  • Binaries of runtime engines (Node.js, Deno, Bun) are written to node_modules/.bin before lifecycle scripts (install, postinstall, prepare) are executed #​10244.

  • Try to avoid making network calls with preferOffline #​10334.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.26.1: pnpm 10.26.1

Compare Source

Patch Changes

  • Don't fail on pnpm add, when blockExoticSubdeps is set to true #​10324.
  • Always resolve git references to full commits and ensure HEAD points to the commit after checkout #​10310.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.26.0

Compare Source

v10.25.0

Compare Source

v10.24.0

Compare Source

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:is-odd@3.0.1) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.22.0: pnpm 10.22

Compare Source

Minor Changes

  • Added support for trustPolicyExclude #​10164.

    You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example:

    trustPolicy: no-downgrade
    trustPolicyExclude:
      - chokidar@4.0.3
      - webpack@4.47.0 || 5.102.1
  • Allow to override the engines field on publish by the publishConfig.engines field.

Patch Changes

  • Don't crash when two processes of pnpm are hardlinking the contents of a directory to the same destination simultaneously #​10179.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite

v10.21.0

Compare Source

v10.20.0

Compare Source

Minor Changes
  • Support --all option in pnpm --help to list all commands #​8628.
Patch Changes
  • When the latest version doesn't satisfy the maturity requirement configured by minimumReleaseAge, pick the highest version that is mature enough, even if it has a different major version #​10100.
  • create command should not verify patch info.
  • Set managePackageManagerVersions to false, when switching to a different version of pnpm CLI, in order to avoid subsequent switches #​10063.

v10.19.0

Compare Source

Minor Changes
  • You can now allow specific versions of dependencies to run postinstall scripts. onlyBuiltDependencies now accepts package names with lists of trusted versions. For example:

    onlyBuiltDependencies:
      - nx@21.6.4 || 21.6.5
      - esbuild@0.25.1

    Related PR: #​10104.

  • Added support for exact versions in minimumReleaseAgeExclude #​9985.

    You can now list one or more specific versions that pnpm should allow to install, even if those versions don’t satisfy the maturity requirement set by minimumReleaseAge. For example:

    minimumReleaseAge: 1440
    minimumReleaseAgeExclude:
      - nx@21.6.5
      - webpack@4.47.0 || 5.102.1

v10.18.3

Compare Source

Patch Changes
  • Fix a bug where pnpm would infinitely recurse when using verifyDepsBeforeInstall: install and pre/post install scripts that called other pnpm scripts #​10060.
  • Fixed scoped registry keys (e.g., @scope:registry) being parsed as property paths in pnpm config get when --location=project is used #​9362.
  • Remove pnpm-specific CLI options before passing to npm publish to prevent "Unknown cli config" warnings #​9646.
  • Fixed EISDIR error when bin field points to a directory #​9441.
  • Preserve version and hasBin for variations packages #​10022.
  • Fixed pnpm config set --location=project incorrectly handling keys with slashes (auth tokens, registry settings) #​9884.
  • When both pnpm-workspace.yaml and .npmrc exist, pnpm config set --location=project now writes to pnpm-workspace.yaml (matching read priority) #​10072.
  • Prevent a table width error in pnpm outdated --long #​10040.
  • Sync bin links after injected dependencies are updated by build scripts. This ensures that binaries created during build processes are properly linked and accessible to consuming projects #​10057.

v10.18.2

Compare Source

Patch Changes
  • pnpm outdated --long should work #​10040.
  • Replace ndjson with split2. Reduce the bundle size of pnpm CLI #​10054.
  • pnpm dlx should request the full metadata of packages, when minimumReleaseAge is set #​9963.
  • pnpm version switching should work when the pnpm home directory is in a symlinked directory #​9715.
  • Fix EPIPE errors when piping output to other commands #​10027.

v10.18.1

Compare Source

Patch Changes
  • Don't print a warning, when --lockfile-only is used #​8320.
  • pnpm setup creates a command shim to the pnpm executable. This is needed to be able to run pnpm self-update on Windows #​5700.
  • When using pnpm catalogs and running a normal pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when using pnpm add --save-catalog as originally intended.

v10.18.0

Compare Source

Minor Changes
  • Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.

    Added configuration options for warning thresholds: fetchWarnTimeoutMs and fetchMinSpeedKiBps.
    Warning messages are displayed when requests exceed time thresholds or fall below speed minimums

    Related PR: #​10025.

Patch Changes
  • Retry filesystem operations on EAGAIN errors #​9959.
  • Outdated command respects minimumReleaseAge configuration #​10030.
  • Correctly apply the cleanupUnusedCatalogs configuration when removing dependent packages.
  • Don't fail with a meaningless error when scriptShell is set to false #​8748.
  • pnpm dlx should not fail when minimumReleaseAge is set #​10037.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title chore(deps): update pnpm to v10.2.1 chore(deps): update pnpm to v10.3.0 Feb 12, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch 2 times, most recently from f439371 to 5dcffa1 Compare February 15, 2025 07:04
@renovate renovate bot changed the title chore(deps): update pnpm to v10.3.0 chore(deps): update pnpm to v10.4.0 Feb 15, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.4.0 chore(deps): update pnpm to v10.4.1 Feb 18, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 5dcffa1 to e4306ac Compare February 18, 2025 07:48
@renovate renovate bot changed the title chore(deps): update pnpm to v10.4.1 chore(deps): update pnpm to v10.5.2 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from e4306ac to eff0da7 Compare February 27, 2025 20:08
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from eff0da7 to 63588be Compare March 6, 2025 23:49
@renovate renovate bot changed the title chore(deps): update pnpm to v10.5.2 chore(deps): update pnpm to v10.6.0 Mar 6, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 63588be to 34db69d Compare March 8, 2025 07:28
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.0 chore(deps): update pnpm to v10.6.1 Mar 8, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.1 chore(deps): update pnpm to v10.6.2 Mar 10, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch 2 times, most recently from 2fcb40a to 2ec7db1 Compare March 14, 2025 07:30
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.2 chore(deps): update pnpm to v10.6.3 Mar 14, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.3 chore(deps): update pnpm to v10.6.3 - autoclosed Mar 14, 2025
@renovate renovate bot closed this Mar 14, 2025
@renovate renovate bot deleted the renovate/pnpm-10.x branch March 14, 2025 10:25
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.3 - autoclosed chore(deps): update pnpm to v10.6.3 Mar 18, 2025
@renovate renovate bot reopened this Mar 18, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 53e0bec to 2ec7db1 Compare March 18, 2025 04:09
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.3 chore(deps): update pnpm to v10.6.4 Mar 18, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.4 chore(deps): update pnpm to v10.6.5 Mar 21, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch 2 times, most recently from 3f05573 to f4b40fe Compare March 26, 2025 20:10
@renovate renovate bot changed the title chore(deps): update pnpm to v10.6.5 chore(deps): update pnpm to v10.7.0 Mar 26, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.7.0 chore(deps): update pnpm to v10.7.1 Apr 2, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from f4b40fe to edf00f7 Compare April 2, 2025 00:07
@renovate renovate bot changed the title chore(deps): update pnpm to v10.7.1 chore(deps): update pnpm to v10.8.0 Apr 9, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.11.1 chore(deps): update pnpm to v10.12.1 Jun 14, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 88f4aa9 to f6f9333 Compare June 29, 2025 12:05
@renovate renovate bot changed the title chore(deps): update pnpm to v10.12.1 chore(deps): update pnpm to v10.12.4 Jun 29, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from f6f9333 to 8b6fb4d Compare July 14, 2025 00:03
@renovate renovate bot changed the title chore(deps): update pnpm to v10.12.4 chore(deps): update pnpm to v10.13.1 Jul 14, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 8b6fb4d to 1858c9c Compare August 4, 2025 00:01
@renovate renovate bot changed the title chore(deps): update pnpm to v10.13.1 chore(deps): update pnpm to v10.14.0 Aug 4, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 1858c9c to 2b50c7c Compare August 23, 2025 12:05
@renovate renovate bot changed the title chore(deps): update pnpm to v10.14.0 chore(deps): update pnpm to v10.15.0 Aug 23, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 2b50c7c to c0e3521 Compare September 2, 2025 10:48
@renovate renovate bot changed the title chore(deps): update pnpm to v10.15.0 chore(deps): update pnpm to v10.15.1 Sep 2, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from c0e3521 to 31be46a Compare September 14, 2025 23:50
@renovate renovate bot changed the title chore(deps): update pnpm to v10.15.1 chore(deps): update pnpm to v10.16.1 Sep 14, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 31be46a to 29cb7ba Compare September 18, 2025 19:57
@renovate renovate bot changed the title chore(deps): update pnpm to v10.16.1 chore(deps): update pnpm to v10.17.0 Sep 18, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 29cb7ba to 16a74b7 Compare September 22, 2025 19:44
@renovate renovate bot changed the title chore(deps): update pnpm to v10.17.0 chore(deps): update pnpm to v10.17.1 Sep 22, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.17.1 chore(deps): update pnpm to v10.17.1 - autoclosed Oct 2, 2025
@renovate renovate bot closed this Oct 2, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.17.1 - autoclosed chore(deps): update pnpm to v10.17.1 Oct 2, 2025
@renovate renovate bot reopened this Oct 2, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 3961ea6 to 16a74b7 Compare October 2, 2025 17:48
@renovate renovate bot changed the title chore(deps): update pnpm to v10.17.1 chore(deps): update pnpm to v10.18.0 Oct 2, 2025
@github-actions
Copy link
Copy Markdown

github-actions bot commented Oct 2, 2025

Bundle Stats

Hey there, this message comes from a GitHub action that helps you and reviewers to understand how these changes affect the size of this project's bundle.

As this PR is updated, I'll keep you updated on how the bundle size is impacted.

Total

Files count Total bundle size % Changed
20 1.35 MB 0%

Changeset

No files were changed

View detailed bundle breakdown

Added

No assets were added

Removed

No assets were removed

Bigger

No assets were bigger

Smaller

No assets were smaller

Unchanged

Asset File Size % Changed
background.js 183.16 kB 0%
chunks/options-BBZgUUAn.js 0 B 0%
chunks/popup-BBZgUUAn.js 0 B 0%
chunks/main-BxTEcK1X.js 237.58 kB 0%
chunks/_virtual_wxt-plugins-CTZHCtDH.js 222.56 kB 0%
chunks/default-DSy5N2ww.js 615 B 0%
chunks/options-DVYxjzTA.js 6.69 kB 0%
chunks/index-kO9m0LRa.js 260.76 kB 0%
chunks/time-Dlir8RSU.js 107 kB 0%
chunks/options-DcrIVJ3t.js 7.3 kB 0%
chunks/options@fab-CUwxzTjn.js 96.73 kB 0%
chunks/ofetch.03887fc3-CQu2Ux2r.js 17.65 kB 0%
chunks/popup-CeiCEkcW.js 73.79 kB 0%
chunks/browser-polyfill-DxU86wVm.js 54.25 kB 0%
chunks/account-n3te4ypz.js 1.68 kB 0%
chunks/preferences-BeNohA-E.js 79.82 kB 0%
chunks/index-BsIZu-dY.js 5.06 kB 0%
chunks/use-field-context-B857E7HE.js 71 B 0%
chunks/clean-props-CP9s--K6.js 187 B 0%
chunks/storage-s7OR0LLs.js 27.17 kB 0%

@renovate renovate bot force-pushed the renovate/pnpm-10.x branch 2 times, most recently from e865104 to 1573a5c Compare October 6, 2025 14:58
@renovate renovate bot changed the title chore(deps): update pnpm to v10.18.0 chore(deps): update pnpm to v10.18.1 Oct 6, 2025
@renovate renovate bot changed the title chore(deps): update pnpm to v10.18.1 chore(deps): update pnpm to v10.18.2 Oct 9, 2025
@renovate renovate bot force-pushed the renovate/pnpm-10.x branch from 1573a5c to db90898 Compare October 9, 2025 23:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants