chore(deps): update pnpm to v7.29.3
This MR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| pnpm (source) | 7.28.0 -> 7.29.3 |
Release Notes
pnpm/pnpm
v7.29.3
Patch Changes
- Command shim should not set higher priority to the
node_modules/.pnpm/node_modulesdirectory through theNODE_PATHenv variable, then the command's ownnode_modulesdirectory #5176. -
extend-node-pathis set back totrueby default. It was set tofalsein v7.29.2 in order to fix issues with multiple versions of Jest in one workspace. It has caused other issues, so now we keep extendingNODE_PATH. We have fixed the Jest issue with a different solution #6213.
Our Gold Sponsors
|
|
|
|
|
|
Our Silver Sponsors
|
|
|
v7.29.2
v7.29.1
Patch Changes
- Settings related to authorization should be set/deleted by npm CLI #6181.
Our Gold Sponsors
|
|
|
|
|
|
Our Silver Sponsors
|
|
|
v7.29.0
Minor Changes
-
A new setting is now supported:
dedupe-peer-dependents.When this setting is set to
true, packages with peer dependencies will be deduplicated after peers resolution.For instance, let's say we have a workspace with two projects and both of them have
webpackin their dependencies.webpackhasesbuildin its optional peer dependencies, and one of the projects hasesbuildin its dependencies. In this case, pnpm will link two instances ofwebpackto thenode_modules/.pnpmdirectory: one withesbuildand another one without it:node_modules .pnpm [email protected][email protected] [email protected] project1 node_modules webpack -> ../../node_modules/.pnpm/[email protected]/node_modules/webpack project2 node_modules webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack esbuildThis makes sense because
webpackis used in two projects, and one of the projects doesn't haveesbuild, so the two projects cannot share the same instance ofwebpack. However, this is not what most developers expect, especially since in a hoistednode_modules, there would only be one instance ofwebpack. Therefore, you may now use thededupe-peer-dependentssetting to deduplicatewebpackwhen it has no conflicting peer dependencies (explanation at the end). In this case, if we setdedupe-peer-dependentstotrue, both projects will use the samewebpackinstance, which is the one that hasesbuildresolved:node_modules .pnpm [email protected][email protected] project1 node_modules webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack project2 node_modules webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack esbuildWhat are conflicting peer dependencies? By conflicting peer dependencies we mean a scenario like the following one:
node_modules .pnpm [email protected][email protected][email protected] [email protected][email protected] project1 node_modules webpack -> ../../node_modules/.pnpm/[email protected]/node_modules/webpack react (v17) project2 node_modules webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack esbuild react (v16)In this case, we cannot dedupe
webpackaswebpackhasreactin its peer dependencies andreactis resolved from two different versions in the context of the two projects.
Patch Changes
-
The configuration added by
pnpm setupshould check if the pnpm home directory is already in the PATH before adding to the PATH.Before this change, this code was added to the shell:
export PNPM_HOME="$HOME/Library/pnpm" export PATH="$PNPM_HOME:$PATH"Now this will be added:
export PNPM_HOME="$HOME/Library/pnpm" case ":$PATH:" in *":$PNPM_HOME:"*) ;; *) export PATH="$PNPM_HOME:$PATH" ;; esac -
Add
skippedstatus in exec report summary when script is missing #6139. -
pnpm env -gshould fail with a meaningful error message if pnpm cannot find the pnpm home directory, which is the directory into which Node.js is installed. -
Should not throw an error when local dependency use file protocol #6115.
-
Fix the incorrect error block when subproject has been patched #6183
Our Gold Sponsors
|
|
|
|
|
|
Our Silver Sponsors
|
|
|
|
|
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.
