Minor Changes
-
A new setting is supported for ignoring specific deprecation messages:
pnpm.allowedDeprecatedVersions
. The setting should be provided in thepnpm
section of the rootpackage.json
file. The below example will mute any deprecation warnings about therequest
package and warnings aboutexpress
v1:{ "pnpm": { "allowedDeprecatedVersions": { "request": "*", "express": "1" } } }
Patch Changes
- Update the compatibility database.
- Report only the first occurrence of a deprecated package.
- Add better hints to the peer dependency issue errors.
Our Sponsors
What's Changed
- fix(setup): use @pnpm/os.env.path-extender by @zkochan in #4862
- fix: don't report the same deprecated package multiple times by @zkochan in #4863
- feat: allowed deprecated versions by @zkochan in #4864
- fix: add better peer dep error hints by @zkochan in #4875
Full Changelog: v7.1.9...v7.2.0