Skip to content

v7.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jun 12:15
· 1485 commits to main since this release

Minor Changes

  • A new setting is supported for ignoring specific deprecation messages: pnpm.allowedDeprecatedVersions. The setting should be provided in the pnpm section of the root package.json file. The below example will mute any deprecation warnings about the request package and warnings about express v1:

    {
      "pnpm": {
        "allowedDeprecatedVersions": {
          "request": "*",
          "express": "1"
        }
      }
    }

    Related issue: #4306
    Related PR: #4864

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