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

chore(deps): update pnpm to v7.33.0 #371

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 Nov 10, 2022

Mend Renovate

This PR contains the following updates:

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

Release Notes

pnpm/pnpm

v7.32.5

Compare Source

Patch Changes

  • pnpm rebuild should not fail when node-linker is set to hoisted and there are skipped optional dependencies #​6553.
  • Expanded missing command error, including 'did you mean' #​6492.
  • Normalize current working directory on Windows #​6524.
  • Build projects in a workspace in correct order #​6568.

Our Gold Sponsors

Our Silver Sponsors

v7.32.4

Compare Source

Patch Changes

  • pnpm link -g <pkg-name> should not modify the package.json file #​4341.
  • Node.js range specified through the engines field should match prerelease versions #​6509.
  • pnpm publish --otp should work #​6514.

Our Gold Sponsors

Our Silver Sponsors

v7.32.3

Compare Source

Patch Changes

  • Link the bin files of local workspace dependencies, when node-linker is set to hoisted 6486.
  • Show cyclic workspace dependency details #​5059.

Our Gold Sponsors

Our Silver Sponsors

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
        webpack@1.0.0_esbuild@1.0.0
        webpack@1.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/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
        webpack@1.0.0_esbuild@1.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/node_modules/webpack
        esbuild
    

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

    node_modules
      .pnpm
        webpack@1.0.0_react@16.0.0_esbuild@1.0.0
        webpack@1.0.0_react@17.0.0
    project1
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0/node_modules/webpack
        react (v17)
    project2
      node_modules
        webpack -> ../../node_modules/.pnpm/webpack@1.0.0_esbuild@1.0.0/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

v7.28.0

Compare Source

Minor Changes

  • Add --report-summary for pnpm exec and pnpm run #​6008.
  • Show path info for pnpm why --json or --long #​6103.
  • Extend the pnpm.peerDependencyRules.allowedVersions package.json option to support the parent>child selector syntax. This syntax allows for extending specific peerDependencies #​6108.

Patch Changes

  • Update the lockfile if a workspace has a new project with no dependencies.
  • Fix a case of installs not being deterministic and causing lockfile changes between repeat installs. When a dependency only declares peerDependenciesMeta and not peerDependencies, dependencies, or optionalDependencies, the dependency's peers were not considered deterministically before.
  • patch-commit should auto apply patches in workspaces #​6048
  • Automatically fix conflicts in v6 lockfile.
  • pnpm config set should write to the global config file by default #​5877.

Our Gold Sponsors

Our Silver Sponsors

v7.27.1

Compare Source

Patch Changes

  • Add store path description to the pnpm cli help.
  • Print a hint that suggests to run pnpm store prune, when a tarball integrity error happens.
  • Don't retry installation if the integrity checksum of a package failed and no lockfile was present.
  • Fail with a meaningful error message when cannot parse a proxy URL.
  • The strict-ssl, ca, key, and cert settings should work with HTTPS proxy servers #​4689.

Our Gold Sponsors

Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from a13d7de to b1d1a17 Compare November 14, 2022 14:25
@renovate renovate bot changed the title chore(deps): update pnpm to v7.15.0 chore(deps): update pnpm to v7.16.0 Nov 14, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from b1d1a17 to 79dde7d Compare November 16, 2022 16:38
@renovate renovate bot changed the title chore(deps): update pnpm to v7.16.0 chore(deps): update pnpm to v7.16.1 Nov 16, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 79dde7d to 68d7bd0 Compare November 20, 2022 23:48
@renovate renovate bot changed the title chore(deps): update pnpm to v7.16.1 chore(deps): update pnpm to v7.17.0 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 68d7bd0 to 740f589 Compare November 27, 2022 03:46
@renovate renovate bot changed the title chore(deps): update pnpm to v7.17.0 chore(deps): update pnpm to v7.17.1 Nov 27, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 740f589 to 62bccda Compare December 3, 2022 22:53
@renovate renovate bot changed the title chore(deps): update pnpm to v7.17.1 chore(deps): update pnpm to v7.18.0 Dec 3, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.18.0 chore(deps): update pnpm to v7.18.1 Dec 6, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch 2 times, most recently from d589878 to 8baed93 Compare December 12, 2022 14:13
@renovate renovate bot changed the title chore(deps): update pnpm to v7.18.1 chore(deps): update pnpm to v7.18.2 Dec 12, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.18.2 Update pnpm to v7.18.2 Dec 17, 2022
@renovate renovate bot changed the title Update pnpm to v7.18.2 chore(deps): update pnpm to v7.18.2 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 8baed93 to 01ed75f Compare December 21, 2022 12:29
@renovate renovate bot changed the title chore(deps): update pnpm to v7.18.2 chore(deps): update pnpm to v7.19.0 Dec 21, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 01ed75f to a39bd77 Compare December 26, 2022 01:22
@renovate renovate bot changed the title chore(deps): update pnpm to v7.19.0 chore(deps): update pnpm to v7.20.0 Dec 26, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from a39bd77 to c27040f Compare December 28, 2022 17:46
@renovate renovate bot changed the title chore(deps): update pnpm to v7.20.0 chore(deps): update pnpm to v7.21.0 Dec 28, 2022
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from c27040f to 95ea6d9 Compare January 3, 2023 15:27
@renovate renovate bot changed the title chore(deps): update pnpm to v7.21.0 chore(deps): update pnpm to v7.22.0 Jan 3, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 95ea6d9 to c391ad0 Compare January 9, 2023 03:49
@renovate renovate bot changed the title chore(deps): update pnpm to v7.22.0 chore(deps): update pnpm to v7.23.0 Jan 9, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from c391ad0 to dc2a4ff Compare March 11, 2023 10:00
@renovate renovate bot changed the title chore(deps): update pnpm to v7.23.0 chore(deps): update pnpm to v7.29.1 Mar 11, 2023
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.1 chore(deps): update pnpm to v7.29.3 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from dc2a4ff to 03628fc Compare March 16, 2023 06:44
@renovate renovate bot changed the title chore(deps): update pnpm to v7.29.3 chore(deps): update pnpm to v7.30.5 Mar 30, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 03628fc to 2719f8f Compare March 30, 2023 21:58
@renovate renovate bot changed the title chore(deps): update pnpm to v7.30.5 chore(deps): update pnpm to v7.32.0 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 2719f8f to 3a1ea06 Compare April 17, 2023 11:59
@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 3a1ea06 to f7633b8 Compare April 18, 2023 02:00
@renovate renovate bot changed the title chore(deps): update pnpm to v7.32.1 chore(deps): update pnpm to v7.32.5 May 28, 2023
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from f7633b8 to 4eee1b5 Compare May 28, 2023 12:07
@renovate renovate bot changed the title chore(deps): update pnpm to v7.32.5 chore(deps): update pnpm to v7.33.0 May 31, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants