Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

chore(deps): update pnpm to v7.32.2 #128

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

pnpm/pnpm

v7.32.2

Compare Source

Patch Changes

  • Patch node-fetch to fix an error that happens on Node.js 20 #​6424.

Our Gold Sponsors

Our Silver Sponsors

v7.32.1

Compare Source

Patch Changes

  • Warn user when publishConfig.directory of an injected workspace dependency does not exist #​6396.
  • Use hard links to link the node executable on Windows machines #​4315.

Our Gold Sponsors

Our Silver Sponsors

v7.32.0

Compare Source

Minor Changes

  • Allow env variables to be specified with default values in .npmrc. This is a convention used by Yarn too.
    Using ${NAME-fallback} will return fallback if NAME isn't set. ${NAME:-fallback} will return fallback if NAME isn't set, or is an empty string #​6018.

Patch Changes

  • pnpm config get <key> returns empty when the value is a boolean
  • Don't print an info message about linked dependencies if they are real linked dependencies specified via the link: protocol in package.json.
  • Add -g to mismatch registries error info when original command has -g option #​6224.

Our Gold Sponsors

Our Silver Sponsors

v7.31.0

Compare Source

Minor Changes

  • Add ignore-workspace-cycles to silence workspace cycle warning #​6308.
Patch Changes
  • Registries are now passed to the preResolution hook.
  • Repeat installation should work on a project that has a dependency with () chars in the scope name #​6348.
  • Should report error summary as expected.
  • Update @yarnpkg/shell to fix issues in the shell emulator #​6320.
  • Installation should not fail when there is a local dependency that starts in a directory that starts with the @ char #​6332.

Our Gold Sponsors

Our Silver Sponsors

v7.30.5

Compare Source

Patch Changes

  • pnpm audit should work even if there are no package.json file, just a pnpm-lock.yaml file.
  • Dedupe direct dependencies after hoisting.
  • Don't remove automatically installed peer dependencies from the root workspace project, when dedupe-peer-dependents is true #​6154.

Our Gold Sponsors

Our Silver Sponsors

v7.30.4

Compare Source

v7.30.3

Compare Source

Patch Changes

  • Should use most specific override rule when multiple rules match the same target #​6210.
  • Fix regression introduced in v7.30.1 #​6271.

Our Gold Sponsors

Our Silver Sponsors

v7.30.2

Compare Source

v7.30.1

Compare Source

Patch Changes

  • Don't write the pnpm-lock.yaml file if it has no changes and pnpm install --frozen-lockfile was executed #​6158.
  • Fix git-hosted dependencies referenced via git+ssh that use semver selectors #​6239.
  • When publish some package throws an error, the exit code should be non-zero #​5528.
  • Only three paths are displayed in pnpm audit output #​6203
  • Aliased packages should be used to resolve peer dependencies too #​4301.

Our Gold Sponsors

Our Silver Sponsors

v7.30.0

Compare Source

Minor Changes

  • Allow to set a custom directory for storing patch files via the patches-dir setting #​6215

Patch Changes

  • New directories should be prepended to NODE_PATH in command shims, not appended.
  • Retry copying file on EBUSY error #​6201.

Our Gold Sponsors

Our Silver Sponsors

v7.29.3

Compare Source

Patch Changes

  • Command shim should not set higher priority to the node_modules/.pnpm/node_modules directory through the NODE_PATH env variable, then the command's own node_modules directory #​5176.
  • extend-node-path is set back to true by default. It was set to false in v7.29.2 in order to fix issues with multiple versions of Jest in one workspace. It has caused other issues, so now we keep extending NODE_PATH. We have fixed the Jest issue with a different solution #​6213.

Our Gold Sponsors

Our Silver Sponsors

v7.29.2

Compare Source

v7.29.1

Compare Source

Patch Changes

  • Settings related to authorization should be set/deleted by npm CLI #​6181.

Our Gold Sponsors

Our Silver Sponsors

v7.29.0

Compare Source

