Skip to content

fix(deps): update dependency @pnpm/logger to v5#23987

Merged
thinkasany merged 7 commits into
devfrom
renovate/pnpm-logger-5.x
Apr 8, 2026
Merged

fix(deps): update dependency @pnpm/logger to v5#23987
thinkasany merged 7 commits into
devfrom
renovate/pnpm-logger-5.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 7, 2026

This PR contains the following updates:

Package Change Age Confidence
@pnpm/logger (source) ^4.0.0^5.2.0 age confidence

Release Notes

pnpm/pnpm (@​pnpm/logger)

v5.2.0

Compare Source

Features
  • Added a new setting: public-hoist-pattern. This setting can be overwritten by shamefully-hoist. The default value of public-hoist-pattern is @types/*.

    If shamefully-hoist is true, public-hoist-pattern is set to *.

    If shamefully-hoist is false, public-hoist-pattern is set to nothing.

    public-hoist-pattern example configuration (through a .npmrc file):

    public-hoist-pattern[]=@​types/*
    public-hoist-pattern[]=@​angular/*
    

    Related PR: #​2631

  • Don't request the full metadata of package when running pnpm outdated or pnpm publish -r (#​2633)

v5.1.0

Compare 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 run and exec commands may use the --parallel option.

    --parallel completely 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 watch

    PR #​2599

  • Color the child output prefixes (#​2598)

    image

Bug Fixes
  • A recursive run should not rerun the same package script which started the lifecycle event (#​2528).
  • Fixing a regression on Windows. Fall back to copying if linking fails (429c5a5)

v5.0.0

Compare 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)

    action cache lockfile node_modules npm pnpm Yarn Yarn PnP
    install 43.3s 17.5s 36.7s 28.6s
    install 7s 1.5s 735ms n/a
    install 18.3s 7.8s 10.5s 1.8s
    install 24.8s 10.9s 22.2s 12.1s
    install 23.2s 15.2s 22.4s 13.4s
    install 6.4s 1.8s 17.1s n/a
    install 7.3s 1.5s 735ms n/a
    install 6.4s 3.1s 33.2s n/a
    update n/a n/a n/a 7s 14.5s 42.6s 27.6s

    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 into node_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 usages removed.

    This command was using information from the store.json files, which is not present in the new content-addressable storage anymore.

  • The independent-leaves setting has been removed.

    When hoisting was off, it was possible to set the independent-leaves setting to true. When true, 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-strategy setting has been removed.

    By default, the fewer-dependencies resolution strategy is used. It was possible to select a fast resolution 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-lock option 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-checks is true by default.

    By default, pnpm publish will make some checks before actually publishing a new version of your package.

    The next checks will happen:

    • The current branch is your publish branch. The publish branch is master by default. This is configurable through the publish-branch setting.
    • Your working directory is clean (there are no uncommitted changes).
    • The branch is up-to-date.

    If you don't want this checks, run pnpm publish --no-git-checks or set this setting to false via a .npmrc file.

  • In case of a crash, the debug file will be written to node_modules/.pnpm-debug.log (not to pnpm-debug.log as in v4 and earlier).

Minor Changes
  • The link-workspace-packages setting may now be set to deep.

    When link-workspace-packages is set to deep, 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.


  • 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 added the dependencies Pull requests that update a dependency file label Apr 7, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 7, 2026

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 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".

Comment thread package.json
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 7, 2026

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 85.63% 18211 / 21267
🔵 Statements 84.42% 19057 / 22574
🔵 Functions 83.53% 4849 / 5805
🔵 Branches 74.19% 10556 / 14228
File CoverageNo changed files found.
Generated in workflow #2291

@renovate renovate Bot force-pushed the renovate/pnpm-logger-5.x branch from 155de1a to ed73311 Compare April 8, 2026 12:30
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Apr 8, 2026

Edited/Blocked Notification

Renovate 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.

⚠️ Warning: custom changes will be lost.

@pkg-pr-new
Copy link
Copy Markdown

pkg-pr-new Bot commented Apr 8, 2026

Open in StackBlitz

pnpm add https://pkg.pr.new/element-plus@23987
npm i https://pkg.pr.new/element-plus@23987
yarn add https://pkg.pr.new/[email protected]

commit: 1ea8e9e

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 8, 2026

Size Change: 0 B

Total Size: 1.46 MB

ℹ️ View Unchanged
Filename Size
dist/element-plus/dist/index.css 46.8 kB
dist/element-plus/dist/index.full.js 429 kB
dist/element-plus/dist/index.full.min.js 284 kB
dist/element-plus/dist/index.full.min.mjs 277 kB
dist/element-plus/dist/index.full.mjs 420 kB

compressed-size-action

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Apr 8, 2026

🧪 Playground Preview: https://element-plus.run/?pr=23987
Please comment the example via this playground if needed.

@thinkasany thinkasany merged commit 1388623 into dev Apr 8, 2026
14 checks passed
@thinkasany thinkasany deleted the renovate/pnpm-logger-5.x branch April 8, 2026 14:08
@element-bot element-bot mentioned this pull request Apr 10, 2026
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Contribution::Community dependencies Pull requests that update a dependency file Needs Review

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant