Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

chore(deps): update pnpm to v10.13.1#2322

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/pnpm-10.x

Conversation

renovate[bot]
Copy link
Contributor

@renovaterenovatebot commentedMay 13, 2025
edited
Loading

This PR contains the following updates:

PackageChangeAgeConfidence
pnpm (source)10.10.0 ->10.13.1ageconfidence

Release Notes

pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. Thepnpmfile setting can now accept a list of pnpmfile locations#​9702.

  • pnpm will now automatically load thepnpmfile.cjs file from anyconfig dependency named@pnpm/plugin-* orpnpm-plugin-*#​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to thepnpmfile.cjs files in the config dependencies can be explicitly listed using thepnpmfile setting inpnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed viapkg.pr.new, treat them as Git tarball URLs#​9694.
  • Prevent conflicts between local projects' config and the global config indangerouslyAllowAllBuilds,onlyBuiltDependencies,onlyBuiltDependenciesFile, andneverBuiltDependencies#​9628.
  • Sort keys inpnpm-workspace.yaml with deep#​9701.
  • Thepnpm rebuild command should not add pkgs included inignoredBuiltDependencies toignoredBuilds innode_modules/.modules.yaml#​9338.
  • Replacedshell-quote withshlex for quoting command arguments#​9381.

v10.12.4

Compare Source

Patch Changes

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced inv10.12.2 by#​9648; resolves#​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting withenableGlobalVirtualStore set totrue#​9648.
  • Fix the--help and-h flags not working as expected for thepnpm create command.
  • The dependency package path output by thepnpm licenses list --json command is incorrect.
  • Fix a bug in whichpnpm deploy fails due to overridden dependencies having peer dependencies causingERR_PNPM_OUTDATED_LOCKFILE#​9595.

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled,node_modules contains only symlinks to a central virtual store, rather tonode_modules/.pnpm. By default, this central store is located at<store-path>/links (you can find the store path by runningpnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to howNixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, setenableGlobalVirtualStore: true in your rootpnpm-workspace.yaml, or globally via:

    pnpm config -gset enable-global-virtual-storetrue

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR:#​8190

  • Thepnpm update command now supports updatingcatalog: protocol dependencies and writes new specifiers topnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and--save-catalog-name=<name>) topnpm add to save new dependencies as catalog entries.catalog: orcatalog:<name> will be added topackage.json and the package specifier will be added to thecatalogs orcatalog[<name>] object inpnpm-workspace.yaml#​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead#​9605.
  • Added a new setting calledci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed bypnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects#​9598.
  • Revert#​9574 to fix a regression#​9596.

v10.11.1

Compare Source

Patch Changes
  • Fix an issue in whichpnpm deploy --legacy creates unexpected directories when the rootpackage.json has a workspace package as a peer dependency#​9550.
  • Dependencies specified via a URL that redirects will only be locked to the target if it is immutable, fixing a regression when installing from GitHub releases. (#​9531)
  • Installation should not exit with an error ifstrictPeerDependencies istrue but all issues are ignored bypeerDependencyRules#​9505.
  • Usepnpm_config_ env variables instead ofnpm_config_#​9571.
  • Fix a regression (in v10.9.0) causing the--lockfile-only flag onpnpm update to produce a differentpnpm-lock.yaml than an update without the flag.
  • Letpnpm deploy work in repos withoverrides wheninject-workspace-packages=true#​9283.
  • Fixed the problem of path loss caused by parsing URL address. Fixes a regression shipped in pnpm v10.11 via#​9502.
  • pnpm -r --silent run should not print out section#​9563.

v10.11.0

Compare Source

Minor Changes
  • A new setting added forpnpm init to create apackage.json withtype=module, wheninit-type ismodule. Works as a flag for the init command too#​9463.

  • Added support for Nushell topnpm setup#​6476.

  • Added two new flags to thepnpm audit command,--ignore and--ignore-unfixable#​8474.

    Ignore all vulnerabilities that have no solution:

    > pnpm audit --ignore-unfixable

    Provide a list of CVE's to ignore those specifically, even if they have a resolution.

    > pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678
  • Added support for recursively running pack in every project of a workspace#​4351.

    Now you can runpnpm -r pack to pack all packages in the workspace.

Patch Changes
  • pnpm version management should work, whendangerouslyAllowAllBuilds is set totrue#​9472.
  • pnpm link should work from inside a workspace#​9506.
  • Set the defaultworkspaceConcurrency toMath.min(os.availableParallelism(), 4)#​9493.
  • Installation should not exit with an error ifstrictPeerDependencies istrue but all issues are ignored bypeerDependencyRules#​9505.
  • ReadupdateConfig frompnpm-workspace.yaml#​9500.
  • Add support forrecursive pack
  • Removeurl.parse usage to fix warning on Node.js 24#​9492.
  • pnpm run should be able to run commands from the workspace root, ifignoreScripts is set tottrue#​4858.

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 byMend Renovate. View therepository job log.

@renovaterenovatebot requested a review froma team as acode ownerMay 13, 2025 16:21
@renovaterenovatebot requested a review fromduncanbeeversMay 13, 2025 16:21
@changeset-botchangeset-bot
Copy link

changeset-botbot commentedMay 13, 2025
edited
Loading

⚠️ No Changeset found

Latest commit:41d7802

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go.If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actionsGitHub Actions
Copy link
Contributor

github-actionsbot commentedMay 13, 2025
edited
Loading

size-limit report 📦

PathSize
packages/openapi-fetch/dist/index.mjs6.7 KB (0%)

@netlifyNetlify
Copy link

netlifybot commentedMay 13, 2025
edited
Loading

Deploy Preview foropenapi-ts canceled.

NameLink
🔨 Latest commit41d7802
🔍 Latest deploy loghttps://app.netlify.com/projects/openapi-ts/deploys/686eabc742c066000853f27c

@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch from8387590 to82b8589CompareJune 2, 2025 19:23
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.11.0chore(deps): update pnpm to v10.11.1Jun 2, 2025
@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch from82b8589 to7fc1d01CompareJune 8, 2025 14:55
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.11.1chore(deps): update pnpm to v10.12.1Jun 8, 2025
@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch from7fc1d01 to463fae3CompareJune 23, 2025 00:48
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.12.1chore(deps): update pnpm to v10.12.2Jun 23, 2025
@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch from463fae3 tofe48b7dCompareJune 24, 2025 10:51
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.12.2chore(deps): update pnpm to v10.12.3Jun 24, 2025
@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch fromfe48b7d to9c4ddf2CompareJune 26, 2025 20:38
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.12.3chore(deps): update pnpm to v10.12.4Jun 26, 2025
@renovaterenovatebotforce-pushed therenovate/pnpm-10.x branch from9c4ddf2 to41d7802CompareJuly 9, 2025 17:49
@renovaterenovatebot changed the titlechore(deps): update pnpm to v10.12.4chore(deps): update pnpm to v10.13.1Jul 9, 2025
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@duncanbeeversduncanbeeversAwaiting requested review from duncanbeeversduncanbeevers is a code owner automatically assigned from openapi-ts/maintainers

At least 1 approving review is required to merge this pull request.

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

0 participants

[8]ページ先頭

©2009-2025 Movatter.jp