chore(release): 9.9.0

This commit is contained in:
Zoltan Kochan
2024-08-26 17:12:28 +02:00
parent 7ee59a166a
commit 10d8007747
237 changed files with 1383 additions and 197 deletions

View File

@@ -1,6 +0,0 @@
---
"@pnpm/plugin-commands-deploy": patch
"pnpm": patch
---
`pnpm deploy` should write the `node_modules/.modules.yaml` to the `node_modules` directory within the deploy directory [#7731](https://github.com/pnpm/pnpm/issues/7731).

View File

@@ -1,60 +0,0 @@
---
"pnpm": minor
---
**Minor breaking change.** This change might result in resolving your peer dependencies slightly differently but we don't expect it to introduce issues.
We had to optimize how we resolve peer dependencies in order to fix some [infinite loops and out-of-memory errors during peer dependencies resolution](https://github.com/pnpm/pnpm/issues/8370).
When a peer dependency is a prod dependency somewhere in the dependency graph (with the same version), pnpm will resolve the peers of that peer dependency in the same way across the subgraph.
For example, we have `react-dom` in the peer deps of the `form` and `button` packages. `card` has `react-dom` and `react` as regular dependencies and `card` is a dependency of `form`.
These are the direct dependencies of our example project:
```
form
react@16
react-dom@16
```
These are the dependencies of card:
```
button
react@17
react-dom@16
```
When resolving peers, pnpm will not re-resolve `react-dom` for `card`, even though `card` shadows `react@16` from the root with `react@17`. So, all 3 packages (`form`, `card`, and `button`) will use `react-dom@16`, which in turn uses `react@16`. `form` will use `react@16`, while `card` and `button` will use `react@17`.
Before this optimization `react-dom@16` was duplicated for the `card`, so that `card` and `button` would use a `react-dom@16` instance that uses `react@17`.
Before the change:
```
form
-> react-dom@16(react@16)
-> react@16
card
-> react-dom@16(react@17)
-> react@17
button
-> react-dom@16(react@17)
-> react@17
```
After the change
```
form
-> react-dom@16(react@16)
-> react@16
card
-> react-dom@16(react@16)
-> react@17
button
-> react-dom@16(react@16)
-> react@17
```

View File

@@ -1,6 +0,0 @@
---
"@pnpm/types": minor
"@pnpm/plugin-commands-installation": minor
---
Added optional modulesDir field to projects.

View File

@@ -1,5 +0,0 @@
---
"pnpm": patch
---
Don't override a symlink in `node_modules` if it already points to the right location [pnpm/symlink-dir#54](https://github.com/pnpm/symlink-dir/pull/54).

View File

@@ -1,5 +1,13 @@
# @pnpm-private/updater
## 2.0.13
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.fs@1.0.2
## 2.0.12
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm-private/updater",
"version": "2.0.12",
"version": "2.0.13",
"private": true,
"type": "module",
"scripts": {

View File

@@ -1,5 +1,15 @@
# @pnpm/assert-project
## 2.3.58
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/modules-yaml@13.1.6
- @pnpm/assert-store@1.0.89
## 2.3.57
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/assert-project",
"description": "Utils for testing projects that use pnpm",
"version": "2.3.57",
"version": "2.3.58",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",

View File

@@ -1,5 +1,11 @@
# @pnpm/assert-store
## 1.0.89
### Patch Changes
- @pnpm/store.cafs@3.0.8
## 1.0.88
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/assert-store",
"description": "Utils for testing pnpm store",
"version": "1.0.88",
"version": "1.0.89",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",

View File

@@ -1,5 +1,13 @@
# @pnpm/prepare
## 0.0.101
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/assert-project@2.3.58
## 0.0.100
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/prepare",
"version": "0.0.100",
"version": "0.0.101",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {

View File

@@ -1,5 +1,11 @@
# @pnpm/test-fixtures
## 0.1.31
### Patch Changes
- @pnpm/prepare@0.0.101
## 0.1.30
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/test-fixtures",
"description": "Test fixtures",
"version": "0.1.30",
"version": "0.1.31",
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",

View File

@@ -1,5 +1,12 @@
# @pnpm/cli-meta
## 6.2.1
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 6.2.0
### Minor Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cli-meta",
"version": "6.2.0",
"version": "6.2.1",
"description": "Reads the metainfo of the currently running pnpm instance",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,18 @@
# @pnpm/cli-utils
## 4.0.4
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-meta@6.2.1
- @pnpm/default-reporter@14.0.1
- @pnpm/config@21.8.2
- @pnpm/package-is-installable@9.0.8
- @pnpm/manifest-utils@6.0.7
- @pnpm/read-project-manifest@6.0.7
## 4.0.3
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/cli-utils",
"version": "4.0.3",
"version": "4.0.4",
"description": "Utils for pnpm commands",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,16 @@
# @pnpm/default-reporter
## 14.0.1
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-meta@6.2.1
- @pnpm/config@21.8.2
- @pnpm/core-loggers@10.0.6
- @pnpm/render-peer-issues@5.0.7
## 14.0.0
### Major Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/default-reporter",
"version": "14.0.0",
"version": "14.0.1",
"description": "The default reporter of pnpm",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/plugin-commands-completion
## 1.0.20
### Patch Changes
- @pnpm/cli-utils@4.0.4
- @pnpm/workspace.find-packages@4.0.9
## 1.0.19
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-completion",
"version": "1.0.19",
"version": "1.0.20",
"description": "Commands for shell completions",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/config
## 21.8.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/pnpmfile@6.0.10
- @pnpm/read-project-manifest@6.0.7
## 21.8.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/config",
"version": "21.8.1",
"version": "21.8.2",
"description": "Gets configuration options for pnpm",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/normalize-registries
## 6.0.6
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 6.0.5
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/normalize-registries",
"description": "Accepts a mapping of registry URLs and returns a mapping with the same URLs but normalized",
"version": "6.0.5",
"version": "6.0.6",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,14 @@
# @pnpm/package-is-installable
## 9.0.8
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-meta@6.2.1
- @pnpm/core-loggers@10.0.6
## 9.0.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/package-is-installable",
"version": "9.0.7",
"version": "9.0.8",
"description": "Checks if a package is installable on the current system",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/pick-registry-for-package
## 6.0.6
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 6.0.5
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/pick-registry-for-package",
"description": "Picks the right registry for the package from a registries config",
"version": "6.0.5",
"version": "6.0.6",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,12 @@
# @pnpm/plugin-commands-config
## 3.0.20
### Patch Changes
- @pnpm/cli-utils@4.0.4
- @pnpm/config@21.8.2
## 3.0.19
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-config",
"version": "3.0.19",
"version": "3.0.20",
"description": "Commands for reading and writing settings to/from config files",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @pnpm/dedupe.check
## 2.0.9
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
## 2.0.8
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/dedupe.check",
"version": "2.0.8",
"version": "2.0.9",
"description": "Visualize pnpm dedupe --check issues.",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"

View File

@@ -1,5 +1,19 @@
# @pnpm/deps.graph-builder
## 2.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/package-is-installable@9.0.8
- @pnpm/lockfile.fs@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/core-loggers@10.0.6
- @pnpm/dependency-path@5.1.5
- @pnpm/modules-yaml@13.1.6
- @pnpm/store-controller-types@18.1.5
## 2.0.1
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/deps.graph-builder",
"description": "A package for building a dependency graph from a lockfile",
"version": "2.0.1",
"version": "2.0.2",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,14 @@
# @pnpm/node.fetcher
## 4.0.12
### Patch Changes
- @pnpm/fetcher-base@16.0.6
- @pnpm/tarball-fetcher@19.0.12
- @pnpm/create-cafs-store@7.0.8
- @pnpm/pick-fetcher@3.0.0
## 4.0.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/node.fetcher",
"version": "4.0.11",
"version": "4.0.12",
"description": "Node.js artifacts fetcher",
"funding": "https://opencollective.com/pnpm",
"main": "lib/index.js",

View File

@@ -1,5 +1,11 @@
# @pnpm/node.resolver
## 3.0.12
### Patch Changes
- @pnpm/node.fetcher@4.0.12
## 3.0.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/node.resolver",
"version": "3.0.11",
"version": "3.0.12",
"description": "Resolves a Node.js version specifier to an exact Node.js version",
"funding": "https://opencollective.com/pnpm",
"main": "lib/index.js",

View File

@@ -1,5 +1,18 @@
# @pnpm/plugin-commands-env
## 5.1.7
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-utils@4.0.4
- @pnpm/config@21.8.2
- @pnpm/fetch@8.0.6
- @pnpm/remove-bins@6.0.7
- @pnpm/node.fetcher@4.0.12
- @pnpm/node.resolver@3.0.12
## 5.1.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-env",
"version": "5.1.6",
"version": "5.1.7",
"description": "pnpm commands for managing Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,21 @@
# @pnpm/build-modules
## 14.0.1
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lifecycle@17.1.3
- @pnpm/calc-dep-state@7.0.7
- @pnpm/core-loggers@10.0.6
- @pnpm/link-bins@10.0.9
- @pnpm/read-package-json@9.0.7
- @pnpm/store-controller-types@18.1.5
- @pnpm/worker@1.0.9
- @pnpm/fs.hard-link-dir@4.0.0
- @pnpm/patching.apply-patch@3.1.0
## 14.0.0
### Major Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/build-modules",
"version": "14.0.0",
"version": "14.0.1",
"description": "Build packages in node_modules",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,17 @@
# @pnpm/lifecycle
## 17.1.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/directory-fetcher@8.0.7
- @pnpm/core-loggers@10.0.6
- @pnpm/link-bins@10.0.9
- @pnpm/read-package-json@9.0.7
- @pnpm/store-controller-types@18.1.5
## 17.1.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lifecycle",
"version": "17.1.2",
"version": "17.1.3",
"description": "Package lifecycle hook runner",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/exec.pkg-requires-build
## 1.0.6
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 1.0.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/exec.pkg-requires-build",
"version": "1.0.5",
"version": "1.0.6",
"description": "Checks if a package requires to be built",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,31 @@
# @pnpm/plugin-commands-rebuild
## 12.0.9
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-utils@4.0.4
- @pnpm/config@21.8.2
- @pnpm/normalize-registries@6.0.6
- @pnpm/lifecycle@17.1.3
- @pnpm/lockfile.types@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/lockfile.walker@1.0.2
- @pnpm/calc-dep-state@7.0.7
- @pnpm/core-loggers@10.0.6
- @pnpm/dependency-path@5.1.5
- @pnpm/get-context@12.0.4
- @pnpm/link-bins@10.0.9
- @pnpm/modules-yaml@13.1.6
- @pnpm/store.cafs@3.0.8
- @pnpm/store-controller-types@18.1.5
- @pnpm/worker@1.0.9
- @pnpm/workspace.find-packages@4.0.9
- @pnpm/sort-packages@6.0.7
- @pnpm/store-connection-manager@8.3.9
## 12.0.8
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-rebuild",
"version": "12.0.8",
"version": "12.0.9",
"description": "Commands for rebuilding dependencies",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,23 @@
# @pnpm/plugin-commands-script-runners
## 12.0.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/plugin-commands-installation@17.2.0
- @pnpm/cli-utils@4.0.4
- @pnpm/config@21.8.2
- @pnpm/plugin-commands-env@5.1.7
- @pnpm/lifecycle@17.1.3
- @pnpm/core-loggers@10.0.6
- @pnpm/package-bins@9.0.6
- @pnpm/read-package-json@9.0.7
- @pnpm/read-project-manifest@6.0.7
- @pnpm/sort-packages@6.0.7
- @pnpm/crypto.base32-hash@3.0.0
## 12.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-script-runners",
"version": "12.0.2",
"version": "12.0.3",
"description": "Commands for running scripts",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/prepare-package
## 6.0.12
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lifecycle@17.1.3
- @pnpm/read-package-json@9.0.7
## 6.0.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/prepare-package",
"version": "6.0.11",
"version": "6.0.12",
"description": "Prepares a Git-hosted package",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,16 @@
# @pnpm/directory-fetcher
## 8.0.7
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/exec.pkg-requires-build@1.0.6
- @pnpm/fetcher-base@16.0.6
- @pnpm/read-project-manifest@6.0.7
- @pnpm/resolver-base@13.0.3
## 8.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/directory-fetcher",
"version": "8.0.6",
"version": "8.0.7",
"description": "A fetcher for local directory packages",
"funding": "https://opencollective.com/pnpm",
"main": "lib/index.js",

View File

@@ -1,5 +1,13 @@
# @pnpm/fetcher-base
## 16.0.6
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/resolver-base@13.0.3
## 16.0.5
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fetcher-base",
"version": "16.0.5",
"version": "16.0.6",
"description": "Types for pnpm-compatible fetchers",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @pnpm/git-fetcher
## 13.0.12
### Patch Changes
- @pnpm/prepare-package@6.0.12
- @pnpm/fetcher-base@16.0.6
- @pnpm/worker@1.0.9
## 13.0.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/git-fetcher",
"version": "13.0.11",
"version": "13.0.12",
"description": "A fetcher for git-hosted packages",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/tarball-fetcher
## 19.0.12
### Patch Changes
- @pnpm/prepare-package@6.0.12
- @pnpm/fetcher-base@16.0.6
- @pnpm/core-loggers@10.0.6
- @pnpm/worker@1.0.9
## 19.0.11
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/tarball-fetcher",
"version": "19.0.11",
"version": "19.0.12",
"description": "Fetcher for packages hosted as tarballs",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @pnpm/fs.find-packages
## 4.0.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/read-project-manifest@6.0.7
## 4.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/fs.find-packages",
"version": "4.0.2",
"version": "4.0.3",
"description": "Find all packages inside a directory",
"main": "lib/index.js",
"files": [

View File

@@ -1,5 +1,12 @@
# @pnpm/fs.indexed-pkg-importer
## 6.0.8
### Patch Changes
- @pnpm/core-loggers@10.0.6
- @pnpm/store-controller-types@18.1.5
## 6.0.7
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/fs.indexed-pkg-importer",
"description": "Replicates indexed directories using hard links, copies, or cloning",
"version": "6.0.7",
"version": "6.0.8",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,13 @@
# @pnpm/symlink-dependency
## 8.0.7
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/core-loggers@10.0.6
## 8.0.6
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "@pnpm/symlink-dependency",
"description": "Symlink a dependency to node_modules",
"version": "8.0.6",
"version": "8.0.7",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},

View File

@@ -1,5 +1,17 @@
# @pnpm/pnpmfile
## 6.0.10
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/hooks.types@2.0.8
- @pnpm/lockfile.types@1.0.2
- @pnpm/core-loggers@10.0.6
- @pnpm/store-controller-types@18.1.5
- @pnpm/crypto.base32-hash@3.0.0
## 6.0.9
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/pnpmfile",
"version": "6.0.9",
"version": "6.0.10",
"description": "Reading a .pnpmfile.cjs",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/hooks.read-package-hook
## 5.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 5.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/hooks.read-package-hook",
"version": "5.0.1",
"version": "5.0.2",
"description": "Creates the default package reader hook used by pnpm",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @pnpm/hooks.types
## 2.0.8
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
## 2.0.7
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/hooks.types",
"version": "2.0.7",
"version": "2.0.8",
"description": "Types for hooks",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,19 @@
# @pnpm/audit
## 8.1.10
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.detect-dep-types@2.0.7
- @pnpm/lockfile.types@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/lockfile.walker@1.0.2
- @pnpm/fetch@8.0.6
- @pnpm/read-project-manifest@6.0.7
- @pnpm/list@10.1.10
## 8.1.9
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/audit",
"version": "8.1.9",
"version": "8.1.10",
"description": "Audit a lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/lockfile.detect-dep-types
## 2.0.7
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/dependency-path@5.1.5
## 2.0.6
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.detect-dep-types",
"version": "2.0.6",
"version": "2.0.7",
"description": "Detect the types of dependencies",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,17 @@
# @pnpm/filter-lockfile
## 1.0.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/package-is-installable@9.0.8
- @pnpm/lockfile.types@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/lockfile.walker@1.0.2
- @pnpm/dependency-path@5.1.5
## 1.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.filtering",
"version": "1.0.2",
"version": "1.0.3",
"description": "Filters a lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,17 @@
# @pnpm/lockfile-file
## 1.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.merger@1.0.2
- @pnpm/lockfile.types@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/dependency-path@5.1.5
- @pnpm/git-resolver@9.0.7
## 1.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.fs",
"version": "1.0.1",
"version": "1.0.2",
"description": "Read/write pnpm-lock.yaml files",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,15 @@
# @pnpm/lockfile-to-pnp
## 4.1.11
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.fs@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/dependency-path@5.1.5
## 4.1.10
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile-to-pnp",
"version": "4.1.10",
"version": "4.1.11",
"description": "Creates a Plug'n'Play file from a pnpm-lock.yaml",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,13 @@
# @pnpm/merge-lockfile-changes
## 1.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
## 1.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.merger",
"version": "1.0.1",
"version": "1.0.2",
"description": "Merges lockfiles. Can automatically fix merge conflicts",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,17 @@
# @pnpm/plugin-commands-audit
## 10.2.11
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/cli-utils@4.0.4
- @pnpm/config@21.8.2
- @pnpm/audit@8.1.10
- @pnpm/lockfile.fs@1.0.2
- @pnpm/read-project-manifest@6.0.7
## 10.2.10
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-audit",
"version": "10.2.10",
"version": "10.2.11",
"description": "pnpm commands for dependencies audit",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,15 @@
# @pnpm/lockfile.preferred-versions
## 1.0.11
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.utils@1.0.2
- @pnpm/manifest-utils@6.0.7
- @pnpm/resolver-base@13.0.3
## 1.0.10
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.preferred-versions",
"version": "1.0.10",
"version": "1.0.11",
"description": "Get preferred version from lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/prune-lockfile
## 0.0.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/dependency-path@5.1.5
## 0.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.pruner",
"version": "0.0.2",
"version": "0.0.3",
"description": "Prune a pnpm-lock.yaml",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,12 @@
# @pnpm/lockfile-types
## 1.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
## 1.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.types",
"version": "1.0.1",
"version": "1.0.2",
"description": "Types for the pnpm-lock.yaml lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,16 @@
# @pnpm/lockfile-utils
## 1.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/dependency-path@5.1.5
- @pnpm/resolver-base@13.0.3
- @pnpm/pick-fetcher@3.0.0
## 1.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.utils",
"version": "1.0.1",
"version": "1.0.2",
"description": "Utils for dealing with pnpm-lock.yaml",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,18 @@
# @pnpm/lockfile.verification
## 1.0.3
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/lockfile.utils@1.0.2
- @pnpm/dependency-path@5.1.5
- @pnpm/get-context@12.0.4
- @pnpm/read-package-json@9.0.7
- @pnpm/resolver-base@13.0.3
## 1.0.2
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.verification",
"version": "1.0.2",
"version": "1.0.3",
"description": "Checks a lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@@ -1,5 +1,14 @@
# @pnpm/lockfile-walker
## 1.0.2
### Patch Changes
- Updated dependencies [7ee59a1]
- @pnpm/types@12.1.0
- @pnpm/lockfile.types@1.0.2
- @pnpm/dependency-path@5.1.5
## 1.0.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@pnpm/lockfile.walker",
"version": "1.0.1",
"version": "1.0.2",
"description": "Walk over all the dependencies in a lockfile",
"main": "lib/index.js",
"types": "lib/index.d.ts",

Some files were not shown because too many files have changed in this diff Show More