-
-
Notifications
You must be signed in to change notification settings - Fork 8
chore(deps): update pnpm to v10.15.1 #63
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
479d40b
to
12f232e
Compare
12f232e
to
4baec37
Compare
4baec37
to
1472388
Compare
1472388
to
4c20f45
Compare
4c20f45
to
9a3f215
Compare
9a3f215
to
5d5d530
Compare
5d5d530
to
d8079f3
Compare
d8079f3
to
1187ff0
Compare
1187ff0
to
0bd1716
Compare
0bd1716
to
9a50185
Compare
8360580
to
19b60ff
Compare
Claude finished @renovate[bot]'s task —— View job 📋 PR Review: pnpm v10.15.0 UpdateStatus: ✅ APPROVED - Safe dependency update with beneficial improvements Todo List:
📝 Review SummaryThis PR updates pnpm from 🔍 Change AnalysisFile: - "packageManager": "[email protected]"
+ "packageManager": "[email protected]" ✅ Code Quality & Best Practices
🚀 Notable New Features in v10.15.0
🐛 Potential Bugs or IssuesAssessment: ✅ None identified
🚀 Performance ConsiderationsImpact: ✅ Positive
🔒 Security AssessmentStatus: ✅ Secure
🧪 Test CoverageAssessment: ✅ Adequate
📊 Project Impact AnalysisCompatibility: ✅ Excellent
🎁 Potential Benefits for This Project
✅ Final RecommendationAPPROVE and MERGE - This is an exemplary dependency update that:
The update aligns perfectly with dependency management best practices and provides tangible benefits with zero risk. |
19b60ff
to
66051c4
Compare
Claude finished @renovate[bot]'s task —— View job 📋 PR Review: pnpm v10.15.0 UpdateStatus: ✅ APPROVED - Safe dependency update with beneficial improvements Todo List:
📝 Review SummaryThis PR updates pnpm from 🔍 Change AnalysisFile: - "packageManager": "[email protected]"
+ "packageManager": "[email protected]" ✅ Code Quality & Best Practices
🚀 Notable New Features in v10.15.0
🐛 Potential Bugs or IssuesAssessment: ✅ None identified
🚀 Performance ConsiderationsImpact: ✅ Positive
🔒 Security AssessmentStatus: ✅ Secure
🧪 Test CoverageAssessment: ✅ Adequate
📊 Project Impact AnalysisCompatibility: ✅ Excellent
🎁 Potential Benefits for This Project
✅ Final RecommendationAPPROVE and MERGE - This is an exemplary dependency update that:
The update aligns perfectly with dependency management best practices and provides tangible benefits with zero risk. |
66051c4
to
0825ac7
Compare
Claude finished @renovate[bot]'s task —— View job 📋 PR Review: pnpm v10.15.1 UpdateStatus: ✅ APPROVED - Safe dependency update with beneficial improvements Todo List:
📝 Review SummaryThis PR updates pnpm from 🔍 Change AnalysisFile: - "packageManager": "[email protected]"
+ "packageManager": "[email protected]" ✅ Code Quality & Best Practices
🚀 Notable Improvements in v10.15.1Based on the PR description, v10.15.1 includes:
🐛 Potential Bugs or IssuesAssessment: ✅ None identified
🚀 Performance ConsiderationsImpact: ✅ Positive
🔒 Security AssessmentStatus: ✅ Secure
🧪 Test CoverageAssessment: ✅ Adequate
📊 Project Impact AnalysisCompatibility: ✅ Excellent
🎁 Benefits for This Project
✅ Final RecommendationAPPROVE and MERGE - This is a safe, beneficial patch update that:
The update follows dependency management best practices and provides stability improvements with zero risk. |
0825ac7
to
e3762d7
Compare
e3762d7
to
6b875b8
Compare
6b875b8
to
4033556
Compare
4033556
to
661cebc
Compare
661cebc
to
b1e07b7
Compare
b1e07b7
to
f4f702e
Compare
f4f702e
to
4b678b8
Compare
4b678b8
to
1f5004a
Compare
| datasource | package | from | to | | ---------- | ------- | ------- | ------- | | npm | pnpm | 10.12.1 | 10.15.1 |
1f5004a
to
834c14b
Compare
This PR contains the following updates:
10.12.1
->10.15.1
Release Notes
pnpm/pnpm (pnpm)
v10.15.1
Compare Source
Patch Changes
.pnp.cjs
crash when importing subpath #9904.v10.15.0
Compare Source
Minor Changes
cleanupUnusedCatalogs
configuration. When set totrue
, pnpm will remove unused catalog entries during installation #9793.@*/pnpm-plugin-*
#9780.pnpm config get
now prints an INI string for an object value #9797.pnpm config get
now accepts property paths (e.g.pnpm config get catalog.react
,pnpm config get .catalog.react
,pnpm config get 'packageExtensions["@​babel/parser"].peerDependencies["@​babel/types"]'
), andpnpm config set
now accepts dot-leading or subscripted keys (e.g.pnpm config set .ignoreScripts true
).pnpm config get --json
now prints a JSON serialization of config value, andpnpm config set --json
now parses the input value as JSON.Patch Changes
pnpm create
command, must verify whether the node version is supported even if a cache already exists #9775.*/*
to theAccept
header to avoid getting a 406 error on AWS CodeArtifact #9862.pnpm dlx pkg --help
doesn't pass--help
topkg
#9823.v10.14.0
Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime
(insidepackage.json
) and let pnpm download and pin it automatically.Usage example:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu
,--libc
, and--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config 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 the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.v10.12.4
Compare Source
Patch Changes
Fix
pnpm licenses
command for local dependencies #9583.Fix a bug in which
pnpm ls --filter=not-exist --json
prints nothing instead of an empty array #9672.Fix a deadlock that sometimes happens during peer dependency resolution #9673.
Running
pnpm install
afterpnpm fetch
should hoist all dependencies that need to be hoisted.Fixes a regression introduced in [v10.12.2] by [#9648]; resolves [#9689].
[v10.12.2]: https://redirect.github.com/pnpm/pnpm/releases/tag/v10.12.2Add commentMore actions
[#9648]: https://github.com/pnpm/pnpm/pull/9648
[#9689]: https://github.com/pnpm/pnpm/issues/9689
v10.12.3
Compare Source
Patch Changes
Regression introduced in v10.12.2 by #9648; resolves #9685.
v10.12.2
Compare Source
Patch Changes
enableGlobalVirtualStore
set totrue
#9648.--help
and-h
flags not working as expected for thepnpm create
command.pnpm licenses list --json
command is incorrect.pnpm deploy
fails due to overridden dependencies having peer dependencies causingERR_PNPM_OUTDATED_LOCKFILE
#9595.Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) in timezone America/New_York, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.