Minor Changes

  • A new setting is now supported: dedupe-peer-dependents.

    When this setting is set to true, packages with peer dependencies will be deduplicated after peers resolution.

    For instance, let's say we have a workspace with two projects and both of them have webpack in their dependencies. webpack has esbuild in its optional peer dependencies, and one of the projects has esbuild in its dependencies. In this case, pnpm will link two instances of webpack to the node_modules/.pnpm directory: one with esbuild and another one without it:

    node_modules
      .pnpm
        [email protected][email protected]
        [email protected]
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected]/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack
        esbuild
    

    This makes sense because webpack is used in two projects, and one of the projects doesn't have esbuild, so the two projects cannot share the same instance of webpack. However, this is not what most developers expect, especially since in a hoisted node_modules, there would only be one instance of webpack. Therefore, you may now use the dedupe-peer-dependents setting to deduplicate webpack when it has no conflicting peer dependencies (explanation at the end). In this case, if we set dedupe-peer-dependents to true, both projects will use the same webpack instance, which is the one that has esbuild resolved:

    node_modules
      .pnpm
        [email protected][email protected]
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack
        esbuild
    

    What are conflicting peer dependencies? By conflicting peer dependencies we mean a scenario like the following one:

    node_modules
      .pnpm
        [email protected][email protected][email protected]
        [email protected][email protected]
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected]/node_modules/webpack
        react (v17)
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/[email protected][email protected]/node_modules/webpack
        esbuild
        react (v16)
    

    In this case, we cannot dedupe webpack as webpack has react in its peer dependencies and react is resolved from two different versions in the context of the two projects.

Patch Changes

  • The configuration added by pnpm setup should check if the pnpm home directory is already in the PATH before adding to the PATH.

    Before this change, this code was added to the shell:

    export PNPM_HOME="$HOME/Library/pnpm"
    export PATH="$PNPM_HOME:$PATH"

    Now this will be added:

    export PNPM_HOME="$HOME/Library/pnpm"
    case ":$PATH:" in
      *":$PNPM_HOME:"*) ;;
      *) export PATH="$PNPM_HOME:$PATH" ;;
    esac
  • Add skipped status in exec report summary when script is missing #​6139.

  • pnpm env -g should fail with a meaningful error message if pnpm cannot find the pnpm home directory, which is the directory into which Node.js is installed.

  • Should not throw an error when local dependency use file protocol #​6115.

  • Fix the incorrect error block when subproject has been patched #​6183

Our Gold Sponsors

Our Silver Sponsors


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, check this box

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

@renovate renovate bot added the Dependencies Need of updating dependencies label Mar 6, 2023
@changeset-bot
Copy link

changeset-bot bot commented Mar 6, 2023

⚠️ No Changeset found

Latest commit: 7d27b42

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@vercel
Copy link

vercel bot commented Mar 6, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
guide ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 19, 2023 2:33pm
website ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 19, 2023 2:33pm

@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.0 chore(deps): update pnpm to v7.29.1 Mar 8, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 33d2c00 to c04514c Compare March 8, 2023 05:14
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from c04514c to f3d4068 Compare March 14, 2023 07:21
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.1 chore(deps): update pnpm to v7.29.2 Mar 14, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from f3d4068 to 81cd8e0 Compare March 14, 2023 19:00
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.2 chore(deps): update pnpm to v7.29.1 Mar 14, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 81cd8e0 to 88cfd45 Compare March 15, 2023 11:38
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.1 chore(deps): update pnpm to v7.29.3 Mar 15, 2023
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.3 chore(deps): update pnpm to v7.30.0 Mar 19, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 88cfd45 to 81eb5d4 Compare March 19, 2023 13:34
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.0 chore(deps): update pnpm to v7.30.1 Mar 23, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 81eb5d4 to 6706184 Compare March 23, 2023 14:08
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.1 chore(deps): update pnpm to v7.30.0 Mar 24, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 6706184 to 4f3fc50 Compare March 24, 2023 00:26
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.0 chore(deps): update pnpm to v7.30.3 Mar 24, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 4f3fc50 to 16864bb Compare March 24, 2023 16:47
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.3 chore(deps): update pnpm to v7.30.5 Mar 27, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 16864bb to 2f01e51 Compare March 27, 2023 14:57
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 2f01e51 to 678c8af Compare April 4, 2023 05:34
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.5 chore(deps): update pnpm to v7.31.0 Apr 4, 2023
@renovate renovate bot changed the title chore(deps): update pnpm to v7.31.0 chore(deps): update pnpm to v7.32.0 Apr 10, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 678c8af to e0ecfde Compare April 10, 2023 01:00
@renovate renovate bot changed the title chore(deps): update pnpm to v7.32.0 chore(deps): update pnpm to v7.32.1 Apr 18, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from e0ecfde to 1a6f82b Compare April 18, 2023 00:40
@renovate renovate bot changed the title chore(deps): update pnpm to v7.32.1 chore(deps): update pnpm to v7.32.2 Apr 19, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 1a6f82b to 7d27b42 Compare April 19, 2023 14:32
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Dependencies Need of updating dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants