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.
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
- test: fix NODE_PATH test on Windows by @zkochan in #5257
- refactor: resolve dependencies by @zkochan in #5267
- feat(env): add remove command to pnpm env by @mark-omarov in #5263
- docs(CONTRIBUTING): correct setup instructions for first-time clone by @gwhitney in #5289
- fix: don't modify the injected project's manifest by @zkochan in #5294
- feat: time-based resolution mode by @zkochan in #5238
- feat: resolve direct deps to lowest version when resolution-mode is time-based by @zkochan in #5298
New Contributors
- @mark-omarov made their first contribution in #5263
- @gwhitney made their first contribution in #5289
Full Changelog: v7.9.5...v7.10.0-0