@pnpm/lockfile.types 1100.0.13 → 1100.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +669 -0
  2. package/package.json +4 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,669 @@
1
+ # @pnpm/lockfile-types
2
+
3
+ ## 1100.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/resolving.resolver-base@1100.5.2
9
+ - @pnpm/types@1101.4.0
10
+
11
+ ## 1100.0.13
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [dcabb78]
16
+ - @pnpm/resolving.resolver-base@1100.5.1
17
+
18
+ ## 1100.0.12
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [bae694f]
23
+ - @pnpm/resolving.resolver-base@1100.5.0
24
+
25
+ ## 1100.0.11
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [681b593]
30
+ - @pnpm/types@1101.3.2
31
+ - @pnpm/resolving.resolver-base@1100.4.2
32
+
33
+ ## 1100.0.10
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [bf1b731]
38
+ - @pnpm/types@1101.3.1
39
+ - @pnpm/resolving.resolver-base@1100.4.1
40
+
41
+ ## 1100.0.9
42
+
43
+ ### Patch Changes
44
+
45
+ - Updated dependencies [a017bf3]
46
+ - Updated dependencies [6d17b66]
47
+ - @pnpm/types@1101.3.0
48
+ - @pnpm/resolving.resolver-base@1100.4.0
49
+
50
+ ## 1100.0.8
51
+
52
+ ### Patch Changes
53
+
54
+ - Updated dependencies [35d2355]
55
+ - @pnpm/types@1101.2.0
56
+ - @pnpm/resolving.resolver-base@1100.3.1
57
+
58
+ ## 1100.0.7
59
+
60
+ ### Patch Changes
61
+
62
+ - Updated dependencies [1627943]
63
+ - Updated dependencies [64afc92]
64
+ - @pnpm/resolving.resolver-base@1100.3.0
65
+ - @pnpm/types@1101.1.1
66
+
67
+ ## 1100.0.6
68
+
69
+ ### Patch Changes
70
+
71
+ - Updated dependencies [4195766]
72
+ - Updated dependencies [31538bf]
73
+ - @pnpm/resolving.resolver-base@1100.2.0
74
+
75
+ ## 1100.0.5
76
+
77
+ ### Patch Changes
78
+
79
+ - Updated dependencies [b61e268]
80
+ - @pnpm/types@1101.1.0
81
+ - @pnpm/resolving.resolver-base@1100.1.3
82
+
83
+ ## 1100.0.4
84
+
85
+ ### Patch Changes
86
+
87
+ - 27425d7: Pin the integrity of git-hosted tarballs (codeload.github.com, gitlab.com, bitbucket.org) in the lockfile so that subsequent installs detect a tampered or substituted tarball and refuse to install it. Previously the lockfile only stored the tarball URL for git dependencies, so a compromised git host or a man-in-the-middle could serve arbitrary code on later installs without lockfile changes.
88
+
89
+ A new `gitHosted: true` field is recorded on git-hosted tarball resolutions in the lockfile, letting every reader/writer route them by a single typed check instead of pattern-matching the tarball URL in each call site. Lockfiles written by older pnpm versions are enriched on load (URL fallback) so the field can be relied on uniformly across the codebase.
90
+
91
+ - Updated dependencies [27425d7]
92
+ - @pnpm/resolving.resolver-base@1100.1.2
93
+
94
+ ## 1100.0.3
95
+
96
+ ### Patch Changes
97
+
98
+ - Updated dependencies [184ce26]
99
+ - @pnpm/resolving.resolver-base@1100.1.1
100
+
101
+ ## 1100.0.2
102
+
103
+ ### Patch Changes
104
+
105
+ - Updated dependencies [72c1e05]
106
+ - @pnpm/resolving.resolver-base@1100.1.0
107
+
108
+ ## 1100.0.1
109
+
110
+ ### Patch Changes
111
+
112
+ - Updated dependencies [ff28085]
113
+ - @pnpm/types@1101.0.0
114
+ - @pnpm/resolving.resolver-base@1100.0.1
115
+
116
+ ## 1003.0.0
117
+
118
+ ### Major Changes
119
+
120
+ - 491a84f: This package is now pure ESM.
121
+ - 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
122
+
123
+ ### Minor Changes
124
+
125
+ - a8f016c: Store config dependency and package manager integrity info in `pnpm-lock.yaml` instead of inlining it in `pnpm-workspace.yaml`. The workspace manifest now contains only clean version specifiers for `configDependencies`, while the resolved versions, integrity hashes, and tarball URLs are recorded in the lockfile as a separate YAML document. The env lockfile section also stores `packageManagerDependencies` resolved during version switching and self-update. Projects using the old inline-hash format are automatically migrated on install.
126
+ - 606f53e: Added a new `dedupePeers` setting that reduces peer dependency duplication. When enabled, peer dependency suffixes use version-only identifiers (`name@version`) instead of full dep paths, eliminating nested suffixes like `(foo@1.0.0(bar@2.0.0))`. This dramatically reduces the number of package instances in projects with many recursive peer dependencies [#11070](https://github.com/pnpm/pnpm/issues/11070).
127
+ - 38b8e35: Support for custom resolvers and fetchers.
128
+
129
+ ### Patch Changes
130
+
131
+ - 50fbeca: Added `getNodeBinsForCurrentOS` to `@pnpm/constants` which returns a `Record<string, string>` with paths for `node`, `npm`, and `npx` within the Node.js package. This record is now used as `BinaryResolution.bin` (type widened from `string` to `string | Record<string, string>`) and as `manifest.bin` in the node resolver, so pnpm's bin-linker creates all three shims automatically when installing a Node.js runtime.
132
+ - Updated dependencies [facdd71]
133
+ - Updated dependencies [9b0a460]
134
+ - Updated dependencies [76718b3]
135
+ - Updated dependencies [a8f016c]
136
+ - Updated dependencies [cc1b8e3]
137
+ - Updated dependencies [491a84f]
138
+ - Updated dependencies [7d2fd48]
139
+ - Updated dependencies [efb48dc]
140
+ - Updated dependencies [50fbeca]
141
+ - Updated dependencies [cb367b9]
142
+ - Updated dependencies [7b1c189]
143
+ - Updated dependencies [8ffb1a7]
144
+ - Updated dependencies [05fb1ae]
145
+ - Updated dependencies [71de2b3]
146
+ - Updated dependencies [10bc391]
147
+ - Updated dependencies [38b8e35]
148
+ - Updated dependencies [2df8b71]
149
+ - Updated dependencies [15549a9]
150
+ - Updated dependencies [cc7c0d2]
151
+ - Updated dependencies [9d3f00b]
152
+ - Updated dependencies [efb48dc]
153
+ - @pnpm/resolving.resolver-base@1006.0.0
154
+ - @pnpm/types@1001.0.0
155
+ - @pnpm/patching.types@1001.0.0
156
+
157
+ ## 1002.0.2
158
+
159
+ ### Patch Changes
160
+
161
+ - Updated dependencies [7c1382f]
162
+ - Updated dependencies [7c1382f]
163
+ - Updated dependencies [dee39ec]
164
+ - @pnpm/types@1000.9.0
165
+ - @pnpm/resolver-base@1005.1.0
166
+
167
+ ## 1002.0.1
168
+
169
+ ### Patch Changes
170
+
171
+ - Updated dependencies [e792927]
172
+ - @pnpm/types@1000.8.0
173
+ - @pnpm/resolver-base@1005.0.1
174
+
175
+ ## 1002.0.0
176
+
177
+ ### Major Changes
178
+
179
+ - d1edf73: Removed node fetcher. The binary fetcher should be used for downloading node assets.
180
+ - f91922c: Changed how the integrity of the node.js artifact is stored in the lockfile.
181
+
182
+ ### Patch Changes
183
+
184
+ - Updated dependencies [86b33e9]
185
+ - Updated dependencies [d1edf73]
186
+ - Updated dependencies [f91922c]
187
+ - @pnpm/resolver-base@1005.0.0
188
+
189
+ ## 1001.1.0
190
+
191
+ ### Minor Changes
192
+
193
+ - 1a07b8f: Added support for resolving and downloading the Node.js runtime specified in the [devEngines](https://github.com/openjs-foundation/package-metadata-interoperability-collab-space/issues/15) field of `package.json`.
194
+
195
+ Usage example:
196
+
197
+ ```json
198
+ {
199
+ "devEngines": {
200
+ "runtime": {
201
+ "name": "node",
202
+ "version": "^24.4.0",
203
+ "onFail": "download"
204
+ }
205
+ }
206
+ }
207
+ ```
208
+
209
+ When running `pnpm install`, pnpm will resolve Node.js to the latest version that satisfies the specified range and install it as a dependency of the project. As a result, when running scripts, the locally installed Node.js version will be used.
210
+
211
+ Unlike the existing options, `useNodeVersion` and `executionEnv.nodeVersion`, this new field supports version ranges, which are locked to exact versions during installation. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
212
+
213
+ Related PR: [#9755](https://github.com/pnpm/pnpm/pull/9755).
214
+
215
+ ### Patch Changes
216
+
217
+ - Updated dependencies [1a07b8f]
218
+ - @pnpm/types@1000.7.0
219
+
220
+ ## 1001.0.8
221
+
222
+ ### Patch Changes
223
+
224
+ - Updated dependencies [5ec7255]
225
+ - @pnpm/types@1000.6.0
226
+
227
+ ## 1001.0.7
228
+
229
+ ### Patch Changes
230
+
231
+ - Updated dependencies [5b73df1]
232
+ - @pnpm/types@1000.5.0
233
+
234
+ ## 1001.0.6
235
+
236
+ ### Patch Changes
237
+
238
+ - Updated dependencies [750ae7d]
239
+ - @pnpm/types@1000.4.0
240
+
241
+ ## 1001.0.5
242
+
243
+ ### Patch Changes
244
+
245
+ - Updated dependencies [5f7be64]
246
+ - Updated dependencies [5f7be64]
247
+ - Updated dependencies [5f7be64]
248
+ - @pnpm/patching.types@1000.1.0
249
+ - @pnpm/types@1000.3.0
250
+
251
+ ## 1001.0.4
252
+
253
+ ### Patch Changes
254
+
255
+ - Updated dependencies [a5e4965]
256
+ - @pnpm/types@1000.2.1
257
+
258
+ ## 1001.0.3
259
+
260
+ ### Patch Changes
261
+
262
+ - Updated dependencies [8fcc221]
263
+ - @pnpm/types@1000.2.0
264
+
265
+ ## 1001.0.2
266
+
267
+ ### Patch Changes
268
+
269
+ - Updated dependencies [b562deb]
270
+ - @pnpm/types@1000.1.1
271
+
272
+ ## 1001.0.1
273
+
274
+ ### Patch Changes
275
+
276
+ - Updated dependencies [9591a18]
277
+ - @pnpm/types@1000.1.0
278
+
279
+ ## 1001.0.0
280
+
281
+ ### Major Changes
282
+
283
+ - a76da0c: Removed lockfile conversion from v6 to v9. If you need to convert lockfile v6 to v9, use pnpm CLI v9.
284
+
285
+ ### Minor Changes
286
+
287
+ - 6483b64: A new setting, `inject-workspace-packages`, has been added to allow hard-linking all local workspace dependencies instead of symlinking them. Previously, this behavior was achievable via the [`dependenciesMeta[].injected`](https://pnpm.io/package_json#dependenciesmetainjected) setting, which remains supported [#8836](https://github.com/pnpm/pnpm/pull/8836).
288
+
289
+ ## 1.0.3
290
+
291
+ ### Patch Changes
292
+
293
+ - Updated dependencies [d500d9f]
294
+ - @pnpm/types@12.2.0
295
+
296
+ ## 1.0.2
297
+
298
+ ### Patch Changes
299
+
300
+ - Updated dependencies [7ee59a1]
301
+ - @pnpm/types@12.1.0
302
+
303
+ ## 1.0.1
304
+
305
+ ### Patch Changes
306
+
307
+ - cb006df: Add ability to apply patch to all versions:
308
+ If the key of `pnpm.patchedDependencies` is a package name without a version (e.g. `pkg`), pnpm will attempt to apply the patch to all versions of
309
+ the package, failure will be skipped.
310
+ If it is a package name and an exact version (e.g. `pkg@x.y.z`), pnpm will attempt to apply the patch to that exact version only, failure will
311
+ cause pnpm to fail.
312
+
313
+ If there's only one version of `pkg` installed, `pnpm patch pkg` and subsequent `pnpm patch-commit $edit_dir` will create an entry named `pkg` in
314
+ `pnpm.patchedDependencies`. And pnpm will attempt to apply this patch to other versions of `pkg` in the future.
315
+
316
+ If there's multiple versions of `pkg` installed, `pnpm patch pkg` will ask which version to edit and whether to attempt to apply the patch to all.
317
+ If the user chooses to apply the patch to all, `pnpm patch-commit $edit_dir` would create a `pkg` entry in `pnpm.patchedDependencies`.
318
+ If the user chooses not to apply the patch to all, `pnpm patch-commit $edit_dir` would create a `pkg@x.y.z` entry in `pnpm.patchedDependencies` with
319
+ `x.y.z` being the version the user chose to edit.
320
+
321
+ If the user runs `pnpm patch pkg@x.y.z` with `x.y.z` being the exact version of `pkg` that has been installed, `pnpm patch-commit $edit_dir` will always
322
+ create a `pkg@x.y.z` entry in `pnpm.patchedDependencies`.
323
+
324
+ - Updated dependencies [cb006df]
325
+ - @pnpm/patching.types@1.0.0
326
+ - @pnpm/types@12.0.0
327
+
328
+ ## 1.0.0
329
+
330
+ ### Major Changes
331
+
332
+ - 797ef0f: Rename project from `@pnpm/lockfile-types` to `@pnpm/lockfile.types`.
333
+
334
+ ## 7.1.3
335
+
336
+ ### Patch Changes
337
+
338
+ - Updated dependencies [0ef168b]
339
+ - @pnpm/types@11.1.0
340
+
341
+ ## 7.1.2
342
+
343
+ ### Patch Changes
344
+
345
+ - Updated dependencies [dd00eeb]
346
+ - Updated dependencies
347
+ - @pnpm/types@11.0.0
348
+
349
+ ## 7.1.1
350
+
351
+ ### Patch Changes
352
+
353
+ - Updated dependencies [13e55b2]
354
+ - @pnpm/types@10.1.1
355
+
356
+ ## 7.1.0
357
+
358
+ ### Minor Changes
359
+
360
+ - 47341e5: **Semi-breaking.** Dependency key names in the lockfile are shortened if they are longer than 1000 characters. We don't expect this change to affect many users. Affected users most probably can't run install successfully at the moment. This change is required to fix some edge cases in which installation fails with an out-of-memory error or "Invalid string length (RangeError: Invalid string length)" error. The max allowed length of the dependency key can be controlled with the `peers-suffix-max-length` setting [#8177](https://github.com/pnpm/pnpm/pull/8177).
361
+
362
+ ## 7.0.0
363
+
364
+ ### Major Changes
365
+
366
+ - Breaking changes to the API.
367
+
368
+ ### Patch Changes
369
+
370
+ - Updated dependencies [45f4262]
371
+ - @pnpm/types@10.1.0
372
+
373
+ ## 6.0.0
374
+
375
+ ### Major Changes
376
+
377
+ - 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
378
+
379
+ ### Minor Changes
380
+
381
+ - 086b69c: The checksum of the `.pnpmfile.cjs` is saved into the lockfile. If the pnpmfile gets modified, the lockfile is reanalyzed to apply the changes [#7662](https://github.com/pnpm/pnpm/pull/7662).
382
+ - 730929e: Add a field named `ignoredOptionalDependencies`. This is an array of strings. If an optional dependency has its name included in this array, it will be skipped.
383
+
384
+ ### Patch Changes
385
+
386
+ - 27a96a8: Remove `specifiers` field from `ProjectSnapshotV6`. This is a typing fix. The field is not present on the v6 lockfile.
387
+ - Updated dependencies [7733f3a]
388
+ - Updated dependencies [43cdd87]
389
+ - Updated dependencies [730929e]
390
+ - @pnpm/types@10.0.0
391
+
392
+ ## 5.1.5
393
+
394
+ ### Patch Changes
395
+
396
+ - 4d34684f1: Added support for boolean values in 'bundleDependencies' package.json fields when installing a dependency. Fix to properly handle 'bundledDependencies' alias [#7411](https://github.com/pnpm/pnpm/issues/7411).
397
+ - Updated dependencies [4d34684f1]
398
+ - @pnpm/types@9.4.2
399
+
400
+ ## 5.1.4
401
+
402
+ ### Patch Changes
403
+
404
+ - Added support for boolean values in 'bundleDependencies' package.json fields when installing a dependency. Fix to properly handle 'bundledDependencies' alias [#7411](https://github.com/pnpm/pnpm/issues/7411).
405
+ - Updated dependencies
406
+ - @pnpm/types@9.4.1
407
+
408
+ ## 5.1.3
409
+
410
+ ### Patch Changes
411
+
412
+ - Updated dependencies [43ce9e4a6]
413
+ - @pnpm/types@9.4.0
414
+
415
+ ## 5.1.2
416
+
417
+ ### Patch Changes
418
+
419
+ - Updated dependencies [d774a3196]
420
+ - @pnpm/types@9.3.0
421
+
422
+ ## 5.1.1
423
+
424
+ ### Patch Changes
425
+
426
+ - Updated dependencies [aa2ae8fe2]
427
+ - @pnpm/types@9.2.0
428
+
429
+ ## 5.1.0
430
+
431
+ ### Minor Changes
432
+
433
+ - 9c4ae87bd: Some settings influence the structure of the lockfile, so we cannot reuse the lockfile if those settings change. As a result, we need to store such settings in the lockfile. This way we will know with which settings the lockfile has been created.
434
+
435
+ A new field will now be present in the lockfile: `settings`. It will store the values of two settings: `autoInstallPeers` and `excludeLinksFromLockfile`. If someone tries to perform a `frozen-lockfile` installation and their active settings don't match the ones in the lockfile, then an error message will be thrown.
436
+
437
+ The lockfile format version is bumped from v6.0 to v6.1.
438
+
439
+ Related PR: [#6557](https://github.com/pnpm/pnpm/pull/6557)
440
+ Related issue: [#6312](https://github.com/pnpm/pnpm/issues/6312)
441
+
442
+ ### Patch Changes
443
+
444
+ - Updated dependencies [a9e0b7cbf]
445
+ - @pnpm/types@9.1.0
446
+
447
+ ## 5.0.0
448
+
449
+ ### Major Changes
450
+
451
+ - c92936158: The registry field is removed from the `resolution` object in `pnpm-lock.yaml`.
452
+ - eceaa8b8b: Node.js 14 support dropped.
453
+
454
+ ### Patch Changes
455
+
456
+ - Updated dependencies [eceaa8b8b]
457
+ - @pnpm/types@9.0.0
458
+
459
+ ## 4.3.6
460
+
461
+ ### Patch Changes
462
+
463
+ - Updated dependencies [b77651d14]
464
+ - @pnpm/types@8.10.0
465
+
466
+ ## 4.3.5
467
+
468
+ ### Patch Changes
469
+
470
+ - Updated dependencies [702e847c1]
471
+ - @pnpm/types@8.9.0
472
+
473
+ ## 4.3.4
474
+
475
+ ### Patch Changes
476
+
477
+ - Updated dependencies [844e82f3a]
478
+ - @pnpm/types@8.8.0
479
+
480
+ ## 4.3.3
481
+
482
+ ### Patch Changes
483
+
484
+ - Updated dependencies [d665f3ff7]
485
+ - @pnpm/types@8.7.0
486
+
487
+ ## 4.3.2
488
+
489
+ ### Patch Changes
490
+
491
+ - Updated dependencies [156cc1ef6]
492
+ - @pnpm/types@8.6.0
493
+
494
+ ## 4.3.1
495
+
496
+ ### Patch Changes
497
+
498
+ - Updated dependencies [c90798461]
499
+ - @pnpm/types@8.5.0
500
+
501
+ ## 4.3.0
502
+
503
+ ### Minor Changes
504
+
505
+ - 8dcfbe357: Add `publishDirectory` field to the lockfile and relink the project when it changes.
506
+
507
+ ## 4.2.0
508
+
509
+ ### Minor Changes
510
+
511
+ - d01c32355: Add optional "patched" field to package object in the lockfile.
512
+
513
+ ### Patch Changes
514
+
515
+ - 8e5b77ef6: Update the dependencies when a patch file is modified.
516
+ - Updated dependencies [8e5b77ef6]
517
+ - @pnpm/types@8.4.0
518
+
519
+ ## 4.1.0
520
+
521
+ ### Minor Changes
522
+
523
+ - 2a34b21ce: Dependencies patching is possible via the `pnpm.patchedDependencies` field of the `package.json`.
524
+ To patch a package, the package name, exact version, and the relative path to the patch file should be specified. For instance:
525
+
526
+ ```json
527
+ {
528
+ "pnpm": {
529
+ "patchedDependencies": {
530
+ "eslint@1.0.0": "./patches/eslint@1.0.0.patch"
531
+ }
532
+ }
533
+ }
534
+ ```
535
+
536
+ ### Patch Changes
537
+
538
+ - Updated dependencies [2a34b21ce]
539
+ - @pnpm/types@8.3.0
540
+
541
+ ## 4.0.3
542
+
543
+ ### Patch Changes
544
+
545
+ - Updated dependencies [fb5bbfd7a]
546
+ - @pnpm/types@8.2.0
547
+
548
+ ## 4.0.2
549
+
550
+ ### Patch Changes
551
+
552
+ - Updated dependencies [4d39e4a0c]
553
+ - @pnpm/types@8.1.0
554
+
555
+ ## 4.0.1
556
+
557
+ ### Patch Changes
558
+
559
+ - Updated dependencies [18ba5e2c0]
560
+ - @pnpm/types@8.0.1
561
+
562
+ ## 4.0.0
563
+
564
+ ### Major Changes
565
+
566
+ - 542014839: Node.js 12 is not supported.
567
+
568
+ ### Patch Changes
569
+
570
+ - Updated dependencies [d504dc380]
571
+ - Updated dependencies [542014839]
572
+ - @pnpm/types@8.0.0
573
+
574
+ ## 3.2.0
575
+
576
+ ### Minor Changes
577
+
578
+ - b138d048c: New optional field supported: `onlyBuiltDependencies`.
579
+
580
+ ### Patch Changes
581
+
582
+ - Updated dependencies [b138d048c]
583
+ - @pnpm/types@7.10.0
584
+
585
+ ## 3.1.5
586
+
587
+ ### Patch Changes
588
+
589
+ - Updated dependencies [26cd01b88]
590
+ - @pnpm/types@7.9.0
591
+
592
+ ## 3.1.4
593
+
594
+ ### Patch Changes
595
+
596
+ - Updated dependencies [b5734a4a7]
597
+ - @pnpm/types@7.8.0
598
+
599
+ ## 3.1.3
600
+
601
+ ### Patch Changes
602
+
603
+ - Updated dependencies [6493e0c93]
604
+ - @pnpm/types@7.7.1
605
+
606
+ ## 3.1.2
607
+
608
+ ### Patch Changes
609
+
610
+ - Updated dependencies [ba9b2eba1]
611
+ - @pnpm/types@7.7.0
612
+
613
+ ## 3.1.1
614
+
615
+ ### Patch Changes
616
+
617
+ - Updated dependencies [302ae4f6f]
618
+ - @pnpm/types@7.6.0
619
+
620
+ ## 3.1.0
621
+
622
+ ### Minor Changes
623
+
624
+ - 4ab87844a: New optional property added to project snapshots: `dependenciesMeta`.
625
+
626
+ ### Patch Changes
627
+
628
+ - Updated dependencies [4ab87844a]
629
+ - @pnpm/types@7.5.0
630
+
631
+ ## 3.0.0
632
+
633
+ ### Major Changes
634
+
635
+ - 97b986fbc: Node.js 10 support is dropped. At least Node.js 12.17 is required for the package to work.
636
+
637
+ ### Minor Changes
638
+
639
+ - 6871d74b2: Add new transitivePeerDependencies field to lockfile.
640
+
641
+ ## 2.2.0
642
+
643
+ ### Minor Changes
644
+
645
+ - 9ad8c27bf: Add optional neverBuiltDependencies property to the lockfile object.
646
+
647
+ ## 2.1.1
648
+
649
+ ### Patch Changes
650
+
651
+ - b5d694e7f: Use pnpm.overrides instead of resolutions. Still support resolutions for partial compatibility with Yarn and for avoiding a breaking change.
652
+
653
+ ## 2.1.0
654
+
655
+ ### Minor Changes
656
+
657
+ - d54043ee4: A new optional field added to the lockfile type: resolutions.
658
+
659
+ ## 2.0.1
660
+
661
+ ### Patch Changes
662
+
663
+ - 6a8a97eee: Fix the type of bundledDependencies field.
664
+
665
+ ## 2.0.1-alpha.0
666
+
667
+ ### Patch Changes
668
+
669
+ - 6a8a97eee: Fix the type of bundledDependencies field.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/lockfile.types",
3
- "version": "1100.0.13",
3
+ "version": "1100.0.14",
4
4
  "description": "Types for the pnpm-lock.yaml lockfile",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -29,12 +29,12 @@
29
29
  "!*.map"
30
30
  ],
31
31
  "dependencies": {
32
- "@pnpm/types": "1101.3.2",
33
32
  "@pnpm/patching.types": "1100.0.0",
34
- "@pnpm/resolving.resolver-base": "1100.5.1"
33
+ "@pnpm/resolving.resolver-base": "1100.5.2",
34
+ "@pnpm/types": "1101.4.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@pnpm/lockfile.types": "1100.0.13"
37
+ "@pnpm/lockfile.types": "1100.0.14"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.13"