@pnpm/installing.context 1100.0.22 → 1100.0.23

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