diff --git a/.changeset/brave-radios-cough.md b/.changeset/brave-radios-cough.md deleted file mode 100644 index abc95476ae0..00000000000 --- a/.changeset/brave-radios-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pnpm/lockfile-utils": major ---- - -Breaking changes to the API of `satisfiesPackageManifest`. diff --git a/.changeset/bright-turtles-try.md b/.changeset/bright-turtles-try.md deleted file mode 100644 index 995e73f44a8..00000000000 --- a/.changeset/bright-turtles-try.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@pnpm/plugin-commands-installation": patch -"@pnpm/resolve-dependencies": patch -"@pnpm/real-hoist": patch ---- - -Update yarn dependencies. diff --git a/.changeset/little-badgers-sort.md b/.changeset/little-badgers-sort.md deleted file mode 100644 index 205f11e9749..00000000000 --- a/.changeset/little-badgers-sort.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pnpm/plugin-commands-config": patch ---- - -`pnpm config get ` returns empty when the value is a boolean diff --git a/.changeset/lovely-balloons-drive.md b/.changeset/lovely-balloons-drive.md deleted file mode 100644 index 3510672809e..00000000000 --- a/.changeset/lovely-balloons-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pnpm/default-reporter": minor ---- - -In order to filter out packages from the installation summary, a filter function may be passed to the reporter: filterPkgsDiff. diff --git a/.changeset/nervous-turkeys-arrive.md b/.changeset/nervous-turkeys-arrive.md deleted file mode 100644 index f21ecd1a7b7..00000000000 --- a/.changeset/nervous-turkeys-arrive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@pnpm/resolve-dependencies": patch ---- - -Don't print an info message about linked dependencies if they are real linked dependencies specified via the `link:` protocol in `package.json`. diff --git a/.changeset/six-beds-arrive.md b/.changeset/six-beds-arrive.md deleted file mode 100644 index 5e3c7bee6eb..00000000000 --- a/.changeset/six-beds-arrive.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@pnpm/config": minor -"pnpm": minor ---- - -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](https://github.com/pnpm/pnpm/issues/6018). diff --git a/.changeset/tender-birds-wave.md b/.changeset/tender-birds-wave.md deleted file mode 100644 index 4fa0bb91671..00000000000 --- a/.changeset/tender-birds-wave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@pnpm/get-context": patch -"@pnpm/core": patch -"pnpm": patch ---- - -Add -g to mismatch registries error info when original command has -g option [#6224](https://github.com/pnpm/pnpm/issues/6224). diff --git a/.changeset/tiny-camels-divide.md b/.changeset/tiny-camels-divide.md deleted file mode 100644 index 8e238c41714..00000000000 --- a/.changeset/tiny-camels-divide.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@pnpm/resolve-dependencies": minor -"@pnpm/headless": minor -"@pnpm/core": minor ---- - -When `excludeLinksFromLockfile` is set to `true`, linked dependencies are not added to the lockfile. diff --git a/cli/cli-utils/CHANGELOG.md b/cli/cli-utils/CHANGELOG.md index 6078defbd9a..2f062c26a91 100644 --- a/cli/cli-utils/CHANGELOG.md +++ b/cli/cli-utils/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/cli-utils +## 2.0.5 + +### Patch Changes + +- Updated dependencies [6cfaf31a1] +- Updated dependencies [fc8780ca9] + - @pnpm/default-reporter@12.1.0 + - @pnpm/config@18.2.0 + ## 2.0.4 ### Patch Changes diff --git a/cli/cli-utils/package.json b/cli/cli-utils/package.json index 5cfe48d0598..c473f447ff7 100644 --- a/cli/cli-utils/package.json +++ b/cli/cli-utils/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/cli-utils", - "version": "2.0.4", + "version": "2.0.5", "description": "Utils for pnpm commands", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/cli/default-reporter/CHANGELOG.md b/cli/default-reporter/CHANGELOG.md index c405d0c20e0..8e8adc5699e 100644 --- a/cli/default-reporter/CHANGELOG.md +++ b/cli/default-reporter/CHANGELOG.md @@ -1,5 +1,16 @@ # @pnpm/default-reporter +## 12.1.0 + +### Minor Changes + +- 6cfaf31a1: In order to filter out packages from the installation summary, a filter function may be passed to the reporter: filterPkgsDiff. + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + ## 12.0.4 ### Patch Changes diff --git a/cli/default-reporter/package.json b/cli/default-reporter/package.json index b606d6d572d..92cb7166338 100644 --- a/cli/default-reporter/package.json +++ b/cli/default-reporter/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/default-reporter", - "version": "12.0.4", + "version": "12.1.0", "description": "The default reporter of pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/config/config/CHANGELOG.md b/config/config/CHANGELOG.md index 46e01b3fb83..4b338cdf74b 100644 --- a/config/config/CHANGELOG.md +++ b/config/config/CHANGELOG.md @@ -1,5 +1,16 @@ # @pnpm/config +## 18.2.0 + +### Minor Changes + +- fc8780ca9: 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](https://github.com/pnpm/pnpm/issues/6018). + +### Patch Changes + +- @pnpm/pnpmfile@5.0.5 + ## 18.1.1 ### Patch Changes diff --git a/config/config/package.json b/config/config/package.json index f29e5b496a3..73610e03bc6 100644 --- a/config/config/package.json +++ b/config/config/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/config", - "version": "18.1.1", + "version": "18.2.0", "description": "Gets configuration options for pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/config/plugin-commands-config/CHANGELOG.md b/config/plugin-commands-config/CHANGELOG.md index 23f53536559..04b620e157f 100644 --- a/config/plugin-commands-config/CHANGELOG.md +++ b/config/plugin-commands-config/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-config +## 2.0.5 + +### Patch Changes + +- bb287272a: `pnpm config get ` returns empty when the value is a boolean +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 2.0.4 ### Patch Changes diff --git a/config/plugin-commands-config/package.json b/config/plugin-commands-config/package.json index d8834434e91..7494fb186a9 100644 --- a/config/plugin-commands-config/package.json +++ b/config/plugin-commands-config/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-config", - "version": "2.0.4", + "version": "2.0.5", "description": "Commands for reading and writing settings to/from config files", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/env/plugin-commands-env/CHANGELOG.md b/env/plugin-commands-env/CHANGELOG.md index 5e037335e50..0a43131f6ec 100644 --- a/env/plugin-commands-env/CHANGELOG.md +++ b/env/plugin-commands-env/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/plugin-commands-env +## 4.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 4.0.4 ### Patch Changes diff --git a/env/plugin-commands-env/package.json b/env/plugin-commands-env/package.json index aac635cc6d3..737b9980c4e 100644 --- a/env/plugin-commands-env/package.json +++ b/env/plugin-commands-env/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-env", - "version": "4.0.4", + "version": "4.0.5", "description": "pnpm commands for managing Node.js", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/exec/plugin-commands-rebuild/CHANGELOG.md b/exec/plugin-commands-rebuild/CHANGELOG.md index 633a1fcc0fb..5904b2f1870 100644 --- a/exec/plugin-commands-rebuild/CHANGELOG.md +++ b/exec/plugin-commands-rebuild/CHANGELOG.md @@ -1,5 +1,19 @@ # @pnpm/plugin-commands-rebuild +## 8.0.5 + +### Patch Changes + +- Updated dependencies [72ba638e3] +- Updated dependencies [fc8780ca9] +- Updated dependencies [080fee0b8] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/config@18.2.0 + - @pnpm/get-context@9.0.2 + - @pnpm/cli-utils@2.0.5 + - @pnpm/store-connection-manager@6.0.5 + - @pnpm/find-workspace-packages@6.0.5 + ## 8.0.4 ### Patch Changes diff --git a/exec/plugin-commands-rebuild/package.json b/exec/plugin-commands-rebuild/package.json index db4debe6099..a18a6e26098 100644 --- a/exec/plugin-commands-rebuild/package.json +++ b/exec/plugin-commands-rebuild/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-rebuild", - "version": "8.0.4", + "version": "8.0.5", "description": "Commands for rebuilding dependencies", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/exec/plugin-commands-script-runners/CHANGELOG.md b/exec/plugin-commands-script-runners/CHANGELOG.md index 9ecb566fcd3..5db5cfbdc5a 100644 --- a/exec/plugin-commands-script-runners/CHANGELOG.md +++ b/exec/plugin-commands-script-runners/CHANGELOG.md @@ -1,5 +1,15 @@ # @pnpm/plugin-commands-script-runners +## 7.0.5 + +### Patch Changes + +- Updated dependencies [e440d784f] +- Updated dependencies [fc8780ca9] + - @pnpm/plugin-commands-installation@12.1.2 + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 7.0.4 ### Patch Changes diff --git a/exec/plugin-commands-script-runners/package.json b/exec/plugin-commands-script-runners/package.json index fa5493b7dd8..9276c5116eb 100644 --- a/exec/plugin-commands-script-runners/package.json +++ b/exec/plugin-commands-script-runners/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-script-runners", - "version": "7.0.4", + "version": "7.0.5", "description": "Commands for running scripts", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/hooks/pnpmfile/CHANGELOG.md b/hooks/pnpmfile/CHANGELOG.md index 79f11140c6d..598c3a2ae72 100644 --- a/hooks/pnpmfile/CHANGELOG.md +++ b/hooks/pnpmfile/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/pnpmfile +## 5.0.5 + +### Patch Changes + +- Updated dependencies [080fee0b8] +- Updated dependencies [72ba638e3] + - @pnpm/core@9.2.0 + ## 5.0.4 ### Patch Changes diff --git a/hooks/pnpmfile/package.json b/hooks/pnpmfile/package.json index 3c7e1ad707e..45aba9cfd67 100644 --- a/hooks/pnpmfile/package.json +++ b/hooks/pnpmfile/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/pnpmfile", - "version": "5.0.4", + "version": "5.0.5", "description": "Reading a .pnpmfile.cjs", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/lockfile/audit/CHANGELOG.md b/lockfile/audit/CHANGELOG.md index 00e0b648701..8be89c53aa1 100644 --- a/lockfile/audit/CHANGELOG.md +++ b/lockfile/audit/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/audit +## 7.0.3 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/list@9.0.2 + ## 7.0.2 ### Patch Changes diff --git a/lockfile/audit/package.json b/lockfile/audit/package.json index b8a1bf54582..ded10745470 100644 --- a/lockfile/audit/package.json +++ b/lockfile/audit/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/audit", - "version": "7.0.2", + "version": "7.0.3", "description": "Audit a lockfile", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/lockfile/filter-lockfile/CHANGELOG.md b/lockfile/filter-lockfile/CHANGELOG.md index e719bc58b44..a9f856f68fe 100644 --- a/lockfile/filter-lockfile/CHANGELOG.md +++ b/lockfile/filter-lockfile/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/filter-lockfile +## 8.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 8.0.1 ### Patch Changes diff --git a/lockfile/filter-lockfile/package.json b/lockfile/filter-lockfile/package.json index 06865637900..5e80584d052 100644 --- a/lockfile/filter-lockfile/package.json +++ b/lockfile/filter-lockfile/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/filter-lockfile", - "version": "8.0.1", + "version": "8.0.2", "description": "Filters a lockfile", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/lockfile/lockfile-to-pnp/CHANGELOG.md b/lockfile/lockfile-to-pnp/CHANGELOG.md index 4f1b2e08784..e2ebb4ae6cc 100644 --- a/lockfile/lockfile-to-pnp/CHANGELOG.md +++ b/lockfile/lockfile-to-pnp/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/lockfile-to-pnp +## 3.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 3.0.1 ### Patch Changes diff --git a/lockfile/lockfile-to-pnp/package.json b/lockfile/lockfile-to-pnp/package.json index a1b47707578..1b9b36fc0cd 100644 --- a/lockfile/lockfile-to-pnp/package.json +++ b/lockfile/lockfile-to-pnp/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/lockfile-to-pnp", - "version": "3.0.1", + "version": "3.0.2", "description": "Creates a Plug'n'Play file from a pnpm-lock.yaml", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/lockfile/lockfile-utils/CHANGELOG.md b/lockfile/lockfile-utils/CHANGELOG.md index 64d0039f3ac..fadd1543499 100644 --- a/lockfile/lockfile-utils/CHANGELOG.md +++ b/lockfile/lockfile-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/lockfile-utils +## 7.0.0 + +### Major Changes + +- 72ba638e3: Breaking changes to the API of `satisfiesPackageManifest`. + ## 6.0.1 ### Patch Changes diff --git a/lockfile/lockfile-utils/package.json b/lockfile/lockfile-utils/package.json index 950757bd475..7a9c67f6bc3 100644 --- a/lockfile/lockfile-utils/package.json +++ b/lockfile/lockfile-utils/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/lockfile-utils", - "version": "6.0.1", + "version": "7.0.0", "description": "Utils for dealing with pnpm-lock.yaml", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/lockfile/plugin-commands-audit/CHANGELOG.md b/lockfile/plugin-commands-audit/CHANGELOG.md index ab95daf2ee0..fc48a54efdb 100644 --- a/lockfile/plugin-commands-audit/CHANGELOG.md +++ b/lockfile/plugin-commands-audit/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-audit +## 8.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/audit@7.0.3 + - @pnpm/cli-utils@2.0.5 + ## 8.0.4 ### Patch Changes diff --git a/lockfile/plugin-commands-audit/package.json b/lockfile/plugin-commands-audit/package.json index ab0a60c4e1c..68357ad7142 100644 --- a/lockfile/plugin-commands-audit/package.json +++ b/lockfile/plugin-commands-audit/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-audit", - "version": "8.0.4", + "version": "8.0.5", "description": "pnpm commands for dependencies audit", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/packages/mount-modules/CHANGELOG.md b/packages/mount-modules/CHANGELOG.md index 7dc08951b33..c36bbfe49da 100644 --- a/packages/mount-modules/CHANGELOG.md +++ b/packages/mount-modules/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/mount-modules +## 0.4.5 + +### Patch Changes + +- Updated dependencies [72ba638e3] +- Updated dependencies [fc8780ca9] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/config@18.2.0 + ## 0.4.4 ### Patch Changes diff --git a/packages/mount-modules/package.json b/packages/mount-modules/package.json index 53fc91780a0..dea43b0a40d 100644 --- a/packages/mount-modules/package.json +++ b/packages/mount-modules/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/mount-modules", - "version": "0.4.4", + "version": "0.4.5", "description": "Mounts a node_modules directory with FUSE", "main": "lib/index.js", "bin": "bin/mount-modules.js", diff --git a/packages/plugin-commands-doctor/CHANGELOG.md b/packages/plugin-commands-doctor/CHANGELOG.md index 6d629a93760..59f72140d41 100644 --- a/packages/plugin-commands-doctor/CHANGELOG.md +++ b/packages/plugin-commands-doctor/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/plugin-commands-doctor +## 2.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 2.0.4 ### Patch Changes diff --git a/packages/plugin-commands-doctor/package.json b/packages/plugin-commands-doctor/package.json index e0c10701eaf..ef47ababe5f 100644 --- a/packages/plugin-commands-doctor/package.json +++ b/packages/plugin-commands-doctor/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-doctor", - "version": "2.0.4", + "version": "2.0.5", "description": "Commands for checks of known common issues ", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/packages/plugin-commands-init/CHANGELOG.md b/packages/plugin-commands-init/CHANGELOG.md index c8711500d76..b84c81f7ab4 100644 --- a/packages/plugin-commands-init/CHANGELOG.md +++ b/packages/plugin-commands-init/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/plugin-commands-init +## 3.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 3.0.4 ### Patch Changes diff --git a/packages/plugin-commands-init/package.json b/packages/plugin-commands-init/package.json index 6328a4d9880..ae39979d8ad 100644 --- a/packages/plugin-commands-init/package.json +++ b/packages/plugin-commands-init/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-init", - "version": "3.0.4", + "version": "3.0.5", "description": "Create a package.json file", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/packages/plugin-commands-setup/CHANGELOG.md b/packages/plugin-commands-setup/CHANGELOG.md index 38c7c0be360..5813e799427 100644 --- a/packages/plugin-commands-setup/CHANGELOG.md +++ b/packages/plugin-commands-setup/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/plugin-commands-setup +## 4.0.5 + +### Patch Changes + +- @pnpm/cli-utils@2.0.5 + ## 4.0.4 ### Patch Changes diff --git a/packages/plugin-commands-setup/package.json b/packages/plugin-commands-setup/package.json index aa83f6900d3..38f73223359 100644 --- a/packages/plugin-commands-setup/package.json +++ b/packages/plugin-commands-setup/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-setup", - "version": "4.0.4", + "version": "4.0.5", "description": "pnpm commands for setting up pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/patching/plugin-commands-patching/CHANGELOG.md b/patching/plugin-commands-patching/CHANGELOG.md index 850f8ae4407..838c6ecd51c 100644 --- a/patching/plugin-commands-patching/CHANGELOG.md +++ b/patching/plugin-commands-patching/CHANGELOG.md @@ -1,5 +1,18 @@ # @pnpm/plugin-commands-patching +## 3.0.5 + +### Patch Changes + +- Updated dependencies [72ba638e3] +- Updated dependencies [e440d784f] +- Updated dependencies [fc8780ca9] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/plugin-commands-installation@12.1.2 + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + - @pnpm/store-connection-manager@6.0.5 + ## 3.0.4 ### Patch Changes diff --git a/patching/plugin-commands-patching/package.json b/patching/plugin-commands-patching/package.json index ef5cf910196..12deb20c59a 100644 --- a/patching/plugin-commands-patching/package.json +++ b/patching/plugin-commands-patching/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-patching", - "version": "3.0.4", + "version": "3.0.5", "description": "Commands for creating patches", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/pkg-manager/core/CHANGELOG.md b/pkg-manager/core/CHANGELOG.md index 1209d7b19b5..4501f0eb45c 100644 --- a/pkg-manager/core/CHANGELOG.md +++ b/pkg-manager/core/CHANGELOG.md @@ -1,5 +1,28 @@ # @pnpm/core +## 9.2.0 + +### Minor Changes + +- 72ba638e3: When `excludeLinksFromLockfile` is set to `true`, linked dependencies are not added to the lockfile. + +### Patch Changes + +- 080fee0b8: Add -g to mismatch registries error info when original command has -g option [#6224](https://github.com/pnpm/pnpm/issues/6224). +- Updated dependencies [72ba638e3] +- Updated dependencies [e440d784f] +- Updated dependencies [d52c6d751] +- Updated dependencies [080fee0b8] +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/resolve-dependencies@31.1.0 + - @pnpm/get-context@9.0.2 + - @pnpm/headless@20.1.0 + - @pnpm/filter-lockfile@8.0.2 + - @pnpm/lockfile-to-pnp@3.0.2 + - @pnpm/hoist@8.0.2 + - @pnpm/modules-cleaner@14.0.2 + ## 9.1.1 ### Patch Changes diff --git a/pkg-manager/core/package.json b/pkg-manager/core/package.json index 2474c938fee..6d6c125d966 100644 --- a/pkg-manager/core/package.json +++ b/pkg-manager/core/package.json @@ -1,7 +1,7 @@ { "name": "@pnpm/core", "description": "Fast, disk space efficient installation engine", - "version": "9.1.1", + "version": "9.2.0", "bugs": { "url": "https://github.com/pnpm/pnpm/issues" }, diff --git a/pkg-manager/get-context/CHANGELOG.md b/pkg-manager/get-context/CHANGELOG.md index 39fc124358e..908146938cf 100644 --- a/pkg-manager/get-context/CHANGELOG.md +++ b/pkg-manager/get-context/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/get-context +## 9.0.2 + +### Patch Changes + +- 080fee0b8: Add -g to mismatch registries error info when original command has -g option [#6224](https://github.com/pnpm/pnpm/issues/6224). + ## 9.0.1 ### Patch Changes diff --git a/pkg-manager/get-context/package.json b/pkg-manager/get-context/package.json index 22a54107d03..469915ac5e4 100644 --- a/pkg-manager/get-context/package.json +++ b/pkg-manager/get-context/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/get-context", - "version": "9.0.1", + "version": "9.0.2", "description": "Gets context information about a project", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/pkg-manager/headless/CHANGELOG.md b/pkg-manager/headless/CHANGELOG.md index 76a9c914b2a..3b22789c124 100644 --- a/pkg-manager/headless/CHANGELOG.md +++ b/pkg-manager/headless/CHANGELOG.md @@ -1,5 +1,22 @@ # @pnpm/headless +## 20.1.0 + +### Minor Changes + +- 72ba638e3: When `excludeLinksFromLockfile` is set to `true`, linked dependencies are not added to the lockfile. + +### Patch Changes + +- Updated dependencies [72ba638e3] +- Updated dependencies [e440d784f] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/real-hoist@2.0.2 + - @pnpm/filter-lockfile@8.0.2 + - @pnpm/lockfile-to-pnp@3.0.2 + - @pnpm/hoist@8.0.2 + - @pnpm/modules-cleaner@14.0.2 + ## 20.0.2 ### Patch Changes diff --git a/pkg-manager/headless/package.json b/pkg-manager/headless/package.json index be4dc396205..df7ea4985a8 100644 --- a/pkg-manager/headless/package.json +++ b/pkg-manager/headless/package.json @@ -1,7 +1,7 @@ { "name": "@pnpm/headless", "description": "Fast installation using only pnpm-lock.yaml", - "version": "20.0.2", + "version": "20.1.0", "bugs": { "url": "https://github.com/pnpm/pnpm/issues" }, diff --git a/pkg-manager/hoist/CHANGELOG.md b/pkg-manager/hoist/CHANGELOG.md index 114f6f96033..3e2e862875d 100644 --- a/pkg-manager/hoist/CHANGELOG.md +++ b/pkg-manager/hoist/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/hoist +## 8.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 8.0.1 ### Patch Changes diff --git a/pkg-manager/hoist/package.json b/pkg-manager/hoist/package.json index f4e8de60cdf..51d33174ffc 100644 --- a/pkg-manager/hoist/package.json +++ b/pkg-manager/hoist/package.json @@ -1,7 +1,7 @@ { "name": "@pnpm/hoist", "description": "Hoists dependencies in a node_modules created by pnpm", - "version": "8.0.1", + "version": "8.0.2", "bugs": { "url": "https://github.com/pnpm/pnpm/issues" }, diff --git a/pkg-manager/modules-cleaner/CHANGELOG.md b/pkg-manager/modules-cleaner/CHANGELOG.md index 75748a22d79..44a6e619b36 100644 --- a/pkg-manager/modules-cleaner/CHANGELOG.md +++ b/pkg-manager/modules-cleaner/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/modules-cleaner +## 14.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/filter-lockfile@8.0.2 + ## 14.0.1 ### Patch Changes diff --git a/pkg-manager/modules-cleaner/package.json b/pkg-manager/modules-cleaner/package.json index 7e2e13e7572..44c10425b62 100644 --- a/pkg-manager/modules-cleaner/package.json +++ b/pkg-manager/modules-cleaner/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/modules-cleaner", - "version": "14.0.1", + "version": "14.0.2", "description": "Exports util functions to clean up node_modules", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/pkg-manager/plugin-commands-installation/CHANGELOG.md b/pkg-manager/plugin-commands-installation/CHANGELOG.md index e1318bdc630..bb392765f17 100644 --- a/pkg-manager/plugin-commands-installation/CHANGELOG.md +++ b/pkg-manager/plugin-commands-installation/CHANGELOG.md @@ -1,5 +1,23 @@ # @pnpm/plugin-commands-installation +## 12.1.2 + +### Patch Changes + +- e440d784f: Update yarn dependencies. +- Updated dependencies [fc8780ca9] +- Updated dependencies [080fee0b8] +- Updated dependencies [72ba638e3] + - @pnpm/config@18.2.0 + - @pnpm/core@9.2.0 + - @pnpm/plugin-commands-rebuild@8.0.5 + - @pnpm/outdated@12.0.3 + - @pnpm/cli-utils@2.0.5 + - @pnpm/store-connection-manager@6.0.5 + - @pnpm/pnpmfile@5.0.5 + - @pnpm/find-workspace-packages@6.0.5 + - @pnpm/filter-workspace-packages@7.0.5 + ## 12.1.1 ### Patch Changes diff --git a/pkg-manager/plugin-commands-installation/package.json b/pkg-manager/plugin-commands-installation/package.json index 32488a1e436..6491e42f4a4 100644 --- a/pkg-manager/plugin-commands-installation/package.json +++ b/pkg-manager/plugin-commands-installation/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-installation", - "version": "12.1.1", + "version": "12.1.2", "description": "Commands for installation", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/pkg-manager/real-hoist/CHANGELOG.md b/pkg-manager/real-hoist/CHANGELOG.md index 35ec5c9c96e..fb9d5e8eb94 100644 --- a/pkg-manager/real-hoist/CHANGELOG.md +++ b/pkg-manager/real-hoist/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/real-hoist +## 2.0.2 + +### Patch Changes + +- e440d784f: Update yarn dependencies. +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 2.0.1 ### Patch Changes diff --git a/pkg-manager/real-hoist/package.json b/pkg-manager/real-hoist/package.json index 6b5f8c6ceec..120835ddda1 100644 --- a/pkg-manager/real-hoist/package.json +++ b/pkg-manager/real-hoist/package.json @@ -1,7 +1,7 @@ { "name": "@pnpm/real-hoist", "description": "Hoists dependencies in a node_modules created by pnpm", - "version": "2.0.1", + "version": "2.0.2", "bugs": { "url": "https://github.com/pnpm/pnpm/issues" }, diff --git a/pkg-manager/resolve-dependencies/CHANGELOG.md b/pkg-manager/resolve-dependencies/CHANGELOG.md index c3eef712af3..d78fd9116f1 100644 --- a/pkg-manager/resolve-dependencies/CHANGELOG.md +++ b/pkg-manager/resolve-dependencies/CHANGELOG.md @@ -1,5 +1,18 @@ # @pnpm/resolve-dependencies +## 31.1.0 + +### Minor Changes + +- 72ba638e3: When `excludeLinksFromLockfile` is set to `true`, linked dependencies are not added to the lockfile. + +### Patch Changes + +- e440d784f: Update yarn dependencies. +- d52c6d751: Don't print an info message about linked dependencies if they are real linked dependencies specified via the `link:` protocol in `package.json`. +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 31.0.3 ### Patch Changes diff --git a/pkg-manager/resolve-dependencies/package.json b/pkg-manager/resolve-dependencies/package.json index 41486deb7fd..92b5f351548 100644 --- a/pkg-manager/resolve-dependencies/package.json +++ b/pkg-manager/resolve-dependencies/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/resolve-dependencies", - "version": "31.0.3", + "version": "31.1.0", "description": "Resolves dependency graph of a package", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/pnpm/CHANGELOG.md b/pnpm/CHANGELOG.md index e064bb49f18..75957ecae06 100644 --- a/pnpm/CHANGELOG.md +++ b/pnpm/CHANGELOG.md @@ -1,5 +1,16 @@ # pnpm +## 8.2.0 + +### 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](https://github.com/pnpm/pnpm/issues/6018). + +### Patch Changes + +- Add `-g` to mismatch registries error info when original command has `-g` option [#6224](https://github.com/pnpm/pnpm/issues/6224). + ## 8.1.1 ### Patch Changes diff --git a/pnpm/artifacts/exe/package.json b/pnpm/artifacts/exe/package.json index 5684319ce69..0801d27a085 100644 --- a/pnpm/artifacts/exe/package.json +++ b/pnpm/artifacts/exe/package.json @@ -1,7 +1,7 @@ { "name": "@pnpm/exe", "description": "Fast, disk space efficient package manager", - "version": "8.1.1", + "version": "8.2.0", "publishConfig": { "bin": { "pnpm": "pnpm" diff --git a/pnpm/artifacts/linux-arm64/package.json b/pnpm/artifacts/linux-arm64/package.json index 607b3a93bc2..fdd0bff2d6b 100644 --- a/pnpm/artifacts/linux-arm64/package.json +++ b/pnpm/artifacts/linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/linux-arm64", - "version": "8.1.1", + "version": "8.2.0", "license": "MIT", "publishConfig": { "bin": { diff --git a/pnpm/artifacts/linux-x64/package.json b/pnpm/artifacts/linux-x64/package.json index 07c73647ae4..907e86f969a 100644 --- a/pnpm/artifacts/linux-x64/package.json +++ b/pnpm/artifacts/linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/linux-x64", - "version": "8.1.1", + "version": "8.2.0", "license": "MIT", "publishConfig": { "bin": { diff --git a/pnpm/artifacts/macos-arm64/package.json b/pnpm/artifacts/macos-arm64/package.json index 590d5d73d3d..609ba0d9f6c 100644 --- a/pnpm/artifacts/macos-arm64/package.json +++ b/pnpm/artifacts/macos-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/macos-arm64", - "version": "8.1.1", + "version": "8.2.0", "license": "MIT", "publishConfig": { "bin": { diff --git a/pnpm/artifacts/macos-x64/package.json b/pnpm/artifacts/macos-x64/package.json index 4a86b4e6498..dc775903c27 100644 --- a/pnpm/artifacts/macos-x64/package.json +++ b/pnpm/artifacts/macos-x64/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/macos-x64", - "version": "8.1.1", + "version": "8.2.0", "license": "MIT", "publishConfig": { "bin": { diff --git a/pnpm/artifacts/win-x64/package.json b/pnpm/artifacts/win-x64/package.json index 33da6c0d872..909b1dc2659 100644 --- a/pnpm/artifacts/win-x64/package.json +++ b/pnpm/artifacts/win-x64/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/win-x64", - "version": "8.1.1", + "version": "8.2.0", "license": "MIT", "publishConfig": { "bin": { diff --git a/pnpm/package.json b/pnpm/package.json index 873cba82641..d0f143a8141 100644 --- a/pnpm/package.json +++ b/pnpm/package.json @@ -1,7 +1,7 @@ { "name": "pnpm", "description": "Fast, disk space efficient package manager", - "version": "8.1.1", + "version": "8.2.0", "bin": { "pnpm": "bin/pnpm.cjs", "pnpx": "bin/pnpx.cjs" diff --git a/releasing/plugin-commands-deploy/CHANGELOG.md b/releasing/plugin-commands-deploy/CHANGELOG.md index 460fa475a1c..f397664b75e 100644 --- a/releasing/plugin-commands-deploy/CHANGELOG.md +++ b/releasing/plugin-commands-deploy/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/plugin-commands-deploy +## 3.0.5 + +### Patch Changes + +- Updated dependencies [e440d784f] + - @pnpm/plugin-commands-installation@12.1.2 + - @pnpm/cli-utils@2.0.5 + ## 3.0.4 ### Patch Changes diff --git a/releasing/plugin-commands-deploy/package.json b/releasing/plugin-commands-deploy/package.json index 02738b8f842..3e152999f0d 100644 --- a/releasing/plugin-commands-deploy/package.json +++ b/releasing/plugin-commands-deploy/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-deploy", - "version": "3.0.4", + "version": "3.0.5", "description": "Commands for deploy", "funding": "https://opencollective.com/pnpm", "main": "lib/index.js", diff --git a/releasing/plugin-commands-publishing/CHANGELOG.md b/releasing/plugin-commands-publishing/CHANGELOG.md index 79374abf1d7..f7d41151806 100644 --- a/releasing/plugin-commands-publishing/CHANGELOG.md +++ b/releasing/plugin-commands-publishing/CHANGELOG.md @@ -1,5 +1,13 @@ # @pnpm/plugin-commands-publishing +## 7.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + ## 7.0.4 ### Patch Changes diff --git a/releasing/plugin-commands-publishing/package.json b/releasing/plugin-commands-publishing/package.json index caf26cf255f..16f5b43341b 100644 --- a/releasing/plugin-commands-publishing/package.json +++ b/releasing/plugin-commands-publishing/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-publishing", - "version": "7.0.4", + "version": "7.0.5", "description": "The pack and publish commands of pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/dependencies-hierarchy/CHANGELOG.md b/reviewing/dependencies-hierarchy/CHANGELOG.md index 9d692ce6e61..349d816dae0 100644 --- a/reviewing/dependencies-hierarchy/CHANGELOG.md +++ b/reviewing/dependencies-hierarchy/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/reviewing.dependencies-hierarchy +## 2.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 2.0.1 ### Patch Changes diff --git a/reviewing/dependencies-hierarchy/package.json b/reviewing/dependencies-hierarchy/package.json index 34e8cb78bc8..04b5c39006e 100644 --- a/reviewing/dependencies-hierarchy/package.json +++ b/reviewing/dependencies-hierarchy/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/reviewing.dependencies-hierarchy", - "version": "2.0.1", + "version": "2.0.2", "description": "Creates a dependencies hierarchy for a symlinked `node_modules`", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/license-scanner/CHANGELOG.md b/reviewing/license-scanner/CHANGELOG.md index b4cefbe34c4..0ec9ecb26d2 100644 --- a/reviewing/license-scanner/CHANGELOG.md +++ b/reviewing/license-scanner/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/license-scanner +## 2.0.2 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 2.0.1 ### Patch Changes diff --git a/reviewing/license-scanner/package.json b/reviewing/license-scanner/package.json index 425697039fb..bcaa7ecf13d 100644 --- a/reviewing/license-scanner/package.json +++ b/reviewing/license-scanner/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/license-scanner", - "version": "2.0.1", + "version": "2.0.2", "description": "Check for licenses packages", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/list/CHANGELOG.md b/reviewing/list/CHANGELOG.md index 8d12421fbcd..d9a89ab7a61 100644 --- a/reviewing/list/CHANGELOG.md +++ b/reviewing/list/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/list +## 9.0.2 + +### Patch Changes + +- @pnpm/reviewing.dependencies-hierarchy@2.0.2 + ## 9.0.1 ### Patch Changes diff --git a/reviewing/list/package.json b/reviewing/list/package.json index 12490388df0..34d0117d12e 100644 --- a/reviewing/list/package.json +++ b/reviewing/list/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/list", - "version": "9.0.1", + "version": "9.0.2", "description": "List installed packages in a symlinked `node_modules`", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/outdated/CHANGELOG.md b/reviewing/outdated/CHANGELOG.md index f316e71261c..cf2cd175719 100644 --- a/reviewing/outdated/CHANGELOG.md +++ b/reviewing/outdated/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/outdated +## 12.0.3 + +### Patch Changes + +- Updated dependencies [72ba638e3] + - @pnpm/lockfile-utils@7.0.0 + ## 12.0.2 ### Patch Changes diff --git a/reviewing/outdated/package.json b/reviewing/outdated/package.json index b5846c6fb5c..61abf2d55d1 100644 --- a/reviewing/outdated/package.json +++ b/reviewing/outdated/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/outdated", - "version": "12.0.2", + "version": "12.0.3", "description": "Check for outdated packages", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/plugin-commands-licenses/CHANGELOG.md b/reviewing/plugin-commands-licenses/CHANGELOG.md index 53103d99474..259b6feb502 100644 --- a/reviewing/plugin-commands-licenses/CHANGELOG.md +++ b/reviewing/plugin-commands-licenses/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-licenses +## 2.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/license-scanner@2.0.2 + - @pnpm/cli-utils@2.0.5 + ## 2.0.4 ### Patch Changes diff --git a/reviewing/plugin-commands-licenses/package.json b/reviewing/plugin-commands-licenses/package.json index ca5baddf21d..f580a74d544 100644 --- a/reviewing/plugin-commands-licenses/package.json +++ b/reviewing/plugin-commands-licenses/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-licenses", - "version": "2.0.4", + "version": "2.0.5", "description": "The licenses command of pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/plugin-commands-listing/CHANGELOG.md b/reviewing/plugin-commands-listing/CHANGELOG.md index 2bae42b67ab..8beb7e152fc 100644 --- a/reviewing/plugin-commands-listing/CHANGELOG.md +++ b/reviewing/plugin-commands-listing/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-listing +## 7.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + - @pnpm/list@9.0.2 + ## 7.0.4 ### Patch Changes diff --git a/reviewing/plugin-commands-listing/package.json b/reviewing/plugin-commands-listing/package.json index 2d8bfc5772b..720e3ac682d 100644 --- a/reviewing/plugin-commands-listing/package.json +++ b/reviewing/plugin-commands-listing/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-listing", - "version": "7.0.4", + "version": "7.0.5", "description": "The list and why commands of pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/reviewing/plugin-commands-outdated/CHANGELOG.md b/reviewing/plugin-commands-outdated/CHANGELOG.md index f3a0e5b803c..6a6f4fb24b9 100644 --- a/reviewing/plugin-commands-outdated/CHANGELOG.md +++ b/reviewing/plugin-commands-outdated/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-outdated +## 9.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/outdated@12.0.3 + - @pnpm/cli-utils@2.0.5 + ## 9.0.4 ### Patch Changes diff --git a/reviewing/plugin-commands-outdated/package.json b/reviewing/plugin-commands-outdated/package.json index 5c0ffab3c04..8c68529f6e3 100644 --- a/reviewing/plugin-commands-outdated/package.json +++ b/reviewing/plugin-commands-outdated/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-outdated", - "version": "9.0.4", + "version": "9.0.5", "description": "The outdated command of pnpm", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/store/plugin-commands-server/CHANGELOG.md b/store/plugin-commands-server/CHANGELOG.md index 4ce3022280c..7e1516837c9 100644 --- a/store/plugin-commands-server/CHANGELOG.md +++ b/store/plugin-commands-server/CHANGELOG.md @@ -1,5 +1,14 @@ # @pnpm/plugin-commands-server +## 6.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + - @pnpm/cli-utils@2.0.5 + - @pnpm/store-connection-manager@6.0.5 + ## 6.0.4 ### Patch Changes diff --git a/store/plugin-commands-server/package.json b/store/plugin-commands-server/package.json index b65c306b5ed..0658ff809c3 100644 --- a/store/plugin-commands-server/package.json +++ b/store/plugin-commands-server/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-server", - "version": "6.0.4", + "version": "6.0.5", "description": "Commands for controlling the store server", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/store/plugin-commands-store/CHANGELOG.md b/store/plugin-commands-store/CHANGELOG.md index 4f1f335a264..6fa3c66cb73 100644 --- a/store/plugin-commands-store/CHANGELOG.md +++ b/store/plugin-commands-store/CHANGELOG.md @@ -1,5 +1,18 @@ # @pnpm/plugin-commands-store +## 7.0.5 + +### Patch Changes + +- Updated dependencies [72ba638e3] +- Updated dependencies [fc8780ca9] +- Updated dependencies [080fee0b8] + - @pnpm/lockfile-utils@7.0.0 + - @pnpm/config@18.2.0 + - @pnpm/get-context@9.0.2 + - @pnpm/cli-utils@2.0.5 + - @pnpm/store-connection-manager@6.0.5 + ## 7.0.4 ### Patch Changes diff --git a/store/plugin-commands-store/package.json b/store/plugin-commands-store/package.json index d693237baca..2d7ef3b8cb7 100644 --- a/store/plugin-commands-store/package.json +++ b/store/plugin-commands-store/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/plugin-commands-store", - "version": "7.0.4", + "version": "7.0.5", "description": "Commands for controlling the store", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/store/store-connection-manager/CHANGELOG.md b/store/store-connection-manager/CHANGELOG.md index d6a3a160cbf..3ecd5c129ec 100644 --- a/store/store-connection-manager/CHANGELOG.md +++ b/store/store-connection-manager/CHANGELOG.md @@ -1,5 +1,12 @@ # @pnpm/store-connection-manager +## 6.0.5 + +### Patch Changes + +- Updated dependencies [fc8780ca9] + - @pnpm/config@18.2.0 + ## 6.0.4 ### Patch Changes diff --git a/store/store-connection-manager/package.json b/store/store-connection-manager/package.json index c04278541dd..fe36d36dc2b 100644 --- a/store/store-connection-manager/package.json +++ b/store/store-connection-manager/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/store-connection-manager", - "version": "6.0.4", + "version": "6.0.5", "description": "Create a direct pnpm store controller or connect to a running store server", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/workspace/filter-workspace-packages/CHANGELOG.md b/workspace/filter-workspace-packages/CHANGELOG.md index e717d38f7bb..835dbf25c98 100644 --- a/workspace/filter-workspace-packages/CHANGELOG.md +++ b/workspace/filter-workspace-packages/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/filter-workspace-packages +## 7.0.5 + +### Patch Changes + +- @pnpm/find-workspace-packages@6.0.5 + ## 7.0.4 ### Patch Changes diff --git a/workspace/filter-workspace-packages/package.json b/workspace/filter-workspace-packages/package.json index 17801e11574..ffe9b48f95c 100644 --- a/workspace/filter-workspace-packages/package.json +++ b/workspace/filter-workspace-packages/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/filter-workspace-packages", - "version": "7.0.4", + "version": "7.0.5", "description": "Filters packages in a workspace", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/workspace/find-workspace-packages/CHANGELOG.md b/workspace/find-workspace-packages/CHANGELOG.md index a271704ca74..be61c82d015 100644 --- a/workspace/find-workspace-packages/CHANGELOG.md +++ b/workspace/find-workspace-packages/CHANGELOG.md @@ -1,5 +1,11 @@ # @pnpm/find-workspace-packages +## 6.0.5 + +### Patch Changes + +- @pnpm/cli-utils@2.0.5 + ## 6.0.4 ### Patch Changes diff --git a/workspace/find-workspace-packages/package.json b/workspace/find-workspace-packages/package.json index 16fbbb8943b..789c2df547e 100644 --- a/workspace/find-workspace-packages/package.json +++ b/workspace/find-workspace-packages/package.json @@ -1,6 +1,6 @@ { "name": "@pnpm/find-workspace-packages", - "version": "6.0.4", + "version": "6.0.5", "description": "Finds packages inside a workspace", "main": "lib/index.js", "types": "lib/index.d.ts",