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 v8.14.0 #38

Merged
merged 1 commit into from
Jan 9, 2024
Merged

chore(deps): update pnpm to v8.14.0 #38

merged 1 commit into from
Jan 9, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 15, 2023

Mend Renovate

This PR contains the following updates:

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

Release Notes

pnpm/pnpm (pnpm)

v8.14.0

Compare Source

Minor Changes
  • A new option added for hoisting packages from the workspace. When hoist-workspace-packages is set to true, packages from the workspace are symlinked to either <workspace_root>/node_modules/.pnpm/node_modules or to <workspace_root>/node_modules depending on other hoisting settings (hoist-pattern and public-hoist-pattern) #​7451.
  • The pnpm dedupe command now accepts more command line options that the pnpm install command also accepts. Example: pnpm dedupe --store-dir=local-store-dir
Patch Changes
  • The package information output by cat-index should be sorted by key.
  • pnpm deploy should not touch the target directory if it already exists and isn't empty #​7351.
  • pnpm add a-module-already-in-dev-deps will show a message to notice the user that the package was not moved to "dependencies" #​926 and fix #​7319.
  • Don't install Node.js when use-node-version is set in a WebContainer #​7478.
  • Fix copy-on-write on Windows Dev Drives #​7468.
Our Gold Sponsors
Our Silver Sponsors

v8.13.1

Minor Changes

  • New commands added for inspecting the store:

    • pnpm cat-index: Prints the index file of a specific package in the store. The package is specified by its name and version:

      pnpm cat-index <pkg name>@&#8203;<pkg version>
      
    • pnpm cat-file: Prints the contents of a file based on the hash value stored in the index file. For example:

      pnpm cat-file sha512-mvavhfVcEREI7d8dfvfvIkuBLnx7+rrkHHnPi8mpEDUlNpY4CUY+CvJ5mrrLl18iQYo1odFwBV7z/cOypG7xxQ==
      
    • (EXPERIMENTAL) pnpm find-hash: Lists the packages that include the file with the specified hash. For example:

      pnpm find-hash sha512-mvavhfVcEREI7d8dfvfvIkuBLnx7+rrkHHnPi8mpEDUlNpY4CUY+CvJ5mrrLl18iQYo1odFwBV7z/cOypG7xxQ==
      

      This command is experimental. We might change how it behaves.

    Related issue: #​7413.

  • A new setting added for symlinking injected dependencies from the workspace, if their dependencies use the same peer dependencies as the dependent package. The setting is called dedupe-injected-deps #​7416.

  • Use --fail-if-no-match if you want the CLI fail if no packages were matched by the command #​7403.

Patch Changes

  • pnpm list --parseable should not print the same dependency multiple times #​7429.
  • Fix error message texts in the pnpm env commands #​7456.
  • Better support for light themed terminals by the pnpm update --interactive command #​7439.
  • Fix EPERM error that occasionally happened on Windows during renames in the store #​7213.
  • Fix error as in update -i -r with Git specifiers #​7415.
  • Added support for boolean values in 'bundleDependencies' package.json fields when installing a dependency. Fix to properly handle 'bundledDependencies' alias #​7411.

Our Gold Sponsors

Our Silver Sponsors

v8.12.1

Compare Source

Patch Changes

  • Don't report dependencies with optional dependencies as being added on repeat install. This was a bug in reporting #​7384.
  • Fix a bug where --fix-lockfile crashes on tarballs #​7368.
  • Do not create empty patch directory.
  • Installation should not fail if an empty node_modules directory cannot be removed #​7405.

Our Gold Sponsors

Our Silver Sponsors

v8.12.0

Compare Source

Minor Changes

  • Add support for basic authorization header #​7371.

Patch Changes

  • Fix a bug where pnpm incorrectly passes a flag to a run handler as a fallback command #​7244.
  • When dedupe-direct-deps is set to true, commands of dependencies should be deduplicated #​7359.

Our Gold Sponsors

Our Silver Sponsors

v8.11.0

Compare Source

Minor Changes

  • (IMPORTANT) When the package tarballs aren't hosted on the same domain on which the registry (the server with the package metadata) is, the dependency keys in the lockfile should only contain /<pkg_name>@&#8203;<pkg_version, not <domain>/<pkg_name>@&#8203;<pkg_version>.

    This change is a fix to avoid the same package from being added to node_modules/.pnpm multiple times. The change to the lockfile is backward compatible, so previous versions of pnpm will work with the fixed lockfile.

    We recommend that all team members update pnpm in order to avoid repeated changes in the lockfile.

    Related PR: #​7318.

