Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pnpm to v7.2.0 #234

Merged
merged 1 commit into from Jun 10, 2022
Merged

chore(deps): update pnpm to v7.2.0 #234

merged 1 commit into from Jun 10, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 7, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pnpm (source) 7.0.0 -> 7.2.0 age adoption passing confidence

Release Notes

pnpm/pnpm

v7.2.0

Compare Source

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 https://github.com/pnpm/pnpm/pull/4862 * fix: don't report the same deprecated package multiple times by @​zkochan in https://github.com/pnpm/pnpm/pull/4863 * feat: allowed deprecated versions by @​zkochan in https://github.com/pnpm/pnpm/pull/4864 * fix: add better peer dep error hints by @​zkochan in https://github.com/pnpm/pnpm/pull/4875

Full Changelog: pnpm/pnpm@v7.1.9...v7.2.0

v7.1.9

Compare Source

Patch Changes

  • When the same package is found several times in the dependency graph, correctly autoinstall its missing peer dependencies at all times #​4820.

Our Sponsors

#### What's Changed * fix: auto-install-peers by @​zkochan in https://github.com/pnpm/pnpm/pull/4855

Full Changelog: pnpm/pnpm@v7.1.8...v7.1.9

v7.1.8

Compare Source

Patch Changes

  • Suggest updating using Corepack, when pnpm was installed via Corepack.
  • It should be possible to install a git-hosted package that has no package.json file #​4822.
  • Fix pre-compiled pnpm binaries crashing when NODE_MODULES is set.

Our Sponsors

#### What's Changed * fix: pnpm pre-compiled binaries crash when NODE_MODULES is set by @​gluxon in https://github.com/pnpm/pnpm/pull/4823 * refactor(lockfile-file): Abstract LockfileFile to Lockfile conversion by @​gluxon in https://github.com/pnpm/pnpm/pull/4824 * test: update Jest by @​zkochan in https://github.com/pnpm/pnpm/pull/4644 * fix(cli): suggest to update with Corepack by @​zkochan in https://github.com/pnpm/pnpm/pull/4854 * fix: resolve manifest promise when manifest is not found by @​zkochan in https://github.com/pnpm/pnpm/pull/4826

Full Changelog: pnpm/pnpm@v7.1.7...v7.1.8

v7.1.7

Compare Source

Patch Changes
  • Improve the performance of the build sequence calculation step #​4815.
  • Correctly detect repeated dependency sequence during resolution #​4813.
Our Sponsors
##### What's Changed * fix: `pnpm add @​teambit/bit` should succeed by @​zkochan in https://github.com/pnpm/pnpm/pull/4813 * perf: build-modules by @​zkochan in https://github.com/pnpm/pnpm/pull/4815

Full Changelog: pnpm/pnpm@v7.1.6...v7.1.7

v7.1.6

Compare Source

Patch Changes

  • Don't fail on projects with linked dependencies, when auto-install-peers is set to true #​4796.
  • NODE_ENV=production pnpm install --dev should only install dev deps #​4745.

Our Sponsors

#### What's Changed * fix: only devDependencies are installed regardless of the node env by @​Spencer17x in https://github.com/pnpm/pnpm/pull/4805 * fix(auto-install-peers): don't fail on projects with linked deps by @​zkochan in https://github.com/pnpm/pnpm/pull/4807

Full Changelog: pnpm/pnpm@v7.1.5...v7.1.6

v7.1.5

Compare Source

Patch Changes

  • Correctly detect the active Node.js version, when the pnpm CLI is bundled to an executable #​4203.

Our Sponsors

Full Changelog: pnpm/pnpm@v7.1.4...v7.1.5

v7.1.4

Compare Source

Patch Changes

  • Correctly detect the active Node.js version, when the pnpm CLI is bundled to an executable #​4203.

Our Sponsors

#### What's Changed * fix: correctly detect the active Node.js version by @​zkochan in https://github.com/pnpm/pnpm/pull/4780

Full Changelog: pnpm/pnpm@v7.1.3...v7.1.4

v7.1.3

Compare Source

Patch Changes

  • When auto-install-peers is set to true, automatically install missing peer dependencies without writing them to package.json as dependencies. This makes pnpm handle peer dependencies the same way as npm v7 #​4776.

Our Sponsors

#### What's Changed * chore: renovate bot setting to pin actions to a full length commit SHA by @​naveensrinivasan in https://github.com/pnpm/pnpm/pull/4768 * feat: auto install peer dependencies by @​zkochan in https://github.com/pnpm/pnpm/pull/4776 #### New Contributors * @​naveensrinivasan made their first contribution in https://github.com/pnpm/pnpm/pull/4768

Full Changelog: pnpm/pnpm@v7.1.2...v7.1.3

v7.1.2

Compare Source

Patch Changes

  • pnpm setup should not fail on Windows if PNPM_HOME is not yet in the system registry #​4757
  • pnpm dlx shouldn't modify the lockfile in the current working directory #​4743.

Our Sponsors

#### What's Changed * fix(setup): don't fail if PNPM_HOME is not yet in the system registry by @​zkochan in https://github.com/pnpm/pnpm/pull/4760 * fix(dlx): do not modify the lockfile in the cwd by @​zkochan in https://github.com/pnpm/pnpm/pull/4762

Full Changelog: pnpm/pnpm@v7.1.1...v7.1.2

v7.1.1

Compare Source

