Minor Changes
-
New time-based resolution strategy supported.
When
resolution-mode
is set totime-based
, pnpm will resolve dependencies the following way:- direct dependencies will be resolved to their lowest versions. So if there is
foo@^1.1.0
in the dependencies, then1.1.0
will be installed. - subdependencies will be resolved from versions that were published before the last direct dependency was published.
With this resolution mode installations with hot cache are faster. It also reduces the chance of subdependency hijacking as subdependencies will be updated only if direct dependencies are updated.
Related RFC.
- direct dependencies will be resolved to their lowest versions. So if there is
-
Enhance
pnpm env
with theremove
command. To remove a Node.js version installed by pnpm, run:pnpm env remove --global <node.js version>
Patch Changes
pnpm store prune
should remove all cached metadata.- Don't modify the manifest of the injected workspace project, when it has the same dependency in prod and peer dependencies.
Our Gold Sponsors
Our Silver Sponsors
What's Changed
Full Changelog: v7.10.0-0...v7.10.0-1