Patch Changes

  • pnpm add a-module-already-in-dev-deps will show a message to notice the user that the package was not moved to "dependencies" #​926.
  • The modules directory should not be removed if the registry configuration has changed.
  • Fix missing auth tokens in registries with paths specified (e.g. //npm.pkg.github.com/pnpm). #​5970 #​2933

Our Gold Sponsors

Our Silver Sponsors

v8.10.5

Compare Source

Patch Changes

  • Don't fail on an empty pnpm-workspace.yaml file #​7307.

Our Gold Sponsors

Our Silver Sponsors

v8.10.4

Compare Source

Patch Changes

  • Fixed out-of-memory exception that was happening on dependencies with many peer dependencies, when node-linker was set to hoisted #​6227.

Our Gold Sponsors

Our Silver Sponsors

v8.10.3

Compare Source

Patch Changes

  • (Important) Increased the default amount of allowed concurrent network request on systems that have more than 16 CPUs #​7285.

  • pnpm patch should reuse existing patch when shared-workspace-file=false #​7252.

  • Don't retry fetching missing packages, since the retries will never work #​7276.

  • When using pnpm store prune --force alien directories are removed from the store #​7272.

  • Downgraded npm-packlist because the newer version significantly slows down the installation of local directory dependencies, making it unbearably slow.

    npm-packlist was upgraded in this PR to fix #​6997. We added our own file deduplication to fix the issue of duplicate file entries.

  • Fixed a performance regression on running installation on a project with an up to date lockfile #​7297.

  • Throw an error on invalid pnpm-workspace.yaml file #​7273.

Our Gold Sponsors

Our Silver Sponsors

v8.10.2

Compare Source

Patch Changes

  • Fixed a regression that was shipped with pnpm v8.10.0. Dependencies that were already built should not be rebuilt on repeat install. This issue was introduced via the changes related to supportedArchitectures. Related issue #​7268.

Our Gold Sponsors

Our Silver Sponsors

Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update pnpm to v8.9.1 chore(deps): update pnpm to v8.9.2 Oct 16, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from d25aa1a to e716b44 Compare October 16, 2023 00:04
@renovate renovate bot changed the title chore(deps): update pnpm to v8.9.2 chore(deps): update pnpm to v8.10.0 Oct 27, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from e716b44 to 6fe63c6 Compare October 27, 2023 17:16
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.0 chore(deps): update pnpm to v8.10.1 Nov 1, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 6fe63c6 to bdd1971 Compare November 1, 2023 13:50
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.1 chore(deps): update pnpm to v8.10.2 Nov 1, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from bdd1971 to f0137bd Compare November 1, 2023 18:45
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.2 chore(deps): update pnpm to v8.10.3 Nov 12, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from f0137bd to c9d676f Compare November 12, 2023 12:56
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.3 chore(deps): update pnpm to v8.10.4 Nov 13, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from c9d676f to 932479c Compare November 13, 2023 15:45
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.4 chore(deps): update pnpm to v8.10.5 Nov 14, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 932479c to a2b14e4 Compare November 14, 2023 12:21
@renovate renovate bot changed the title chore(deps): update pnpm to v8.10.5 chore(deps): update pnpm to v8.11.0 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from a2b14e4 to 3504140 Compare November 24, 2023 18:35
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 3504140 to 35cfed9 Compare December 9, 2023 01:33
@renovate renovate bot changed the title chore(deps): update pnpm to v8.11.0 chore(deps): update pnpm to v8.12.0 Dec 9, 2023
@renovate renovate bot changed the title chore(deps): update pnpm to v8.12.0 chore(deps): update pnpm to v8.12.1 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 35cfed9 to edffb32 Compare December 13, 2023 11:17
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from edffb32 to 00679c2 Compare December 26, 2023 16:01
@renovate renovate bot changed the title chore(deps): update pnpm to v8.12.1 chore(deps): update pnpm to v8.13.1 Dec 26, 2023
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 00679c2 to 14b02a3 Compare January 3, 2024 01:17
@renovate renovate bot changed the title chore(deps): update pnpm to v8.13.1 chore(deps): update pnpm to v8.14.0 Jan 3, 2024
@renovate renovate bot force-pushed the renovate/pnpm-8.x branch from 14b02a3 to 320b5a4 Compare January 9, 2024 14:21
@bjerk-bot
Copy link
Collaborator

🍹 preview on bjerk-bot/bjerk/prod

Pulumi report
Previewing update (bjerk/prod)

View Live: https://app.pulumi.com/bjerk/bjerk-bot/prod/previews/f2cc1ddd-7065-4998-8452-55414ed6c0e0


@ Previewing update....
pulumi:pulumi:Stack bjerk-bot-prod running 
@ Previewing update.....
~  pulumi:providers:github bjerkio update 
~  pulumi:providers:github getbranches update 
++ github:index:ActionsOrganizationSecret bjerkio-npm-token create replacement [diff: ~plaintextValue]
+- github:index:ActionsOrganizationSecret bjerkio-npm-token replace [diff: ~plaintextValue]
++ github:index:ActionsOrganizationSecret bjerkio-github-token create replacement [diff: ~plaintextValue]
+- github:index:ActionsOrganizationSecret bjerkio-github-token replace [diff: ~plaintextValue]
++ github:index:ActionsOrganizationSecret getbranches-github-token create replacement [diff: ~plaintextValue]
+- github:index:ActionsOrganizationSecret getbranches-github-token replace [diff: ~plaintextValue]
-- github:index:ActionsOrganizationSecret bjerkio-github-token delete original [diff: ~plaintextValue]
-- github:index:ActionsOrganizationSecret getbranches-github-token delete original [diff: ~plaintextValue]
-- github:index:ActionsOrganizationSecret bjerkio-npm-token delete original [diff: ~plaintextValue]
pulumi:pulumi:Stack bjerk-bot-prod  
Resources:
~ 2 to update
+-3 to replace
5 changes. 1 unchanged

@renovate renovate bot merged commit a680cd1 into main Jan 9, 2024
1 check passed
@renovate renovate bot deleted the renovate/pnpm-8.x branch January 9, 2024 14:27
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.

1 participant