Patch Changes

  • When the global bin directory is set to a symlink, check not only the symlink in the PATH but also the target of the symlink #​4744.
  • Sanitize the directory names created inside node_modules/.pnpm and inside the global store #​4716
  • All arguments after pnpm create <pkg> should be passed to the executed create app package. So pnpm create next-app --typescript should work`.
  • Resolve commits from GitHub via https #​4734.

Our Sponsors

#### What's Changed * fix: sanitize dir names in the store by @​zkochan in https://github.com/pnpm/pnpm/pull/4726 * fix(create): pass all args to the executed create-app pkg by @​zkochan in https://github.com/pnpm/pnpm/pull/4730 * fix(git-resolver): resolve commits via https by @​zkochan in https://github.com/pnpm/pnpm/pull/4734 * refactor: setup by @​zkochan in https://github.com/pnpm/pnpm/pull/4731 * fix(config): checking global-bin-dir in PATH by @​zkochan in https://github.com/pnpm/pnpm/pull/4751

Full Changelog: pnpm/pnpm@v7.1.0...v7.1.1

v7.1.0

Compare Source

Minor Changes

  • Added support for libc field in package.json #​4454.

Patch Changes

  • pnpm setup should update the config of the current shell, not the preferred shell.
  • pnpm setup should not override the PNPM_HOME env variable, unless --force is used.
  • pnpm dlx should print messages about installation to stderr #​1698.
  • pnpm dlx should work with git-hosted packages. For example: pnpm dlx gengjiawen/envinfo #​4714.
  • pnpm run --stream should prefix the output with directory #​4702

Our Sponsors

#### What's Changed * fix(dlx): print install output to stderr by @​zkochan in https://github.com/pnpm/pnpm/pull/4696 * fix: `pnpm setup` breaks PATH with non-ascii characters by @​liuxingbaoyu in https://github.com/pnpm/pnpm/pull/4699 * fix(setup): update the current shell, not the preferred one by @​zkochan in https://github.com/pnpm/pnpm/pull/4701 * refactor: use @​yarnpkg/extensions instead of @​yarnpkg/plugin-compat by @​zkochan in https://github.com/pnpm/pnpm/pull/4710 * Refactor setup by @​zkochan in https://github.com/pnpm/pnpm/pull/4709 * pnpm run --stream should prefix with dir name by @​kenrick95 in https://github.com/pnpm/pnpm/pull/4703 * feat: support libc field for package.json by @​fireairforce in https://github.com/pnpm/pnpm/pull/4605 * fix: make `pnpm setup` free of garbled characters by @​liuxingbaoyu in https://github.com/pnpm/pnpm/pull/4712 * fix(dlx): pnpm dlx should work with git-hosted pkgs by @​zkochan in https://github.com/pnpm/pnpm/pull/4717 * refactor: pnpm setup by @​zkochan in https://github.com/pnpm/pnpm/pull/4713 #### New Contributors * @​liuxingbaoyu made their first contribution in https://github.com/pnpm/pnpm/pull/4699

Full Changelog: pnpm/pnpm@v7.0.1...v7.1.0

v7.0.1

Compare Source

Patch Changes

  • Use Yarn's compatibility database to patch broken packages in the ecosystem with package extensions #​4676.
  • pnpm dlx should work when the bin name of the executed package isn't the same as the package name #​4672.
  • Throw an error if arguments are passed to the pnpm init command #​4665.
  • pnpm prune works in a workspace #​4647.
  • Do not report request retry warnings when loglevel is set to error #​4669.
  • pnpm prune does not remove hoisted dependencies #​4647.

Our Sponsors

#### New Contributors * @​axe-me made their first contribution in https://github.com/pnpm/pnpm/pull/4654

Full Changelog: pnpm/pnpm@v7.0.0...v7.0.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@codecov-commenter
Copy link

codecov-commenter commented May 7, 2022

Codecov Report

Merging #234 (43dec1e) into main (042a5e0) will not change coverage.
The diff coverage is n/a.

@@           Coverage Diff           @@
##             main     #234   +/-   ##
=======================================
  Coverage   97.91%   97.91%           
=======================================
  Files           4        4           
  Lines         672      672           
  Branches       98       98           
=======================================
  Hits          658      658           
  Misses         14       14           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 042a5e0...43dec1e. Read the comment docs.

@renovate renovate bot changed the title chore(deps): update pnpm to v7.0.1 chore(deps): update pnpm to v7.1.0 May 12, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch 2 times, most recently from ce9d1dd to 10677e8 Compare May 17, 2022 23:23
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.0 chore(deps): update pnpm to v7.1.1 May 17, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.1 chore(deps): update pnpm to v7.1.0 May 18, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.0 chore(deps): update pnpm to v7.1.2 May 19, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.2 chore(deps): update pnpm to v7.1.3 May 22, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch 2 times, most recently from 0c99b47 to 917df46 Compare May 24, 2022 02:14
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.3 chore(deps): update pnpm to v7.1.5 May 24, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.5 chore(deps): update pnpm to v7.1.6 May 27, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.6 chore(deps): update pnpm to v7.1.7 May 29, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.7 chore(deps): update pnpm to v7.1.8 Jun 4, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.8 chore(deps): update pnpm to v7.1.9 Jun 6, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.1.9 chore(deps): update pnpm to v7.2.0 Jun 10, 2022
@danielroe danielroe merged commit 580ac34 into main Jun 10, 2022
@renovate renovate bot deleted the renovate/pnpm-7.x branch June 10, 2022 20:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants