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

Update pnpm to v7.32.0 - autoclosed #136

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2022

Mend Renovate

This PR contains the following updates:

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

Release Notes

pnpm/pnpm

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

Our Silver Sponsors

v7.27.0

Compare Source

Minor Changes

  • A new resolution-mode added: lowest-direct. With this resolution mode direct dependencies will be resolved to their lowest versions. So if there is foo@^1.1.0 in the dependencies, then 1.1.0 will be installed, even if the latest version of foo is 1.2.0.
  • Support script selector with RegExp such as pnpm run /build:.*/ and execute the matched scripts with the RegExp #​5871.

Patch Changes

  • Fix version number replacing for namespaced workspace packages. workspace:@&#8203;foo/bar@* should be replaced with npm:@&#8203;foo/bar@<version> on publish #​6052.

  • When resolving dependencies, prefer versions that are already used in the root of the project. This is important to minimize the number of packages that will be nested during hoisting #​6054.

  • Deduplicate direct dependencies.

    Let's say there are two projects in the workspace that dependend on foo. One project has foo@1.0.0 in the dependencies while another one has foo@^1.0.0 in the dependencies. In this case, foo@1.0.0 should be installed to both projects as satisfies the version specs of both projects.

  • Use Map rather than Object in createPackageExtender to prevent read the prototype property to native function

Our Gold Sponsors

Our Silver Sponsors

v7.26.3

Compare Source

Patch Changes

  • Directories inside the virtual store should not contain the ( or ) chars. This is to fix issues with storybook and the new v6 pnpm-lock.yaml lockfile format #​5976.
  • The update command should not replace dependency versions specified via dist-tags #​5996.
  • Fixed an issue that was causing pnpm to stuck forever during installation #​5909.

Our Gold Sponsors

Our Silver Sponsors

v7.26.2

Compare Source

Patch Changes

  • Wrap text in pnpm audit output for better readability #​5981
  • Fix "cross-device link not permitted" error when node-linker is set to hoisted #​5992.

Our Gold Sponsors

Our Silver Sponsors

v7.26.1

Compare Source

Patch Changes

  • Fixed out of memory error that sometimes happens when node-linker is set to hoisted #​5988.
  • Fixed EMFILE: too many open files by using graceful-fs for reading bin files of dependencies #​5887.
  • Fix lockfile v6 on projects that use patched dependencies #​5967.

Our Gold Sponsors


Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" in timezone Asia/Tokyo, 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 renovate Type: Dependencies Dependency issues or Changes to dependency files labels Jul 31, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.8.0 chore(deps): update pnpm to v7.9.0 Aug 6, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.9.0 chore(deps): update pnpm to v7.9.3 Aug 17, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.9.3 chore(deps): update pnpm to v7.9.4 Aug 23, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.9.4 chore(deps): update pnpm to v7.9.5 Aug 24, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.9.5 chore(deps): update pnpm to v7.10.0 Sep 4, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.10.0 chore(deps): update pnpm to v7.11.0 Sep 5, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.11.0 chore(deps): update pnpm to v7.12.0 Sep 18, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.12.0 chore(deps): update pnpm to v7.12.1 Sep 20, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.12.1 chore(deps): update pnpm to v7.11.0 Sep 22, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.11.0 chore(deps): update pnpm to v7.12.2 Sep 23, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.12.2 chore(deps): update pnpm to v7.13.0 Oct 3, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.13.0 chore(deps): update pnpm to v7.13.1 Oct 4, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.13.1 chore(deps): update pnpm to v7.13.2 Oct 5, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.13.2 chore(deps): update pnpm to v7.13.3 Oct 9, 2022
@renovate renovate bot changed the title chore(deps): update pnpm to v7.27.1 chore(deps): update pnpm to v7.28.0 Feb 25, 2023
@renovate renovate bot changed the title chore(deps): update pnpm to v7.28.0 chore(deps): update pnpm to v7.29.0 Mar 6, 2023
@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 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 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 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 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 2 times, most recently from 6f0016e to b9de744 Compare March 24, 2023 02:22
@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 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 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 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 changed the title chore(deps): update pnpm to v7.32.0 Update pnpm to v7.32.0 Apr 15, 2023
@renovate renovate bot changed the title Update pnpm to v7.32.0 Update pnpm to v7.32.0 - autoclosed Apr 15, 2023
@renovate renovate bot closed this Apr 15, 2023
@renovate renovate bot deleted the renovate/pnpm-7.x branch April 15, 2023 16:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate Type: Dependencies Dependency issues or Changes to dependency files
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants