@pnpm/installing.context 1100.0.22 → 1100.0.24

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 +1913 -0
  2. package/package.json +13 -13
package/CHANGELOG.md ADDED
@@ -0,0 +1,1913 @@
1
+ # @pnpm/get-context
2
+
3
+ ## 1100.0.24
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/core-loggers@1100.2.2
9
+ - @pnpm/installing.modules-yaml@1100.0.10
10
+ - @pnpm/installing.read-projects-context@1100.0.21
11
+ - @pnpm/lockfile.fs@1100.1.11
12
+ - @pnpm/resolving.resolver-base@1100.5.2
13
+ - @pnpm/store.controller@1102.0.5
14
+ - @pnpm/types@1101.4.0
15
+
16
+ ## 1100.0.23
17
+
18
+ ### Patch Changes
19
+
20
+ - @pnpm/store.controller@1102.0.4
21
+ - @pnpm/lockfile.fs@1100.1.10
22
+ - @pnpm/installing.read-projects-context@1100.0.20
23
+
24
+ ## 1100.0.22
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [f8058eb]
29
+ - @pnpm/lockfile.fs@1100.1.9
30
+ - @pnpm/installing.read-projects-context@1100.0.19
31
+ - @pnpm/store.controller@1102.0.3
32
+
33
+ ## 1100.0.21
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies [dcabb78]
38
+ - @pnpm/resolving.resolver-base@1100.5.1
39
+ - @pnpm/store.controller@1102.0.3
40
+ - @pnpm/lockfile.fs@1100.1.8
41
+ - @pnpm/installing.read-projects-context@1100.0.18
42
+
43
+ ## 1100.0.20
44
+
45
+ ### Patch Changes
46
+
47
+ - bae694f: Some registries generate tarballs on-demand and cannot provide an integrity checksum in their package metadata. In that case pnpm now computes the integrity from the downloaded tarball and stores it in the lockfile, so the entry is verifiable on subsequent installs instead of being written without an integrity (which would fail the next install). This also applies to `--lockfile-only`: the tarball is downloaded so its integrity can be computed. A lockfile entry that is still missing its integrity is rejected as a `ERR_PNPM_MISSING_TARBALL_INTEGRITY` lockfile verification violation (the install fails closed) rather than being silently re-fetched.
48
+ - Updated dependencies [bae694f]
49
+ - Updated dependencies [852d537]
50
+ - @pnpm/resolving.resolver-base@1100.5.0
51
+ - @pnpm/error@1100.0.1
52
+ - @pnpm/store.controller@1102.0.2
53
+ - @pnpm/lockfile.fs@1100.1.7
54
+ - @pnpm/installing.read-projects-context@1100.0.17
55
+
56
+ ## 1100.0.19
57
+
58
+ ### Patch Changes
59
+
60
+ - Updated dependencies [61969fb]
61
+ - @pnpm/lockfile.fs@1100.1.6
62
+ - @pnpm/installing.read-projects-context@1100.0.16
63
+ - @pnpm/store.controller@1102.0.1
64
+
65
+ ## 1100.0.18
66
+
67
+ ### Patch Changes
68
+
69
+ - 61810aa: Added a new setting `frozenStore` (`--frozen-store`) that lets `pnpm install` run against a package store on a read-only filesystem (e.g. a Nix store, a read-only bind mount, an OCI layer). When enabled, pnpm opens the store's SQLite `index.db` through the `immutable=1` URI — bypassing the WAL/`-shm` sidecar creation that otherwise fails on a read-only directory — and suppresses every store-write path (the `index.db` writer and the project-registry write). Pair it with `--offline --frozen-lockfile` against a fully-populated store. Under the global virtual store, package directories live inside the store, so if the store is missing the build output of a package whose lifecycle scripts are approved (or that has a patch), pnpm fails up front with `ERR_PNPM_FROZEN_STORE_NEEDS_BUILD` rather than crashing mid-build on a read-only write — seed the store with those builds first. Incompatible with `--force` and with a configured pnpr server, since both write into the store; the side-effects cache is likewise not written under `frozenStore`. If the store is missing its content directory, the install fails fast with `ERR_PNPM_FROZEN_STORE_INCOMPLETE` rather than attempting to initialize it. The read-only `immutable=1` open requires Node.js >=22.15.0, >=23.11.0, or >=24.0.0; on older runtimes `--frozen-store` fails with a clear `ERR_PNPM_FROZEN_STORE_UNSUPPORTED_NODE` error. Bin-linking also tolerates a read-only store: under the global virtual store a package's bin source lives inside the store, so the `chmod` that makes it executable would be refused — with `EPERM`/`EACCES`, or with `EROFS` on a genuinely read-only filesystem. That `chmod` is redundant when the seed already ships its bins executable with a normalized shebang, so it is now skipped in that case, while a non-executable bin (or one still carrying a Windows CRLF shebang) on a read-only store still errors.
70
+ - a31faa7: Updated dependency ranges. Notably:
71
+
72
+ - `@pnpm/logger` peer dependency range moved to `^1100.0.0`.
73
+ - `msgpackr` 1.11.8 → 2.0.4 (store index files remain byte-compatible in both directions).
74
+ - `open` ^7.4.2 → ^11.0.0, `memoize` ^10 → ^11, `cli-truncate` ^5 → ^6, `pidtree` ^0.6 → ^1.
75
+ - `@yarnpkg/core` 4.5.0 → 4.8.0, `@rushstack/worker-pool` 0.7.7 → 0.7.18, `@cyclonedx/cyclonedx-library` 10.0.0 → 10.1.0, `@pnpm/config.nerf-dart` ^1 → ^2, `@pnpm/log.group` 3.0.2 → 4.0.1, `@pnpm/util.lex-comparator` ^3 → ^4.
76
+
77
+ - Updated dependencies [61810aa]
78
+ - Updated dependencies [681b593]
79
+ - Updated dependencies [d50d691]
80
+ - Updated dependencies [a31faa7]
81
+ - @pnpm/store.controller@1102.0.0
82
+ - @pnpm/types@1101.3.2
83
+ - @pnpm/lockfile.fs@1100.1.5
84
+ - @pnpm/core-loggers@1100.2.1
85
+ - @pnpm/installing.read-projects-context@1100.0.15
86
+ - @pnpm/installing.modules-yaml@1100.0.9
87
+ - @pnpm/resolving.resolver-base@1100.4.2
88
+
89
+ ## 1100.0.17
90
+
91
+ ### Patch Changes
92
+
93
+ - Updated dependencies [f11b4fc]
94
+ - @pnpm/core-loggers@1100.2.0
95
+ - @pnpm/store.controller@1101.0.13
96
+
97
+ ## 1100.0.16
98
+
99
+ ### Patch Changes
100
+
101
+ - Updated dependencies [bf1b731]
102
+ - @pnpm/types@1101.3.1
103
+ - @pnpm/core-loggers@1100.1.4
104
+ - @pnpm/installing.modules-yaml@1100.0.8
105
+ - @pnpm/installing.read-projects-context@1100.0.14
106
+ - @pnpm/lockfile.fs@1100.1.4
107
+ - @pnpm/resolving.resolver-base@1100.4.1
108
+ - @pnpm/store.controller@1101.0.12
109
+
110
+ ## 1100.0.15
111
+
112
+ ### Patch Changes
113
+
114
+ - Updated dependencies [a017bf3]
115
+ - Updated dependencies [6d17b66]
116
+ - @pnpm/types@1101.3.0
117
+ - @pnpm/resolving.resolver-base@1100.4.0
118
+ - @pnpm/core-loggers@1100.1.3
119
+ - @pnpm/installing.modules-yaml@1100.0.7
120
+ - @pnpm/installing.read-projects-context@1100.0.13
121
+ - @pnpm/lockfile.fs@1100.1.3
122
+ - @pnpm/store.controller@1101.0.11
123
+
124
+ ## 1100.0.14
125
+
126
+ ### Patch Changes
127
+
128
+ - a33c4bf: Skip dependency re-resolution when `pnpm-lock.yaml` is missing but `node_modules/.pnpm/lock.yaml` exists and still satisfies the manifest. `pnpm install` now reuses the materialized snapshot to regenerate `pnpm-lock.yaml` instead of walking the registry to rebuild it from scratch, turning the cache+node_modules variation into a near-no-op for users who deleted the lockfile but kept the install [#11993](https://github.com/pnpm/pnpm/issues/11993).
129
+
130
+ `--frozen-lockfile` still refuses to proceed when `pnpm-lock.yaml` is absent — the regenerated lockfile must be committed, so failing loudly is the correct behavior for CI.
131
+
132
+ - @pnpm/store.controller@1101.0.10
133
+
134
+ ## 1100.0.13
135
+
136
+ ### Patch Changes
137
+
138
+ - Updated dependencies [35d2355]
139
+ - @pnpm/types@1101.2.0
140
+ - @pnpm/lockfile.fs@1100.1.2
141
+ - @pnpm/core-loggers@1100.1.2
142
+ - @pnpm/installing.modules-yaml@1100.0.6
143
+ - @pnpm/installing.read-projects-context@1100.0.12
144
+ - @pnpm/resolving.resolver-base@1100.3.1
145
+ - @pnpm/store.controller@1101.0.9
146
+
147
+ ## 1100.0.12
148
+
149
+ ### Patch Changes
150
+
151
+ - Updated dependencies [9cb48bb]
152
+ - Updated dependencies [1627943]
153
+ - Updated dependencies [64afc92]
154
+ - @pnpm/lockfile.fs@1100.1.1
155
+ - @pnpm/resolving.resolver-base@1100.3.0
156
+ - @pnpm/types@1101.1.1
157
+ - @pnpm/installing.read-projects-context@1100.0.11
158
+ - @pnpm/store.controller@1101.0.8
159
+ - @pnpm/core-loggers@1100.1.1
160
+ - @pnpm/installing.modules-yaml@1100.0.5
161
+
162
+ ## 1100.0.11
163
+
164
+ ### Patch Changes
165
+
166
+ - Updated dependencies [4195766]
167
+ - Updated dependencies [31538bf]
168
+ - Updated dependencies [6e93f35]
169
+ - Updated dependencies [4a79336]
170
+ - Updated dependencies [2a9bd89]
171
+ - @pnpm/resolving.resolver-base@1100.2.0
172
+ - @pnpm/lockfile.fs@1100.1.0
173
+ - @pnpm/core-loggers@1100.1.0
174
+ - @pnpm/store.controller@1101.0.7
175
+ - @pnpm/installing.read-projects-context@1100.0.10
176
+
177
+ ## 1100.0.10
178
+
179
+ ### Patch Changes
180
+
181
+ - Updated dependencies [180aee9]
182
+ - @pnpm/lockfile.fs@1100.0.8
183
+ - @pnpm/installing.read-projects-context@1100.0.9
184
+ - @pnpm/store.controller@1101.0.6
185
+
186
+ ## 1100.0.9
187
+
188
+ ### Patch Changes
189
+
190
+ - Updated dependencies [b61e268]
191
+ - @pnpm/types@1101.1.0
192
+ - @pnpm/core-loggers@1100.0.2
193
+ - @pnpm/installing.modules-yaml@1100.0.4
194
+ - @pnpm/installing.read-projects-context@1100.0.8
195
+ - @pnpm/lockfile.fs@1100.0.7
196
+ - @pnpm/resolving.resolver-base@1100.1.3
197
+ - @pnpm/store.controller@1101.0.5
198
+
199
+ ## 1100.0.8
200
+
201
+ ### Patch Changes
202
+
203
+ - @pnpm/store.controller@1101.0.4
204
+
205
+ ## 1100.0.7
206
+
207
+ ### Patch Changes
208
+
209
+ - @pnpm/lockfile.fs@1100.0.6
210
+ - @pnpm/installing.read-projects-context@1100.0.7
211
+ - @pnpm/store.controller@1101.0.3
212
+
213
+ ## 1100.0.6
214
+
215
+ ### Patch Changes
216
+
217
+ - Updated dependencies [12313f1]
218
+ - Updated dependencies [27425d7]
219
+ - @pnpm/installing.modules-yaml@1100.0.3
220
+ - @pnpm/lockfile.fs@1100.0.5
221
+ - @pnpm/resolving.resolver-base@1100.1.2
222
+ - @pnpm/installing.read-projects-context@1100.0.6
223
+ - @pnpm/store.controller@1101.0.3
224
+
225
+ ## 1100.0.5
226
+
227
+ ### Patch Changes
228
+
229
+ - 184ce26: Fix the package name in README.md.
230
+ - Updated dependencies [184ce26]
231
+ - @pnpm/installing.read-projects-context@1100.0.5
232
+ - @pnpm/installing.modules-yaml@1100.0.2
233
+ - @pnpm/resolving.resolver-base@1100.1.1
234
+ - @pnpm/store.controller@1101.0.2
235
+ - @pnpm/lockfile.fs@1100.0.4
236
+
237
+ ## 1100.0.4
238
+
239
+ ### Patch Changes
240
+
241
+ - Updated dependencies [685a369]
242
+ - @pnpm/installing.read-projects-context@1100.0.4
243
+ - @pnpm/store.controller@1101.0.1
244
+
245
+ ## 1100.0.3
246
+
247
+ ### Patch Changes
248
+
249
+ - @pnpm/store.controller@1101.0.0
250
+ - @pnpm/lockfile.fs@1100.0.3
251
+ - @pnpm/installing.read-projects-context@1100.0.3
252
+
253
+ ## 1100.0.2
254
+
255
+ ### Patch Changes
256
+
257
+ - Updated dependencies [72c1e05]
258
+ - @pnpm/resolving.resolver-base@1100.1.0
259
+ - @pnpm/store.controller@1100.0.2
260
+ - @pnpm/lockfile.fs@1100.0.2
261
+ - @pnpm/installing.read-projects-context@1100.0.2
262
+
263
+ ## 1100.0.1
264
+
265
+ ### Patch Changes
266
+
267
+ - Updated dependencies [ff28085]
268
+ - @pnpm/types@1101.0.0
269
+ - @pnpm/core-loggers@1100.0.1
270
+ - @pnpm/installing.modules-yaml@1100.0.1
271
+ - @pnpm/installing.read-projects-context@1100.0.1
272
+ - @pnpm/lockfile.fs@1100.0.1
273
+ - @pnpm/resolving.resolver-base@1100.0.1
274
+ - @pnpm/store.controller@1100.0.1
275
+
276
+ ## 1002.0.0
277
+
278
+ ### Major Changes
279
+
280
+ - 491a84f: This package is now pure ESM.
281
+ - 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
282
+
283
+ ### Minor Changes
284
+
285
+ - 9eddabb: Added project registry for global virtual store prune support.
286
+
287
+ Projects using the store are now registered via symlinks in `{storeDir}/v11/projects/`. This enables `pnpm store prune` to track which packages are still in use by active projects and safely remove unused packages from the global virtual store.
288
+
289
+ ### Patch Changes
290
+
291
+ - 5d130c3: Fail on incompatible lockfiles in CI when frozen lockfile mode is enabled, while preserving non-frozen CI fallback behavior.
292
+ - Updated dependencies [facdd71]
293
+ - Updated dependencies [e2e0a32]
294
+ - Updated dependencies [c55c614]
295
+ - Updated dependencies [9b0a460]
296
+ - Updated dependencies [76718b3]
297
+ - Updated dependencies [a8f016c]
298
+ - Updated dependencies [cc1b8e3]
299
+ - Updated dependencies [5a0ed1d]
300
+ - Updated dependencies [3cfffaa]
301
+ - Updated dependencies [05fb1ae]
302
+ - Updated dependencies [491a84f]
303
+ - Updated dependencies [9eddabb]
304
+ - Updated dependencies [075aa99]
305
+ - Updated dependencies [d458ab3]
306
+ - Updated dependencies [7d2fd48]
307
+ - Updated dependencies [9eddabb]
308
+ - Updated dependencies [efb48dc]
309
+ - Updated dependencies [50fbeca]
310
+ - Updated dependencies [cb367b9]
311
+ - Updated dependencies [7b1c189]
312
+ - Updated dependencies [8ffb1a7]
313
+ - Updated dependencies [05fb1ae]
314
+ - Updated dependencies [71de2b3]
315
+ - Updated dependencies [10bc391]
316
+ - Updated dependencies [38b8e35]
317
+ - Updated dependencies [b7f0f21]
318
+ - Updated dependencies [2df8b71]
319
+ - Updated dependencies [2f98ec8]
320
+ - Updated dependencies [15549a9]
321
+ - Updated dependencies [cc7c0d2]
322
+ - Updated dependencies [3cfffaa]
323
+ - Updated dependencies [09bb8db]
324
+ - Updated dependencies [9d3f00b]
325
+ - Updated dependencies [efb48dc]
326
+ - @pnpm/resolving.resolver-base@1006.0.0
327
+ - @pnpm/store.controller@1005.0.0
328
+ - @pnpm/constants@1002.0.0
329
+ - @pnpm/types@1001.0.0
330
+ - @pnpm/lockfile.fs@1002.0.0
331
+ - @pnpm/installing.modules-yaml@1001.0.0
332
+ - @pnpm/installing.read-projects-context@1001.0.0
333
+ - @pnpm/core-loggers@1002.0.0
334
+
335
+ ## 1001.1.8
336
+
337
+ ### Patch Changes
338
+
339
+ - Updated dependencies [7c1382f]
340
+ - Updated dependencies [7c1382f]
341
+ - Updated dependencies [dee39ec]
342
+ - @pnpm/types@1000.9.0
343
+ - @pnpm/resolver-base@1005.1.0
344
+ - @pnpm/lockfile.fs@1001.1.21
345
+ - @pnpm/core-loggers@1001.0.4
346
+ - @pnpm/modules-yaml@1000.3.6
347
+ - @pnpm/read-projects-context@1000.0.24
348
+
349
+ ## 1001.1.7
350
+
351
+ ### Patch Changes
352
+
353
+ - @pnpm/lockfile.fs@1001.1.20
354
+ - @pnpm/read-projects-context@1000.0.23
355
+
356
+ ## 1001.1.6
357
+
358
+ ### Patch Changes
359
+
360
+ - Updated dependencies [6365bc4]
361
+ - @pnpm/constants@1001.3.1
362
+ - @pnpm/lockfile.fs@1001.1.19
363
+ - @pnpm/read-projects-context@1000.0.22
364
+
365
+ ## 1001.1.5
366
+
367
+ ### Patch Changes
368
+
369
+ - Updated dependencies [e792927]
370
+ - @pnpm/types@1000.8.0
371
+ - @pnpm/lockfile.fs@1001.1.18
372
+ - @pnpm/core-loggers@1001.0.3
373
+ - @pnpm/modules-yaml@1000.3.5
374
+ - @pnpm/read-projects-context@1000.0.21
375
+ - @pnpm/resolver-base@1005.0.1
376
+
377
+ ## 1001.1.4
378
+
379
+ ### Patch Changes
380
+
381
+ - Updated dependencies [d1edf73]
382
+ - Updated dependencies [86b33e9]
383
+ - Updated dependencies [d1edf73]
384
+ - Updated dependencies [f91922c]
385
+ - @pnpm/constants@1001.3.0
386
+ - @pnpm/resolver-base@1005.0.0
387
+ - @pnpm/lockfile.fs@1001.1.17
388
+ - @pnpm/read-projects-context@1000.0.20
389
+
390
+ ## 1001.1.3
391
+
392
+ ### Patch Changes
393
+
394
+ - Updated dependencies [1a07b8f]
395
+ - Updated dependencies [1a07b8f]
396
+ - Updated dependencies [1a07b8f]
397
+ - @pnpm/types@1000.7.0
398
+ - @pnpm/resolver-base@1004.1.0
399
+ - @pnpm/constants@1001.2.0
400
+ - @pnpm/lockfile.fs@1001.1.16
401
+ - @pnpm/core-loggers@1001.0.2
402
+ - @pnpm/modules-yaml@1000.3.4
403
+ - @pnpm/read-projects-context@1000.0.19
404
+
405
+ ## 1001.1.2
406
+
407
+ ### Patch Changes
408
+
409
+ - @pnpm/lockfile.fs@1001.1.15
410
+ - @pnpm/read-projects-context@1000.0.18
411
+
412
+ ## 1001.1.1
413
+
414
+ ### Patch Changes
415
+
416
+ - @pnpm/lockfile.fs@1001.1.14
417
+ - @pnpm/read-projects-context@1000.0.17
418
+
419
+ ## 1001.1.0
420
+
421
+ ### Minor Changes
422
+
423
+ - b217bbb: Added a new setting called `ci` for explicitly telling pnpm if the current environment is a CI or not.
424
+ - b0ead51: **Experimental**. Added support for global virtual stores. When the global virtual store is enabled, `node_modules` doesn’t contain regular files, only symlinks to a central virtual store (by default the central store is located at `<store-path>/links`; run `pnpm store path` to find `<store-path>`).
425
+
426
+ To enable the global virtual store, add `enableGlobalVirtualStore: true` to your root `pnpm-workspace.yaml`.
427
+
428
+ A global virtual store can make installations significantly faster when a warm cache is present. In CI, however, it will probably slow installations because there is usually no cache.
429
+
430
+ Related PR: [#8190](https://github.com/pnpm/pnpm/pull/8190).
431
+
432
+ ### Patch Changes
433
+
434
+ - Updated dependencies [2721291]
435
+ - Updated dependencies [6acf819]
436
+ - @pnpm/resolver-base@1004.0.0
437
+ - @pnpm/lockfile.fs@1001.1.13
438
+ - @pnpm/read-projects-context@1000.0.16
439
+
440
+ ## 1001.0.14
441
+
442
+ ### Patch Changes
443
+
444
+ - 09cf46f: Update `@pnpm/logger` in peer dependencies.
445
+ - Updated dependencies [09cf46f]
446
+ - Updated dependencies [5ec7255]
447
+ - @pnpm/read-projects-context@1000.0.15
448
+ - @pnpm/core-loggers@1001.0.1
449
+ - @pnpm/lockfile.fs@1001.1.12
450
+ - @pnpm/types@1000.6.0
451
+ - @pnpm/modules-yaml@1000.3.3
452
+ - @pnpm/resolver-base@1003.0.1
453
+
454
+ ## 1001.0.13
455
+
456
+ ### Patch Changes
457
+
458
+ - Updated dependencies [8a9f3a4]
459
+ - Updated dependencies [5b73df1]
460
+ - Updated dependencies [9c3dd03]
461
+ - Updated dependencies [5b73df1]
462
+ - @pnpm/resolver-base@1003.0.0
463
+ - @pnpm/core-loggers@1001.0.0
464
+ - @pnpm/logger@1001.0.0
465
+ - @pnpm/types@1000.5.0
466
+ - @pnpm/read-projects-context@1000.0.14
467
+ - @pnpm/lockfile.fs@1001.1.11
468
+ - @pnpm/modules-yaml@1000.3.2
469
+
470
+ ## 1001.0.12
471
+
472
+ ### Patch Changes
473
+
474
+ - Updated dependencies [81f441c]
475
+ - @pnpm/resolver-base@1002.0.0
476
+ - @pnpm/lockfile.fs@1001.1.10
477
+ - @pnpm/read-projects-context@1000.0.13
478
+
479
+ ## 1001.0.11
480
+
481
+ ### Patch Changes
482
+
483
+ - Updated dependencies [750ae7d]
484
+ - Updated dependencies [72cff38]
485
+ - Updated dependencies [750ae7d]
486
+ - @pnpm/types@1000.4.0
487
+ - @pnpm/resolver-base@1001.0.0
488
+ - @pnpm/core-loggers@1000.2.0
489
+ - @pnpm/lockfile.fs@1001.1.9
490
+ - @pnpm/modules-yaml@1000.3.1
491
+ - @pnpm/read-projects-context@1000.0.12
492
+
493
+ ## 1001.0.10
494
+
495
+ ### Patch Changes
496
+
497
+ - Updated dependencies [5f7be64]
498
+ - Updated dependencies [64f6b4f]
499
+ - Updated dependencies [5f7be64]
500
+ - @pnpm/types@1000.3.0
501
+ - @pnpm/modules-yaml@1000.3.0
502
+ - @pnpm/lockfile.fs@1001.1.8
503
+ - @pnpm/core-loggers@1000.1.5
504
+ - @pnpm/read-projects-context@1000.0.11
505
+ - @pnpm/resolver-base@1000.2.1
506
+
507
+ ## 1001.0.9
508
+
509
+ ### Patch Changes
510
+
511
+ - Updated dependencies [d612dcf]
512
+ - Updated dependencies [d612dcf]
513
+ - Updated dependencies [3d52365]
514
+ - @pnpm/modules-yaml@1000.2.0
515
+ - @pnpm/resolver-base@1000.2.0
516
+ - @pnpm/read-projects-context@1000.0.10
517
+ - @pnpm/lockfile.fs@1001.1.7
518
+
519
+ ## 1001.0.8
520
+
521
+ ### Patch Changes
522
+
523
+ - @pnpm/lockfile.fs@1001.1.6
524
+ - @pnpm/read-projects-context@1000.0.9
525
+
526
+ ## 1001.0.7
527
+
528
+ ### Patch Changes
529
+
530
+ - Updated dependencies [a5e4965]
531
+ - @pnpm/types@1000.2.1
532
+ - @pnpm/lockfile.fs@1001.1.5
533
+ - @pnpm/core-loggers@1000.1.4
534
+ - @pnpm/modules-yaml@1000.1.4
535
+ - @pnpm/read-projects-context@1000.0.8
536
+ - @pnpm/resolver-base@1000.1.4
537
+
538
+ ## 1001.0.6
539
+
540
+ ### Patch Changes
541
+
542
+ - Updated dependencies [8fcc221]
543
+ - @pnpm/types@1000.2.0
544
+ - @pnpm/lockfile.fs@1001.1.4
545
+ - @pnpm/core-loggers@1000.1.3
546
+ - @pnpm/modules-yaml@1000.1.3
547
+ - @pnpm/read-projects-context@1000.0.7
548
+ - @pnpm/resolver-base@1000.1.3
549
+
550
+ ## 1001.0.5
551
+
552
+ ### Patch Changes
553
+
554
+ - @pnpm/lockfile.fs@1001.1.3
555
+ - @pnpm/read-projects-context@1000.0.6
556
+
557
+ ## 1001.0.4
558
+
559
+ ### Patch Changes
560
+
561
+ - Updated dependencies [9a44e6c]
562
+ - Updated dependencies [b562deb]
563
+ - @pnpm/constants@1001.1.0
564
+ - @pnpm/types@1000.1.1
565
+ - @pnpm/lockfile.fs@1001.1.2
566
+ - @pnpm/core-loggers@1000.1.2
567
+ - @pnpm/modules-yaml@1000.1.2
568
+ - @pnpm/read-projects-context@1000.0.5
569
+ - @pnpm/resolver-base@1000.1.2
570
+
571
+ ## 1001.0.3
572
+
573
+ ### Patch Changes
574
+
575
+ - Updated dependencies [9591a18]
576
+ - @pnpm/types@1000.1.0
577
+ - @pnpm/lockfile.fs@1001.1.1
578
+ - @pnpm/core-loggers@1000.1.1
579
+ - @pnpm/modules-yaml@1000.1.1
580
+ - @pnpm/read-projects-context@1000.0.4
581
+ - @pnpm/resolver-base@1000.1.1
582
+
583
+ ## 1001.0.2
584
+
585
+ ### Patch Changes
586
+
587
+ - Updated dependencies [516c4b3]
588
+ - Updated dependencies [4771813]
589
+ - @pnpm/core-loggers@1000.1.0
590
+ - @pnpm/modules-yaml@1000.1.0
591
+ - @pnpm/read-projects-context@1000.0.3
592
+
593
+ ## 1001.0.1
594
+
595
+ ### Patch Changes
596
+
597
+ - Updated dependencies [3f0e4f0]
598
+ - @pnpm/lockfile.fs@1001.1.0
599
+ - @pnpm/read-projects-context@1000.0.2
600
+
601
+ ## 1001.0.0
602
+
603
+ ### Major Changes
604
+
605
+ - a76da0c: Removed lockfile conversion from v6 to v9. If you need to convert lockfile v6 to v9, use pnpm CLI v9.
606
+
607
+ ### Patch Changes
608
+
609
+ - Updated dependencies [d2e83b0]
610
+ - Updated dependencies [6483b64]
611
+ - Updated dependencies [a76da0c]
612
+ - @pnpm/constants@1001.0.0
613
+ - @pnpm/resolver-base@1000.1.0
614
+ - @pnpm/lockfile.fs@1001.0.0
615
+ - @pnpm/read-projects-context@1000.0.1
616
+
617
+ ## 13.0.0
618
+
619
+ ### Major Changes
620
+
621
+ - 9ea8fa4: Don't validate (and possibly purge) modules directory as a side effect of `getContext` and `getContextForSingleImporter` [#8657](https://github.com/pnpm/pnpm/pull/8657).
622
+ - 9ea8fa4: `PnpmContext.hoistPattern` and `PnpmContext.publicHoistPattern` are no longer affected by modules directory state [#8657](https://github.com/pnpm/pnpm/pull/8657). Prior behavior can be recreated with the new properties `PnpmContext.currentHoistPattern` (`_.currentHoistPattern ?? _.hoistPattern`) and `PnpmContext.currentPublicHoistPattern` (`_.currentPublicHoistPattern ?? _.publicHoistPattern`).
623
+ - 9ea8fa4: `PnpmSingleContext.hoistPattern` and `PnpmSingleContext.publicHoistPattern` are no longer affected by modules directory state [#8657](https://github.com/pnpm/pnpm/pull/8657).
624
+ - 9ea8fa4: `UnexpectedStoreError` and `UnexpectedVirtualStoreDirError` are no longer exported [#8657](https://github.com/pnpm/pnpm/pull/8657). They can be imported from `@pnpm/core` instead.
625
+ - 9ea8fa4: Argument `alreadyPurged` removed from `getContextForSingleImporter` [#8657](https://github.com/pnpm/pnpm/pull/8657).
626
+
627
+ ### Patch Changes
628
+
629
+ - Updated dependencies [19d5b51]
630
+ - Updated dependencies [8108680]
631
+ - Updated dependencies [c4f5231]
632
+ - @pnpm/constants@10.0.0
633
+ - @pnpm/lockfile.fs@1.0.6
634
+ - @pnpm/read-projects-context@9.1.14
635
+
636
+ ## 12.0.7
637
+
638
+ ### Patch Changes
639
+
640
+ - f9a095c: Don't purge `node_modules`, when typing "n" in the prompt that asks whether to remove `node_modules` before installation [#8655](https://github.com/pnpm/pnpm/pull/8655).
641
+ - @pnpm/lockfile.fs@1.0.5
642
+ - @pnpm/read-projects-context@9.1.13
643
+
644
+ ## 12.0.6
645
+
646
+ ### Patch Changes
647
+
648
+ - Updated dependencies [83681da]
649
+ - @pnpm/constants@9.0.0
650
+ - @pnpm/lockfile.fs@1.0.4
651
+ - @pnpm/error@6.0.2
652
+ - @pnpm/read-projects-context@9.1.12
653
+
654
+ ## 12.0.5
655
+
656
+ ### Patch Changes
657
+
658
+ - Updated dependencies [d500d9f]
659
+ - @pnpm/types@12.2.0
660
+ - @pnpm/lockfile.fs@1.0.3
661
+ - @pnpm/core-loggers@10.0.7
662
+ - @pnpm/modules-yaml@13.1.7
663
+ - @pnpm/read-projects-context@9.1.11
664
+ - @pnpm/resolver-base@13.0.4
665
+
666
+ ## 12.0.4
667
+
668
+ ### Patch Changes
669
+
670
+ - Updated dependencies [7ee59a1]
671
+ - @pnpm/types@12.1.0
672
+ - @pnpm/lockfile.fs@1.0.2
673
+ - @pnpm/core-loggers@10.0.6
674
+ - @pnpm/modules-yaml@13.1.6
675
+ - @pnpm/read-projects-context@9.1.10
676
+ - @pnpm/resolver-base@13.0.3
677
+
678
+ ## 12.0.3
679
+
680
+ ### Patch Changes
681
+
682
+ - Updated dependencies [cb006df]
683
+ - @pnpm/types@12.0.0
684
+ - @pnpm/lockfile.fs@1.0.1
685
+ - @pnpm/core-loggers@10.0.5
686
+ - @pnpm/modules-yaml@13.1.5
687
+ - @pnpm/read-projects-context@9.1.9
688
+ - @pnpm/resolver-base@13.0.2
689
+
690
+ ## 12.0.2
691
+
692
+ ### Patch Changes
693
+
694
+ - Updated dependencies [8055a30]
695
+ - @pnpm/lockfile.fs@1.0.0
696
+ - @pnpm/read-projects-context@9.1.8
697
+
698
+ ## 12.0.1
699
+
700
+ ### Patch Changes
701
+
702
+ - Updated dependencies [0ef168b]
703
+ - @pnpm/types@11.1.0
704
+ - @pnpm/lockfile-file@9.1.3
705
+ - @pnpm/core-loggers@10.0.4
706
+ - @pnpm/modules-yaml@13.1.4
707
+ - @pnpm/read-projects-context@9.1.7
708
+ - @pnpm/resolver-base@13.0.1
709
+
710
+ ## 12.0.0
711
+
712
+ ### Major Changes
713
+
714
+ - dd00eeb: Renamed dir to rootDir in the Project object.
715
+
716
+ ### Patch Changes
717
+
718
+ - Updated dependencies [dd00eeb]
719
+ - Updated dependencies
720
+ - @pnpm/resolver-base@13.0.0
721
+ - @pnpm/types@11.0.0
722
+ - @pnpm/lockfile-file@9.1.2
723
+ - @pnpm/core-loggers@10.0.3
724
+ - @pnpm/modules-yaml@13.1.3
725
+ - @pnpm/read-projects-context@9.1.6
726
+
727
+ ## 11.2.1
728
+
729
+ ### Patch Changes
730
+
731
+ - 13e55b2: If install is performed on a subset of workspace projects, always create an up-to-date lockfile first. So, a partial install can be performed only on a fully resolved (non-partial) lockfile [#8165](https://github.com/pnpm/pnpm/issues/8165).
732
+ - Updated dependencies [13e55b2]
733
+ - @pnpm/read-projects-context@9.1.5
734
+ - @pnpm/types@10.1.1
735
+ - @pnpm/lockfile-file@9.1.1
736
+ - @pnpm/core-loggers@10.0.2
737
+ - @pnpm/modules-yaml@13.1.2
738
+
739
+ ## 11.2.0
740
+
741
+ ### Minor Changes
742
+
743
+ - 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).
744
+
745
+ ### Patch Changes
746
+
747
+ - Updated dependencies [47341e5]
748
+ - @pnpm/lockfile-file@9.1.0
749
+ - @pnpm/read-projects-context@9.1.4
750
+
751
+ ## 11.1.3
752
+
753
+ ### Patch Changes
754
+
755
+ - Updated dependencies [45f4262]
756
+ - @pnpm/types@10.1.0
757
+ - @pnpm/lockfile-file@9.0.6
758
+ - @pnpm/core-loggers@10.0.1
759
+ - @pnpm/modules-yaml@13.1.1
760
+ - @pnpm/read-projects-context@9.1.3
761
+
762
+ ## 11.1.2
763
+
764
+ ### Patch Changes
765
+
766
+ - Updated dependencies [a7aef51]
767
+ - @pnpm/error@6.0.1
768
+ - @pnpm/lockfile-file@9.0.5
769
+ - @pnpm/read-projects-context@9.1.2
770
+
771
+ ## 11.1.1
772
+
773
+ ### Patch Changes
774
+
775
+ - @pnpm/lockfile-file@9.0.4
776
+ - @pnpm/read-projects-context@9.1.1
777
+
778
+ ## 11.1.0
779
+
780
+ ### Minor Changes
781
+
782
+ - 9719a42: New setting called `virtual-store-dir-max-length` added to modify the maximum allowed length of the directories inside `node_modules/.pnpm`. The default length is set to 120 characters. This setting is particularly useful on Windows, where there is a limit to the maximum length of a file path [#7355](https://github.com/pnpm/pnpm/issues/7355).
783
+
784
+ ### Patch Changes
785
+
786
+ - Updated dependencies [9719a42]
787
+ - @pnpm/read-projects-context@9.1.0
788
+ - @pnpm/modules-yaml@13.1.0
789
+ - @pnpm/lockfile-file@9.0.3
790
+
791
+ ## 11.0.2
792
+
793
+ ### Patch Changes
794
+
795
+ - Updated dependencies [c969f37]
796
+ - @pnpm/lockfile-file@9.0.2
797
+ - @pnpm/read-projects-context@9.0.2
798
+
799
+ ## 11.0.1
800
+
801
+ ### Patch Changes
802
+
803
+ - Updated dependencies [2cbf7b7]
804
+ - Updated dependencies [6b6ca69]
805
+ - @pnpm/lockfile-file@9.0.1
806
+ - @pnpm/read-projects-context@9.0.1
807
+
808
+ ## 11.0.0
809
+
810
+ ### Major Changes
811
+
812
+ - 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
813
+
814
+ ### Patch Changes
815
+
816
+ - 19c4b4f: When purging multiple node_modules folders, pnpm will no longer print multiple prompts simultaneously.
817
+ - Updated dependencies [7733f3a]
818
+ - Updated dependencies [3ded840]
819
+ - Updated dependencies [c692f80]
820
+ - Updated dependencies [43cdd87]
821
+ - Updated dependencies [086b69c]
822
+ - Updated dependencies [d381a60]
823
+ - Updated dependencies [f67ad31]
824
+ - Updated dependencies [730929e]
825
+ - @pnpm/types@10.0.0
826
+ - @pnpm/error@6.0.0
827
+ - @pnpm/constants@8.0.0
828
+ - @pnpm/read-projects-context@9.0.0
829
+ - @pnpm/modules-yaml@13.0.0
830
+ - @pnpm/lockfile-file@9.0.0
831
+ - @pnpm/core-loggers@10.0.0
832
+
833
+ ## 10.0.11
834
+
835
+ ### Patch Changes
836
+
837
+ - 60bcc797f: Registry configuration from previous installation should not override current settings [#7507](https://github.com/pnpm/pnpm/issues/7507).
838
+
839
+ ## 10.0.10
840
+
841
+ ### Patch Changes
842
+
843
+ - Updated dependencies [d349bc3a2]
844
+ - @pnpm/modules-yaml@12.1.7
845
+ - @pnpm/read-projects-context@8.0.11
846
+
847
+ ## 10.0.9
848
+
849
+ ### Patch Changes
850
+
851
+ - Updated dependencies [4d34684f1]
852
+ - @pnpm/types@9.4.2
853
+ - @pnpm/lockfile-file@8.1.6
854
+ - @pnpm/core-loggers@9.0.6
855
+ - @pnpm/modules-yaml@12.1.6
856
+ - @pnpm/read-projects-context@8.0.10
857
+
858
+ ## 10.0.8
859
+
860
+ ### Patch Changes
861
+
862
+ - Updated dependencies
863
+ - @pnpm/types@9.4.1
864
+ - @pnpm/lockfile-file@8.1.5
865
+ - @pnpm/core-loggers@9.0.5
866
+ - @pnpm/modules-yaml@12.1.5
867
+ - @pnpm/read-projects-context@8.0.9
868
+
869
+ ## 10.0.7
870
+
871
+ ### Patch Changes
872
+
873
+ - b1fd38cca: The modules directory should not be removed if the registry configuration has changed.
874
+
875
+ ## 10.0.6
876
+
877
+ ### Patch Changes
878
+
879
+ - 2143a9388: Improve the error message when `node_modules` should be recreated.
880
+
881
+ ## 10.0.5
882
+
883
+ ### Patch Changes
884
+
885
+ - Updated dependencies [43ce9e4a6]
886
+ - @pnpm/types@9.4.0
887
+ - @pnpm/lockfile-file@8.1.4
888
+ - @pnpm/core-loggers@9.0.4
889
+ - @pnpm/modules-yaml@12.1.4
890
+ - @pnpm/read-projects-context@8.0.8
891
+
892
+ ## 10.0.4
893
+
894
+ ### Patch Changes
895
+
896
+ - Updated dependencies [d774a3196]
897
+ - @pnpm/types@9.3.0
898
+ - @pnpm/lockfile-file@8.1.3
899
+ - @pnpm/core-loggers@9.0.3
900
+ - @pnpm/modules-yaml@12.1.3
901
+ - @pnpm/read-projects-context@8.0.7
902
+
903
+ ## 10.0.3
904
+
905
+ ### Patch Changes
906
+
907
+ - Updated dependencies [aa2ae8fe2]
908
+ - @pnpm/types@9.2.0
909
+ - @pnpm/lockfile-file@8.1.2
910
+ - @pnpm/core-loggers@9.0.2
911
+ - @pnpm/modules-yaml@12.1.2
912
+ - @pnpm/read-projects-context@8.0.6
913
+
914
+ ## 10.0.2
915
+
916
+ ### Patch Changes
917
+
918
+ - Updated dependencies [302ebffc5]
919
+ - @pnpm/constants@7.1.1
920
+ - @pnpm/lockfile-file@8.1.1
921
+ - @pnpm/error@5.0.2
922
+ - @pnpm/read-projects-context@8.0.5
923
+
924
+ ## 10.0.1
925
+
926
+ ### Patch Changes
927
+
928
+ - 4b97f1f07: Don't use await in loops.
929
+
930
+ ## 10.0.0
931
+
932
+ ### Major Changes
933
+
934
+ - a53ef4d19: New property returned: `existsNonEmptyWantedLockfile`.
935
+ The `existsWantedLockfile` now means only that a file existed.
936
+ - 9c4ae87bd: New required options added: autoInstallPeers and excludeLinksFromLockfile.
937
+
938
+ ### Patch Changes
939
+
940
+ - Updated dependencies [9c4ae87bd]
941
+ - Updated dependencies [a9e0b7cbf]
942
+ - Updated dependencies [9c4ae87bd]
943
+ - Updated dependencies [9c4ae87bd]
944
+ - @pnpm/lockfile-file@8.1.0
945
+ - @pnpm/types@9.1.0
946
+ - @pnpm/constants@7.1.0
947
+ - @pnpm/read-projects-context@8.0.4
948
+ - @pnpm/core-loggers@9.0.1
949
+ - @pnpm/modules-yaml@12.1.1
950
+ - @pnpm/error@5.0.1
951
+
952
+ ## 9.1.0
953
+
954
+ ### Minor Changes
955
+
956
+ - 1ffedcb8d: New option added: confirmModulesPurge.
957
+
958
+ ## 9.0.4
959
+
960
+ ### Patch Changes
961
+
962
+ - 497b0a79c: Ask the user to confirm the removal of node_modules directory unless the `--force` option is passed.
963
+ - Updated dependencies [e6b83c84e]
964
+ - @pnpm/modules-yaml@12.1.0
965
+ - @pnpm/read-projects-context@8.0.3
966
+
967
+ ## 9.0.3
968
+
969
+ ### Patch Changes
970
+
971
+ - Updated dependencies [c0760128d]
972
+ - @pnpm/lockfile-file@8.0.2
973
+ - @pnpm/read-projects-context@8.0.2
974
+
975
+ ## 9.0.2
976
+
977
+ ### Patch Changes
978
+
979
+ - 080fee0b8: Add -g to mismatch registries error info when original command has -g option [#6224](https://github.com/pnpm/pnpm/issues/6224).
980
+
981
+ ## 9.0.1
982
+
983
+ ### Patch Changes
984
+
985
+ - Updated dependencies [5087636b6]
986
+ - Updated dependencies [94f94eed6]
987
+ - @pnpm/lockfile-file@8.0.1
988
+ - @pnpm/read-projects-context@8.0.1
989
+
990
+ ## 9.0.0
991
+
992
+ ### Major Changes
993
+
994
+ - 158d8cf22: `useLockfileV6` field is deleted. Lockfile v5 cannot be written anymore, only transformed to the new format.
995
+ - eceaa8b8b: Node.js 14 support dropped.
996
+
997
+ ### Minor Changes
998
+
999
+ - 2a2032810: Return `wantedLockfileIsModified`.
1000
+
1001
+ ### Patch Changes
1002
+
1003
+ - Updated dependencies [158d8cf22]
1004
+ - Updated dependencies [eceaa8b8b]
1005
+ - Updated dependencies [417c8ac59]
1006
+ - @pnpm/lockfile-file@8.0.0
1007
+ - @pnpm/read-projects-context@8.0.0
1008
+ - @pnpm/modules-yaml@12.0.0
1009
+ - @pnpm/core-loggers@9.0.0
1010
+ - @pnpm/constants@7.0.0
1011
+ - @pnpm/error@5.0.0
1012
+ - @pnpm/types@9.0.0
1013
+
1014
+ ## 8.2.4
1015
+
1016
+ ### Patch Changes
1017
+
1018
+ - Updated dependencies [787c43dcc]
1019
+ - @pnpm/lockfile-file@7.0.6
1020
+ - @pnpm/read-projects-context@7.0.12
1021
+
1022
+ ## 8.2.3
1023
+
1024
+ ### Patch Changes
1025
+
1026
+ - Updated dependencies [ed946c73e]
1027
+ - @pnpm/lockfile-file@7.0.5
1028
+ - @pnpm/read-projects-context@7.0.11
1029
+
1030
+ ## 8.2.2
1031
+
1032
+ ### Patch Changes
1033
+
1034
+ - @pnpm/lockfile-file@7.0.4
1035
+ - @pnpm/read-projects-context@7.0.10
1036
+
1037
+ ## 8.2.1
1038
+
1039
+ ### Patch Changes
1040
+
1041
+ - @pnpm/lockfile-file@7.0.3
1042
+ - @pnpm/read-projects-context@7.0.9
1043
+
1044
+ ## 8.2.0
1045
+
1046
+ ### Minor Changes
1047
+
1048
+ - 28b47a156: When `extend-node-path` is set to `false`, the `NODE_PATH` environment variable is not set in the command shims [#5910](https://github.com/pnpm/pnpm/pull/5910)
1049
+
1050
+ ## 8.1.2
1051
+
1052
+ ### Patch Changes
1053
+
1054
+ - Updated dependencies [9a68ebbae]
1055
+ - @pnpm/lockfile-file@7.0.2
1056
+ - @pnpm/read-projects-context@7.0.8
1057
+
1058
+ ## 8.1.1
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - @pnpm/lockfile-file@7.0.1
1063
+ - @pnpm/read-projects-context@7.0.7
1064
+
1065
+ ## 8.1.0
1066
+
1067
+ ### Minor Changes
1068
+
1069
+ - 3ebce5db7: Added support for `pnpm-lock.yaml` format v6. This new format will be the new lockfile format in pnpm v8. To use the new lockfile format, use the `use-lockfile-v6=true` setting in `.npmrc`. Or run `pnpm install --use-lockfile-v6` [#5810](https://github.com/pnpm/pnpm/pull/5810).
1070
+
1071
+ ### Patch Changes
1072
+
1073
+ - Updated dependencies [3ebce5db7]
1074
+ - Updated dependencies [3ebce5db7]
1075
+ - @pnpm/constants@6.2.0
1076
+ - @pnpm/lockfile-file@7.0.0
1077
+ - @pnpm/error@4.0.1
1078
+ - @pnpm/read-projects-context@7.0.6
1079
+
1080
+ ## 8.0.6
1081
+
1082
+ ### Patch Changes
1083
+
1084
+ - 08ceaf3fc: replace dependency `is-ci` by `ci-info` (`is-ci` is just a simple wrapper around `ci-info`).
1085
+
1086
+ ## 8.0.5
1087
+
1088
+ ### Patch Changes
1089
+
1090
+ - Updated dependencies [b77651d14]
1091
+ - Updated dependencies [2458741fa]
1092
+ - @pnpm/types@8.10.0
1093
+ - @pnpm/modules-yaml@11.1.0
1094
+ - @pnpm/lockfile-file@6.0.5
1095
+ - @pnpm/core-loggers@8.0.3
1096
+ - @pnpm/read-projects-context@7.0.5
1097
+
1098
+ ## 8.0.4
1099
+
1100
+ ### Patch Changes
1101
+
1102
+ - @pnpm/lockfile-file@6.0.4
1103
+ - @pnpm/read-projects-context@7.0.4
1104
+
1105
+ ## 8.0.3
1106
+
1107
+ ### Patch Changes
1108
+
1109
+ - Updated dependencies [a9d59d8bc]
1110
+ - @pnpm/lockfile-file@6.0.3
1111
+ - @pnpm/read-projects-context@7.0.3
1112
+
1113
+ ## 8.0.2
1114
+
1115
+ ### Patch Changes
1116
+
1117
+ - Updated dependencies [702e847c1]
1118
+ - @pnpm/types@8.9.0
1119
+ - @pnpm/core-loggers@8.0.2
1120
+ - @pnpm/lockfile-file@6.0.2
1121
+ - @pnpm/modules-yaml@11.0.2
1122
+ - @pnpm/read-projects-context@7.0.2
1123
+
1124
+ ## 8.0.1
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - Updated dependencies [844e82f3a]
1129
+ - @pnpm/types@8.8.0
1130
+ - @pnpm/core-loggers@8.0.1
1131
+ - @pnpm/lockfile-file@6.0.1
1132
+ - @pnpm/modules-yaml@11.0.1
1133
+ - @pnpm/read-projects-context@7.0.1
1134
+
1135
+ ## 8.0.0
1136
+
1137
+ ### Major Changes
1138
+
1139
+ - 645384bfd: Breaking changes to the API.
1140
+ - f884689e0: Require `@pnpm/logger` v5.
1141
+
1142
+ ### Patch Changes
1143
+
1144
+ - Updated dependencies [043d988fc]
1145
+ - Updated dependencies [72f7d6b3b]
1146
+ - Updated dependencies [f884689e0]
1147
+ - @pnpm/error@4.0.0
1148
+ - @pnpm/modules-yaml@11.0.0
1149
+ - @pnpm/core-loggers@8.0.0
1150
+ - @pnpm/lockfile-file@6.0.0
1151
+ - @pnpm/read-projects-context@7.0.0
1152
+
1153
+ ## 7.0.3
1154
+
1155
+ ### Patch Changes
1156
+
1157
+ - Updated dependencies [7c296fe9b]
1158
+ - @pnpm/lockfile-file@5.3.8
1159
+ - @pnpm/read-projects-context@6.0.19
1160
+
1161
+ ## 7.0.2
1162
+
1163
+ ### Patch Changes
1164
+
1165
+ - Updated dependencies [3ae888c28]
1166
+ - @pnpm/core-loggers@7.1.0
1167
+
1168
+ ## 7.0.1
1169
+
1170
+ ### Patch Changes
1171
+
1172
+ - Updated dependencies [e8a631bf0]
1173
+ - @pnpm/error@3.1.0
1174
+ - @pnpm/lockfile-file@5.3.7
1175
+ - @pnpm/read-projects-context@6.0.18
1176
+
1177
+ ## 7.0.0
1178
+
1179
+ ### Major Changes
1180
+
1181
+ - 51566e34b: Pass readPackageHook as a separate option not as a subproperty of `hooks`.
1182
+
1183
+ ### Patch Changes
1184
+
1185
+ - Updated dependencies [d665f3ff7]
1186
+ - @pnpm/types@8.7.0
1187
+ - @pnpm/core-loggers@7.0.8
1188
+ - @pnpm/lockfile-file@5.3.6
1189
+ - @pnpm/modules-yaml@10.0.8
1190
+ - @pnpm/read-projects-context@6.0.17
1191
+
1192
+ ## 6.2.11
1193
+
1194
+ ### Patch Changes
1195
+
1196
+ - Updated dependencies [156cc1ef6]
1197
+ - @pnpm/types@8.6.0
1198
+ - @pnpm/core-loggers@7.0.7
1199
+ - @pnpm/lockfile-file@5.3.5
1200
+ - @pnpm/modules-yaml@10.0.7
1201
+ - @pnpm/read-projects-context@6.0.16
1202
+
1203
+ ## 6.2.10
1204
+
1205
+ ### Patch Changes
1206
+
1207
+ - Updated dependencies [0373af22e]
1208
+ - @pnpm/lockfile-file@5.3.4
1209
+ - @pnpm/read-projects-context@6.0.15
1210
+
1211
+ ## 6.2.9
1212
+
1213
+ ### Patch Changes
1214
+
1215
+ - Updated dependencies [1e5482da4]
1216
+ - @pnpm/lockfile-file@5.3.3
1217
+ - @pnpm/read-projects-context@6.0.14
1218
+
1219
+ ## 6.2.8
1220
+
1221
+ ### Patch Changes
1222
+
1223
+ - 8103f92bd: Use a patched version of ramda to fix deprecation warnings on Node.js 16. Related issue: https://github.com/ramda/ramda/pull/3270
1224
+ - Updated dependencies [8103f92bd]
1225
+ - @pnpm/lockfile-file@5.3.2
1226
+ - @pnpm/read-projects-context@6.0.13
1227
+
1228
+ ## 6.2.7
1229
+
1230
+ ### Patch Changes
1231
+
1232
+ - Updated dependencies [44544b493]
1233
+ - Updated dependencies [c90798461]
1234
+ - @pnpm/lockfile-file@5.3.1
1235
+ - @pnpm/types@8.5.0
1236
+ - @pnpm/read-projects-context@6.0.12
1237
+ - @pnpm/core-loggers@7.0.6
1238
+ - @pnpm/modules-yaml@10.0.6
1239
+
1240
+ ## 6.2.6
1241
+
1242
+ ### Patch Changes
1243
+
1244
+ - Updated dependencies [8dcfbe357]
1245
+ - @pnpm/lockfile-file@5.3.0
1246
+ - @pnpm/read-projects-context@6.0.11
1247
+
1248
+ ## 6.2.5
1249
+
1250
+ ### Patch Changes
1251
+
1252
+ - Updated dependencies [4fa1091c8]
1253
+ - @pnpm/lockfile-file@5.2.0
1254
+ - @pnpm/read-projects-context@6.0.10
1255
+
1256
+ ## 6.2.4
1257
+
1258
+ ### Patch Changes
1259
+
1260
+ - Updated dependencies [ab684d77e]
1261
+ - @pnpm/lockfile-file@5.1.4
1262
+ - @pnpm/read-projects-context@6.0.9
1263
+
1264
+ ## 6.2.3
1265
+
1266
+ ### Patch Changes
1267
+
1268
+ - 5f643f23b: Update ramda to v0.28.
1269
+ - Updated dependencies [5f643f23b]
1270
+ - @pnpm/lockfile-file@5.1.3
1271
+ - @pnpm/read-projects-context@6.0.8
1272
+
1273
+ ## 6.2.2
1274
+
1275
+ ### Patch Changes
1276
+
1277
+ - Updated dependencies [8e5b77ef6]
1278
+ - @pnpm/types@8.4.0
1279
+ - @pnpm/lockfile-file@5.1.2
1280
+ - @pnpm/core-loggers@7.0.5
1281
+ - @pnpm/modules-yaml@10.0.5
1282
+ - @pnpm/read-projects-context@6.0.7
1283
+
1284
+ ## 6.2.1
1285
+
1286
+ ### Patch Changes
1287
+
1288
+ - Updated dependencies [2a34b21ce]
1289
+ - @pnpm/types@8.3.0
1290
+ - @pnpm/core-loggers@7.0.4
1291
+ - @pnpm/lockfile-file@5.1.1
1292
+ - @pnpm/modules-yaml@10.0.4
1293
+ - @pnpm/read-projects-context@6.0.6
1294
+
1295
+ ## 6.2.0
1296
+
1297
+ ### Minor Changes
1298
+
1299
+ - 56cf04cb3: New settings added: use-git-branch-lockfile, merge-git-branch-lockfiles, merge-git-branch-lockfiles-branch-pattern.
1300
+
1301
+ ### Patch Changes
1302
+
1303
+ - Updated dependencies [fb5bbfd7a]
1304
+ - Updated dependencies [56cf04cb3]
1305
+ - @pnpm/types@8.2.0
1306
+ - @pnpm/lockfile-file@5.1.0
1307
+ - @pnpm/core-loggers@7.0.3
1308
+ - @pnpm/modules-yaml@10.0.3
1309
+ - @pnpm/read-projects-context@6.0.5
1310
+
1311
+ ## 6.1.3
1312
+
1313
+ ### Patch Changes
1314
+
1315
+ - Updated dependencies [4d39e4a0c]
1316
+ - @pnpm/types@8.1.0
1317
+ - @pnpm/core-loggers@7.0.2
1318
+ - @pnpm/lockfile-file@5.0.4
1319
+ - @pnpm/modules-yaml@10.0.2
1320
+ - @pnpm/read-projects-context@6.0.4
1321
+
1322
+ ## 6.1.2
1323
+
1324
+ ### Patch Changes
1325
+
1326
+ - Updated dependencies [52b0576af]
1327
+ - @pnpm/lockfile-file@5.0.3
1328
+ - @pnpm/read-projects-context@6.0.3
1329
+
1330
+ ## 6.1.1
1331
+
1332
+ ### Patch Changes
1333
+
1334
+ - Updated dependencies [18ba5e2c0]
1335
+ - @pnpm/types@8.0.1
1336
+ - @pnpm/core-loggers@7.0.1
1337
+ - @pnpm/lockfile-file@5.0.2
1338
+ - @pnpm/modules-yaml@10.0.1
1339
+ - @pnpm/read-projects-context@6.0.2
1340
+
1341
+ ## 6.1.0
1342
+
1343
+ ### Minor Changes
1344
+
1345
+ - 8fa95fd86: `extraNodePaths` added to the context.
1346
+
1347
+ ### Patch Changes
1348
+
1349
+ - Updated dependencies [1267e4eff]
1350
+ - @pnpm/constants@6.1.0
1351
+ - @pnpm/error@3.0.1
1352
+ - @pnpm/lockfile-file@5.0.1
1353
+ - @pnpm/read-projects-context@6.0.1
1354
+
1355
+ ## 6.0.0
1356
+
1357
+ ### Major Changes
1358
+
1359
+ - 542014839: Node.js 12 is not supported.
1360
+
1361
+ ### Patch Changes
1362
+
1363
+ - Updated dependencies [d504dc380]
1364
+ - Updated dependencies [542014839]
1365
+ - @pnpm/types@8.0.0
1366
+ - @pnpm/constants@6.0.0
1367
+ - @pnpm/core-loggers@7.0.0
1368
+ - @pnpm/error@3.0.0
1369
+ - @pnpm/lockfile-file@5.0.0
1370
+ - @pnpm/modules-yaml@10.0.0
1371
+ - @pnpm/read-projects-context@6.0.0
1372
+
1373
+ ## 5.3.8
1374
+
1375
+ ### Patch Changes
1376
+
1377
+ - Updated dependencies [70ba51da9]
1378
+ - @pnpm/error@2.1.0
1379
+ - @pnpm/lockfile-file@4.3.1
1380
+ - @pnpm/read-projects-context@5.0.19
1381
+
1382
+ ## 5.3.7
1383
+
1384
+ ### Patch Changes
1385
+
1386
+ - Updated dependencies [b138d048c]
1387
+ - @pnpm/lockfile-file@4.3.0
1388
+ - @pnpm/types@7.10.0
1389
+ - @pnpm/read-projects-context@5.0.18
1390
+ - @pnpm/core-loggers@6.1.4
1391
+ - @pnpm/modules-yaml@9.1.1
1392
+
1393
+ ## 5.3.6
1394
+
1395
+ ### Patch Changes
1396
+
1397
+ - Updated dependencies [cdc521cfa]
1398
+ - @pnpm/modules-yaml@9.1.0
1399
+ - @pnpm/read-projects-context@5.0.17
1400
+
1401
+ ## 5.3.5
1402
+
1403
+ ### Patch Changes
1404
+
1405
+ - Updated dependencies [26cd01b88]
1406
+ - @pnpm/types@7.9.0
1407
+ - @pnpm/core-loggers@6.1.3
1408
+ - @pnpm/lockfile-file@4.2.6
1409
+ - @pnpm/modules-yaml@9.0.11
1410
+ - @pnpm/read-projects-context@5.0.16
1411
+
1412
+ ## 5.3.4
1413
+
1414
+ ### Patch Changes
1415
+
1416
+ - Updated dependencies [7375396db]
1417
+ - @pnpm/modules-yaml@9.0.10
1418
+ - @pnpm/read-projects-context@5.0.15
1419
+
1420
+ ## 5.3.3
1421
+
1422
+ ### Patch Changes
1423
+
1424
+ - Updated dependencies [b5734a4a7]
1425
+ - @pnpm/types@7.8.0
1426
+ - @pnpm/core-loggers@6.1.2
1427
+ - @pnpm/lockfile-file@4.2.5
1428
+ - @pnpm/modules-yaml@9.0.9
1429
+ - @pnpm/read-projects-context@5.0.14
1430
+
1431
+ ## 5.3.2
1432
+
1433
+ ### Patch Changes
1434
+
1435
+ - Updated dependencies [eb9ebd0f3]
1436
+ - Updated dependencies [eb9ebd0f3]
1437
+ - @pnpm/lockfile-file@4.2.4
1438
+ - @pnpm/read-projects-context@5.0.13
1439
+
1440
+ ## 5.3.1
1441
+
1442
+ ### Patch Changes
1443
+
1444
+ - Updated dependencies [6493e0c93]
1445
+ - @pnpm/types@7.7.1
1446
+ - @pnpm/core-loggers@6.1.1
1447
+ - @pnpm/lockfile-file@4.2.3
1448
+ - @pnpm/modules-yaml@9.0.8
1449
+ - @pnpm/read-projects-context@5.0.12
1450
+
1451
+ ## 5.3.0
1452
+
1453
+ ### Minor Changes
1454
+
1455
+ - 25f0fa9fa: Export `GetContextOptions`.
1456
+
1457
+ ### Patch Changes
1458
+
1459
+ - Updated dependencies [ba9b2eba1]
1460
+ - Updated dependencies [ba9b2eba1]
1461
+ - @pnpm/core-loggers@6.1.0
1462
+ - @pnpm/types@7.7.0
1463
+ - @pnpm/read-projects-context@5.0.11
1464
+ - @pnpm/lockfile-file@4.2.2
1465
+ - @pnpm/modules-yaml@9.0.7
1466
+
1467
+ ## 5.2.2
1468
+
1469
+ ### Patch Changes
1470
+
1471
+ - @pnpm/read-projects-context@5.0.10
1472
+
1473
+ ## 5.2.1
1474
+
1475
+ ### Patch Changes
1476
+
1477
+ - @pnpm/read-projects-context@5.0.9
1478
+
1479
+ ## 5.2.0
1480
+
1481
+ ### Minor Changes
1482
+
1483
+ - 302ae4f6f: Support async hooks
1484
+
1485
+ ### Patch Changes
1486
+
1487
+ - Updated dependencies [302ae4f6f]
1488
+ - @pnpm/types@7.6.0
1489
+ - @pnpm/core-loggers@6.0.6
1490
+ - @pnpm/lockfile-file@4.2.1
1491
+ - @pnpm/modules-yaml@9.0.6
1492
+ - @pnpm/read-projects-context@5.0.8
1493
+
1494
+ ## 5.1.6
1495
+
1496
+ ### Patch Changes
1497
+
1498
+ - Updated dependencies [4ab87844a]
1499
+ - Updated dependencies [4ab87844a]
1500
+ - @pnpm/types@7.5.0
1501
+ - @pnpm/lockfile-file@4.2.0
1502
+ - @pnpm/core-loggers@6.0.5
1503
+ - @pnpm/modules-yaml@9.0.5
1504
+ - @pnpm/read-projects-context@5.0.7
1505
+
1506
+ ## 5.1.5
1507
+
1508
+ ### Patch Changes
1509
+
1510
+ - Updated dependencies [b734b45ea]
1511
+ - @pnpm/types@7.4.0
1512
+ - @pnpm/core-loggers@6.0.4
1513
+ - @pnpm/lockfile-file@4.1.1
1514
+ - @pnpm/modules-yaml@9.0.4
1515
+ - @pnpm/read-projects-context@5.0.6
1516
+
1517
+ ## 5.1.4
1518
+
1519
+ ### Patch Changes
1520
+
1521
+ - Updated dependencies [8e76690f4]
1522
+ - Updated dependencies [8e76690f4]
1523
+ - @pnpm/lockfile-file@4.1.0
1524
+ - @pnpm/types@7.3.0
1525
+ - @pnpm/read-projects-context@5.0.5
1526
+ - @pnpm/core-loggers@6.0.3
1527
+ - @pnpm/modules-yaml@9.0.3
1528
+
1529
+ ## 5.1.3
1530
+
1531
+ ### Patch Changes
1532
+
1533
+ - Updated dependencies [2dc5a7a4c]
1534
+ - @pnpm/lockfile-file@4.0.4
1535
+ - @pnpm/read-projects-context@5.0.4
1536
+
1537
+ ## 5.1.2
1538
+
1539
+ ### Patch Changes
1540
+
1541
+ - Updated dependencies [724c5abd8]
1542
+ - @pnpm/types@7.2.0
1543
+ - @pnpm/core-loggers@6.0.2
1544
+ - @pnpm/lockfile-file@4.0.3
1545
+ - @pnpm/modules-yaml@9.0.2
1546
+ - @pnpm/read-projects-context@5.0.3
1547
+
1548
+ ## 5.1.1
1549
+
1550
+ ### Patch Changes
1551
+
1552
+ - a1a03d145: Import only the required functions from ramda.
1553
+ - Updated dependencies [a1a03d145]
1554
+ - @pnpm/lockfile-file@4.0.2
1555
+ - @pnpm/read-projects-context@5.0.2
1556
+
1557
+ ## 5.1.0
1558
+
1559
+ ### Minor Changes
1560
+
1561
+ - 97c64bae4: Pass in the location of the project to the `readPackage` hook.
1562
+
1563
+ ### Patch Changes
1564
+
1565
+ - Updated dependencies [97c64bae4]
1566
+ - @pnpm/types@7.1.0
1567
+ - @pnpm/core-loggers@6.0.1
1568
+ - @pnpm/lockfile-file@4.0.1
1569
+ - @pnpm/modules-yaml@9.0.1
1570
+ - @pnpm/read-projects-context@5.0.1
1571
+
1572
+ ## 5.0.0
1573
+
1574
+ ### Major Changes
1575
+
1576
+ - 97b986fbc: Node.js 10 support is dropped. At least Node.js 12.17 is required for the package to work.
1577
+
1578
+ ### Patch Changes
1579
+
1580
+ - 7adc6e875: Update dependencies.
1581
+ - Updated dependencies [6871d74b2]
1582
+ - Updated dependencies [97b986fbc]
1583
+ - Updated dependencies [90487a3a8]
1584
+ - Updated dependencies [155e70597]
1585
+ - Updated dependencies [9c2a878c3]
1586
+ - Updated dependencies [8b66f26dc]
1587
+ - Updated dependencies [f2bb5cbeb]
1588
+ - Updated dependencies [f7750baed]
1589
+ - Updated dependencies [78470a32d]
1590
+ - Updated dependencies [9c2a878c3]
1591
+ - @pnpm/constants@5.0.0
1592
+ - @pnpm/core-loggers@6.0.0
1593
+ - @pnpm/error@2.0.0
1594
+ - @pnpm/lockfile-file@4.0.0
1595
+ - @pnpm/modules-yaml@9.0.0
1596
+ - @pnpm/read-projects-context@5.0.0
1597
+ - @pnpm/types@7.0.0
1598
+
1599
+ ## 4.0.0
1600
+
1601
+ ### Major Changes
1602
+
1603
+ - 51e1456dd: `opts.autofixMergeConflicts` is replaced with `opts.frozenLockfile`.
1604
+
1605
+ When `opts.frozenLockfile` is `false`, broken lockfiles are ignored and merge conflicts are automatically resolved.
1606
+
1607
+ ### Patch Changes
1608
+
1609
+ - Updated dependencies [51e1456dd]
1610
+ - @pnpm/lockfile-file@3.2.1
1611
+ - @pnpm/read-projects-context@4.0.16
1612
+
1613
+ ## 3.3.6
1614
+
1615
+ ### Patch Changes
1616
+
1617
+ - 27a40321c: Update dependencies.
1618
+
1619
+ ## 3.3.5
1620
+
1621
+ ### Patch Changes
1622
+
1623
+ - Updated dependencies [9ad8c27bf]
1624
+ - Updated dependencies [9ad8c27bf]
1625
+ - @pnpm/lockfile-file@3.2.0
1626
+ - @pnpm/types@6.4.0
1627
+ - @pnpm/read-projects-context@4.0.15
1628
+ - @pnpm/core-loggers@5.0.3
1629
+ - @pnpm/modules-yaml@8.0.6
1630
+
1631
+ ## 3.3.4
1632
+
1633
+ ### Patch Changes
1634
+
1635
+ - Updated dependencies [af897c324]
1636
+ - @pnpm/lockfile-file@3.1.4
1637
+ - @pnpm/read-projects-context@4.0.14
1638
+
1639
+ ## 3.3.3
1640
+
1641
+ ### Patch Changes
1642
+
1643
+ - Updated dependencies [1e4a3a17a]
1644
+ - @pnpm/lockfile-file@3.1.3
1645
+ - @pnpm/read-projects-context@4.0.13
1646
+
1647
+ ## 3.3.2
1648
+
1649
+ ### Patch Changes
1650
+
1651
+ - Updated dependencies [fba715512]
1652
+ - @pnpm/lockfile-file@3.1.2
1653
+ - @pnpm/read-projects-context@4.0.12
1654
+
1655
+ ## 3.3.1
1656
+
1657
+ ### Patch Changes
1658
+
1659
+ - Updated dependencies [0c5f1bcc9]
1660
+ - @pnpm/error@1.4.0
1661
+ - @pnpm/lockfile-file@3.1.1
1662
+ - @pnpm/read-projects-context@4.0.11
1663
+
1664
+ ## 3.3.0
1665
+
1666
+ ### Minor Changes
1667
+
1668
+ - 3776b5a52: A new option added to the context: lockfileHadConflicts.
1669
+
1670
+ ### Patch Changes
1671
+
1672
+ - Updated dependencies [3776b5a52]
1673
+ - @pnpm/lockfile-file@3.1.0
1674
+ - @pnpm/read-projects-context@4.0.10
1675
+
1676
+ ## 3.2.11
1677
+
1678
+ ### Patch Changes
1679
+
1680
+ - Updated dependencies [dbcc6c96f]
1681
+ - Updated dependencies [09492b7b4]
1682
+ - @pnpm/lockfile-file@3.0.18
1683
+ - @pnpm/modules-yaml@8.0.5
1684
+ - @pnpm/read-projects-context@4.0.9
1685
+
1686
+ ## 3.2.10
1687
+
1688
+ ### Patch Changes
1689
+
1690
+ - Updated dependencies [aa6bc4f95]
1691
+ - @pnpm/lockfile-file@3.0.17
1692
+ - @pnpm/read-projects-context@4.0.8
1693
+
1694
+ ## 3.2.9
1695
+
1696
+ ### Patch Changes
1697
+
1698
+ - Updated dependencies [b5d694e7f]
1699
+ - @pnpm/types@6.3.1
1700
+ - @pnpm/lockfile-file@3.0.16
1701
+ - @pnpm/core-loggers@5.0.2
1702
+ - @pnpm/modules-yaml@8.0.4
1703
+ - @pnpm/read-projects-context@4.0.7
1704
+
1705
+ ## 3.2.8
1706
+
1707
+ ### Patch Changes
1708
+
1709
+ - Updated dependencies [d54043ee4]
1710
+ - Updated dependencies [fcdad632f]
1711
+ - @pnpm/types@6.3.0
1712
+ - @pnpm/constants@4.1.0
1713
+ - @pnpm/lockfile-file@3.0.15
1714
+ - @pnpm/core-loggers@5.0.1
1715
+ - @pnpm/modules-yaml@8.0.3
1716
+ - @pnpm/read-projects-context@4.0.6
1717
+
1718
+ ## 3.2.7
1719
+
1720
+ ### Patch Changes
1721
+
1722
+ - ac3042858: When purging an incompatible modules directory, don't remove `.dot_files` that don't belong to pnpm. (<https://github.com/pnpm/pnpm/issues/2506>)
1723
+
1724
+ ## 3.2.6
1725
+
1726
+ ### Patch Changes
1727
+
1728
+ - Updated dependencies [86cd72de3]
1729
+ - @pnpm/core-loggers@5.0.0
1730
+
1731
+ ## 3.2.5
1732
+
1733
+ ### Patch Changes
1734
+
1735
+ - Updated dependencies [75a36deba]
1736
+ - @pnpm/error@1.3.1
1737
+ - @pnpm/lockfile-file@3.0.14
1738
+ - @pnpm/read-projects-context@4.0.5
1739
+
1740
+ ## 3.2.4
1741
+
1742
+ ### Patch Changes
1743
+
1744
+ - 972864e0d: publicHoistPattern=undefined should be considered to be the same as publicHoistPattern='' (empty string).
1745
+ - Updated dependencies [9550b0505]
1746
+ - @pnpm/lockfile-file@3.0.13
1747
+ - @pnpm/read-projects-context@4.0.4
1748
+
1749
+ ## 3.2.3
1750
+
1751
+ ### Patch Changes
1752
+
1753
+ - 51086e6e4: Fix text in registries mismatch error message.
1754
+ - Updated dependencies [6d480dd7a]
1755
+ - @pnpm/error@1.3.0
1756
+ - @pnpm/lockfile-file@3.0.12
1757
+ - @pnpm/read-projects-context@4.0.3
1758
+
1759
+ ## 3.2.2
1760
+
1761
+ ### Patch Changes
1762
+
1763
+ - a2ef8084f: Use the same versions of dependencies across the pnpm monorepo.
1764
+ - Updated dependencies [a2ef8084f]
1765
+ - @pnpm/modules-yaml@8.0.2
1766
+ - @pnpm/read-projects-context@4.0.2
1767
+
1768
+ ## 3.2.1
1769
+
1770
+ ### Patch Changes
1771
+
1772
+ - 25b425ca2: When purging an incompatible modules directory, don't remove the actual directory, just the contents of it.
1773
+
1774
+ ## 3.2.0
1775
+
1776
+ ### Minor Changes
1777
+
1778
+ - a01626668: Add `originalManifest` that stores the unmodified.
1779
+
1780
+ ## 3.1.0
1781
+
1782
+ ### Minor Changes
1783
+
1784
+ - 9a908bc07: Use `contextLogger` to log `virtualStoreDir`, `storeDir`, and `currentLockfileExists`.
1785
+
1786
+ ### Patch Changes
1787
+
1788
+ - Updated dependencies [9a908bc07]
1789
+ - Updated dependencies [9a908bc07]
1790
+ - @pnpm/core-loggers@4.2.0
1791
+
1792
+ ## 3.0.1
1793
+
1794
+ ### Patch Changes
1795
+
1796
+ - Updated dependencies [db17f6f7b]
1797
+ - @pnpm/types@6.2.0
1798
+ - @pnpm/core-loggers@4.1.2
1799
+ - @pnpm/lockfile-file@3.0.11
1800
+ - @pnpm/modules-yaml@8.0.1
1801
+ - @pnpm/read-projects-context@4.0.1
1802
+
1803
+ ## 3.0.0
1804
+
1805
+ ### Major Changes
1806
+
1807
+ - 71a8c8ce3: `hoistedAliases` replaced with `hoistedDependencies`.
1808
+
1809
+ `shamefullyHoist` replaced with `publicHoistPattern`.
1810
+
1811
+ `forceShamefullyHoist` replaced with `forcePublicHoistPattern`.
1812
+
1813
+ ### Patch Changes
1814
+
1815
+ - Updated dependencies [71a8c8ce3]
1816
+ - Updated dependencies [71a8c8ce3]
1817
+ - Updated dependencies [71a8c8ce3]
1818
+ - @pnpm/read-projects-context@4.0.0
1819
+ - @pnpm/types@6.1.0
1820
+ - @pnpm/modules-yaml@8.0.0
1821
+ - @pnpm/core-loggers@4.1.1
1822
+ - @pnpm/lockfile-file@3.0.10
1823
+
1824
+ ## 2.1.2
1825
+
1826
+ ### Patch Changes
1827
+
1828
+ - Updated dependencies [2ebb7af33]
1829
+ - @pnpm/core-loggers@4.1.0
1830
+
1831
+ ## 2.1.1
1832
+
1833
+ ### Patch Changes
1834
+
1835
+ - 58c02009f: When checking compatibility of the existing modules directory, start with the layout version. Otherwise, it may happen that some of the fields were renamed and other checks will fail.
1836
+
1837
+ ## 2.1.0
1838
+
1839
+ ### Minor Changes
1840
+
1841
+ - 327bfbf02: Add `currentLockfileIsUpToDate` to the context.
1842
+
1843
+ ## 2.0.0
1844
+
1845
+ ### Major Changes
1846
+
1847
+ - 3f73eaf0c: Rename `store` to `storeDir` in `node_modules/.modules.yaml`.
1848
+ - 802d145fc: Remove `independent-leaves` support.
1849
+ - e3990787a: Rename NodeModules to Modules in option names.
1850
+
1851
+ ### Patch Changes
1852
+
1853
+ - Updated dependencies [b5f66c0f2]
1854
+ - Updated dependencies [ca9f50844]
1855
+ - Updated dependencies [3f73eaf0c]
1856
+ - Updated dependencies [da091c711]
1857
+ - Updated dependencies [802d145fc]
1858
+ - Updated dependencies [4f5801b1c]
1859
+ - @pnpm/constants@4.0.0
1860
+ - @pnpm/modules-yaml@7.0.0
1861
+ - @pnpm/types@6.0.0
1862
+ - @pnpm/read-projects-context@3.0.0
1863
+ - @pnpm/core-loggers@4.0.2
1864
+ - @pnpm/error@1.2.1
1865
+ - @pnpm/lockfile-file@3.0.9
1866
+
1867
+ ## 2.0.0-alpha.2
1868
+
1869
+ ### Patch Changes
1870
+
1871
+ - Updated dependencies [ca9f50844]
1872
+ - @pnpm/constants@4.0.0-alpha.1
1873
+ - @pnpm/lockfile-file@3.0.9-alpha.2
1874
+ - @pnpm/read-projects-context@2.0.2-alpha.2
1875
+
1876
+ ## 2.0.0-alpha.1
1877
+
1878
+ ### Major Changes
1879
+
1880
+ - 3f73eaf0: Rename `store` to `storeDir` in `node_modules/.modules.yaml`.
1881
+ - e3990787: Rename NodeModules to Modules in option names.
1882
+
1883
+ ### Patch Changes
1884
+
1885
+ - Updated dependencies [3f73eaf0]
1886
+ - Updated dependencies [da091c71]
1887
+ - @pnpm/modules-yaml@7.0.0-alpha.0
1888
+ - @pnpm/types@6.0.0-alpha.0
1889
+ - @pnpm/read-projects-context@2.0.2-alpha.1
1890
+ - @pnpm/core-loggers@4.0.2-alpha.0
1891
+ - @pnpm/lockfile-file@3.0.9-alpha.1
1892
+
1893
+ ## 1.2.2-alpha.0
1894
+
1895
+ ### Patch Changes
1896
+
1897
+ - Updated dependencies [b5f66c0f2]
1898
+ - @pnpm/constants@4.0.0-alpha.0
1899
+ - @pnpm/lockfile-file@3.0.9-alpha.0
1900
+ - @pnpm/read-projects-context@2.0.2-alpha.0
1901
+
1902
+ ## 1.2.1
1903
+
1904
+ ### Patch Changes
1905
+
1906
+ - 907c63a48: Update dependencies.
1907
+ - 907c63a48: Use `fs.mkdir` instead of `make-dir`.
1908
+ - Updated dependencies [907c63a48]
1909
+ - Updated dependencies [907c63a48]
1910
+ - Updated dependencies [907c63a48]
1911
+ - @pnpm/lockfile-file@3.0.8
1912
+ - @pnpm/modules-yaml@6.0.2
1913
+ - @pnpm/read-projects-context@2.0.1