fix(deps): update dependency @pnpm/logger to v5#23987
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 155de1a812
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
Coverage Report
File CoverageNo changed files found. |
155de1a to
ed73311
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
commit: |
|
Size Change: 0 B Total Size: 1.46 MB ℹ️ View Unchanged
|
|
🧪 Playground Preview: https://element-plus.run/?pr=23987 |
…ement-plus into renovate/pnpm-logger-5.x

This PR contains the following updates:
^4.0.0→^5.2.0Release Notes
pnpm/pnpm (@pnpm/logger)
v5.2.0Compare Source
Features
Added a new setting:
public-hoist-pattern. This setting can be overwritten byshamefully-hoist. The default value ofpublic-hoist-patternis@types/*.If
shamefully-hoististrue,public-hoist-patternis set to*.If
shamefully-hoistisfalse,public-hoist-patternis set to nothing.public-hoist-patternexample configuration (through a.npmrcfile):Related PR: #2631
Don't request the full metadata of package when running
pnpm outdatedorpnpm publish -r(#2633)v5.1.0Compare Source
Features
ffddf34: Add new global option called--stream. (#2595)When used, the output from child processes is streamed to the console immediately, prefixed with the originating package directory. This allows output from different packages to be interleaved.
The
runandexeccommands may use the--paralleloption.--parallelcompletely disregards concurrency and topological sorting,running a given script immediately in all matching packages
with prefixed streaming output. This is the preferred flag
for long-running processes such as watch run over many packages.
For example:
pnpm run --parallel watchPR #2599
Color the child output prefixes (#2598)
Bug Fixes
429c5a5)v5.0.0Compare Source
Major Changes
🚀 33% faster installation times vs pnpm v4.
In some cases, 2 times faster than Yarn v1! (performance diff of pnpm v4 vs v5)
All the benchmarks are here.
A content-addressable filesystem is used to store packages on the disk.
pnpm v5 uses a content-addressable filesystem to store all files from all module directories on a disk. If you depend on different versions of lodash, only the files that differ are added to the store. If lodash has 100 files, and a new version has a change only in one of those files, pnpm update will only add 1 new file to the storage.
For more info about the structure of this new store, you can check the GitHub issue about it.
This change was inspired by dupe-krill and the content-addressable storage of Git.
Reduced directory nesting in the virtual store directory.
In pnpm v4, if you installed
[email protected], it was hard-linked intonode_modules/.pnpm/registry.npmjs.org/foo/1.0.0/.In pnpm v5, it will be hard-linked into
node_modules/.pnpm/[email protected]/. This new structure of the virtual store directory drastically reduces the number of directories pnpm has to create. Hence, there are fewer filesystem operations, which improves speed.pnpm store usagesremoved.This command was using information from the
store.jsonfiles, which is not present in the new content-addressable storage anymore.The
independent-leavessetting has been removed.When hoisting was off, it was possible to set the
independent-leavessetting totrue. Whentrue, leaf dependencies were symlinked directly from the global store. However, we turned hoisting on by default for pnpm v4, so this feature has no future at the moment.The
resolution-strategysetting has been removed.By default, the
fewer-dependenciesresolution strategy is used. It was possible to select afastresolution strategy. This setting is deprecated to simplify future improvements to the resolution algorithm.The store and the modules directory are not locked.
We are not using directory locks anymore. So the
--no-lockoption will throw an error. Some users had issues with locking. We have confidence that pnpm will never leave either node_modules or the store in a broken state,so we removed locking.
git-checksistrueby default.By default,
pnpm publishwill make some checks before actually publishing a new version of your package.The next checks will happen:
masterby default. This is configurable through thepublish-branchsetting.If you don't want this checks, run
pnpm publish --no-git-checksor set this setting tofalsevia a.npmrcfile.In case of a crash, the debug file will be written to
node_modules/.pnpm-debug.log(not topnpm-debug.logas in v4 and earlier).Minor Changes
The
link-workspace-packagessetting may now be set todeep.When
link-workspace-packagesis set todeep, packages from the workspace will be linked even to subdependencies.Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.