@pnpm/installing.package-requester 1102.1.0 → 1102.1.2

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 +2703 -0
  2. package/package.json +25 -25
package/CHANGELOG.md ADDED
@@ -0,0 +1,2703 @@
1
+ # @pnpm/package-requester
2
+
3
+ ## 1102.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [a897ef7]
8
+ - @pnpm/hooks.types@1100.2.0
9
+ - @pnpm/fetching.pick-fetcher@1100.1.0
10
+
11
+ ## 1102.1.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [dcabb78]
16
+ - @pnpm/resolving.resolver-base@1100.5.1
17
+ - @pnpm/store.controller-types@1100.1.7
18
+ - @pnpm/fetching.fetcher-base@1100.2.1
19
+ - @pnpm/fetching.pick-fetcher@1100.0.14
20
+ - @pnpm/hooks.types@1100.1.1
21
+ - @pnpm/store.cafs@1100.1.12
22
+ - @pnpm/worker@1100.2.3
23
+
24
+ ## 1102.1.0
25
+
26
+ ### Minor Changes
27
+
28
+ - 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.
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [bae694f]
33
+ - Updated dependencies [852d537]
34
+ - @pnpm/resolving.resolver-base@1100.5.0
35
+ - @pnpm/fetching.fetcher-base@1100.2.0
36
+ - @pnpm/hooks.types@1100.1.0
37
+ - @pnpm/fetching.pick-fetcher@1100.0.13
38
+ - @pnpm/store.controller-types@1100.1.6
39
+ - @pnpm/error@1100.0.1
40
+ - @pnpm/store.cafs@1100.1.11
41
+ - @pnpm/config.package-is-installable@1100.0.12
42
+ - @pnpm/store.index@1100.2.1
43
+ - @pnpm/worker@1100.2.2
44
+
45
+ ## 1102.0.0
46
+
47
+ ### Minor Changes
48
+
49
+ - 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.
50
+
51
+ ### Patch Changes
52
+
53
+ - a31faa7: Updated dependency ranges. Notably:
54
+
55
+ - `@pnpm/logger` peer dependency range moved to `^1100.0.0`.
56
+ - `msgpackr` 1.11.8 → 2.0.4 (store index files remain byte-compatible in both directions).
57
+ - `open` ^7.4.2 → ^11.0.0, `memoize` ^10 → ^11, `cli-truncate` ^5 → ^6, `pidtree` ^0.6 → ^1.
58
+ - `@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.
59
+
60
+ - Updated dependencies [61810aa]
61
+ - Updated dependencies [681b593]
62
+ - Updated dependencies [a31faa7]
63
+ - @pnpm/store.index@1100.2.0
64
+ - @pnpm/worker@1100.2.0
65
+ - @pnpm/types@1101.3.2
66
+ - @pnpm/config.package-is-installable@1100.0.11
67
+ - @pnpm/core-loggers@1100.2.1
68
+ - @pnpm/deps.path@1100.0.8
69
+ - @pnpm/store.cafs@1100.1.10
70
+ - @pnpm/fetching.pick-fetcher@1100.0.12
71
+ - @pnpm/fetching.fetcher-base@1100.1.9
72
+ - @pnpm/hooks.types@1100.0.12
73
+ - @pnpm/resolving.resolver-base@1100.4.2
74
+ - @pnpm/store.controller-types@1100.1.5
75
+
76
+ ## 1101.1.0
77
+
78
+ ### Minor Changes
79
+
80
+ - 84bb4b1: Raised the default network concurrency from `min(64, max(cpuCores * 3, 16))` to `min(96, max(cpuCores * 3, 64))`. Package downloads are I/O-bound, not CPU-bound, so deriving the floor from the core count left machines with few cores (for example 4-vCPU CI runners) downloading only 16 tarballs at a time and unable to saturate a low-latency registry. The `networkConcurrency` setting still overrides the default.
81
+
82
+ ### Patch Changes
83
+
84
+ - Updated dependencies [f11b4fc]
85
+ - Updated dependencies [52be454]
86
+ - @pnpm/core-loggers@1100.2.0
87
+ - @pnpm/config.package-is-installable@1100.0.10
88
+ - @pnpm/fetching.pick-fetcher@1100.0.11
89
+ - @pnpm/worker@1100.1.11
90
+
91
+ ## 1101.0.12
92
+
93
+ ### Patch Changes
94
+
95
+ - Updated dependencies [089484a]
96
+ - Updated dependencies [bf1b731]
97
+ - @pnpm/worker@1100.1.10
98
+ - @pnpm/types@1101.3.1
99
+ - @pnpm/fetching.pick-fetcher@1100.0.11
100
+ - @pnpm/config.package-is-installable@1100.0.9
101
+ - @pnpm/core-loggers@1100.1.4
102
+ - @pnpm/deps.path@1100.0.7
103
+ - @pnpm/fetching.fetcher-base@1100.1.8
104
+ - @pnpm/hooks.types@1100.0.11
105
+ - @pnpm/resolving.resolver-base@1100.4.1
106
+ - @pnpm/store.cafs@1100.1.9
107
+ - @pnpm/store.controller-types@1100.1.4
108
+
109
+ ## 1101.0.11
110
+
111
+ ### Patch Changes
112
+
113
+ - Updated dependencies [3b76b8e]
114
+ - Updated dependencies [a017bf3]
115
+ - Updated dependencies [6d17b66]
116
+ - @pnpm/worker@1100.1.9
117
+ - @pnpm/types@1101.3.0
118
+ - @pnpm/resolving.resolver-base@1100.4.0
119
+ - @pnpm/fetching.pick-fetcher@1100.0.10
120
+ - @pnpm/config.package-is-installable@1100.0.8
121
+ - @pnpm/core-loggers@1100.1.3
122
+ - @pnpm/deps.path@1100.0.6
123
+ - @pnpm/fetching.fetcher-base@1100.1.7
124
+ - @pnpm/hooks.types@1100.0.10
125
+ - @pnpm/store.cafs@1100.1.8
126
+ - @pnpm/store.controller-types@1100.1.3
127
+
128
+ ## 1101.0.10
129
+
130
+ ### Patch Changes
131
+
132
+ - 3cf2b86: Fix the `integrity` field being dropped from the lockfile entry of a remote (non-registry) https-tarball dependency when an unrelated package is installed afterwards. URL/tarball resolvers do not return an integrity (it is only known after the tarball is downloaded), so when such a dependency was reused from the lockfile without being re-fetched, its integrity was lost. It is now carried over from the existing resolution. With pnpm's lockfile-integrity hardening, the missing integrity made subsequent `--frozen-lockfile` installs fail with `ERR_PNPM_MISSING_TARBALL_INTEGRITY`. [#12001](https://github.com/pnpm/pnpm/issues/12001).
133
+ - @pnpm/fetching.pick-fetcher@1100.0.9
134
+
135
+ ## 1101.0.9
136
+
137
+ ### Patch Changes
138
+
139
+ - Updated dependencies [aa6149d]
140
+ - Updated dependencies [35d2355]
141
+ - @pnpm/worker@1100.1.8
142
+ - @pnpm/types@1101.2.0
143
+ - @pnpm/config.package-is-installable@1100.0.7
144
+ - @pnpm/core-loggers@1100.1.2
145
+ - @pnpm/deps.path@1100.0.5
146
+ - @pnpm/fetching.fetcher-base@1100.1.6
147
+ - @pnpm/hooks.types@1100.0.9
148
+ - @pnpm/resolving.resolver-base@1100.3.1
149
+ - @pnpm/store.cafs@1100.1.7
150
+ - @pnpm/store.controller-types@1100.1.2
151
+ - @pnpm/fetching.pick-fetcher@1100.0.9
152
+
153
+ ## 1101.0.8
154
+
155
+ ### Patch Changes
156
+
157
+ - Updated dependencies [1627943]
158
+ - Updated dependencies [64afc92]
159
+ - @pnpm/resolving.resolver-base@1100.3.0
160
+ - @pnpm/types@1101.1.1
161
+ - @pnpm/fetching.fetcher-base@1100.1.5
162
+ - @pnpm/fetching.pick-fetcher@1100.0.8
163
+ - @pnpm/hooks.types@1100.0.8
164
+ - @pnpm/store.controller-types@1100.1.1
165
+ - @pnpm/config.package-is-installable@1100.0.6
166
+ - @pnpm/core-loggers@1100.1.1
167
+ - @pnpm/deps.path@1100.0.4
168
+ - @pnpm/store.cafs@1100.1.6
169
+ - @pnpm/worker@1100.1.7
170
+
171
+ ## 1101.0.7
172
+
173
+ ### Patch Changes
174
+
175
+ - Updated dependencies [4195766]
176
+ - Updated dependencies [31538bf]
177
+ - Updated dependencies [4a79336]
178
+ - @pnpm/resolving.resolver-base@1100.2.0
179
+ - @pnpm/store.controller-types@1100.1.0
180
+ - @pnpm/core-loggers@1100.1.0
181
+ - @pnpm/fetching.fetcher-base@1100.1.4
182
+ - @pnpm/fetching.pick-fetcher@1100.0.7
183
+ - @pnpm/hooks.types@1100.0.7
184
+ - @pnpm/store.cafs@1100.1.5
185
+ - @pnpm/config.package-is-installable@1100.0.5
186
+ - @pnpm/worker@1100.1.6
187
+
188
+ ## 1101.0.6
189
+
190
+ ### Patch Changes
191
+
192
+ - c2c2890: Fix `minimumReleaseAge` / `resolutionMode: time-based` installs failing on lockfiles whose `time:` block is missing entries. The npm-resolver's peek-from-store fast path now surfaces `publishedAt` from the lockfile rather than discarding it, and falls through to a registry metadata fetch when the time-based cutoff can't be computed from the data on hand.
193
+ - Updated dependencies [c2c2890]
194
+ - @pnpm/store.controller-types@1100.0.7
195
+ - @pnpm/fetching.pick-fetcher@1100.0.6
196
+ - @pnpm/store.cafs@1100.1.4
197
+ - @pnpm/worker@1100.1.5
198
+
199
+ ## 1101.0.5
200
+
201
+ ### Patch Changes
202
+
203
+ - Updated dependencies [b61e268]
204
+ - @pnpm/types@1101.1.0
205
+ - @pnpm/fetching.pick-fetcher@1100.0.6
206
+ - @pnpm/config.package-is-installable@1100.0.4
207
+ - @pnpm/core-loggers@1100.0.2
208
+ - @pnpm/deps.path@1100.0.3
209
+ - @pnpm/fetching.fetcher-base@1100.1.3
210
+ - @pnpm/hooks.types@1100.0.6
211
+ - @pnpm/resolving.resolver-base@1100.1.3
212
+ - @pnpm/store.cafs@1100.1.3
213
+ - @pnpm/store.controller-types@1100.0.6
214
+ - @pnpm/worker@1100.1.4
215
+
216
+ ## 1101.0.4
217
+
218
+ ### Patch Changes
219
+
220
+ - Updated dependencies [0c67cb5]
221
+ - @pnpm/store.index@1100.1.0
222
+ - @pnpm/fetching.pick-fetcher@1100.0.5
223
+ - @pnpm/worker@1100.1.3
224
+
225
+ ## 1101.0.3
226
+
227
+ ### Patch Changes
228
+
229
+ - 27425d7: Pin the integrity of git-hosted tarballs (codeload.github.com, gitlab.com, bitbucket.org) in the lockfile so that subsequent installs detect a tampered or substituted tarball and refuse to install it. Previously the lockfile only stored the tarball URL for git dependencies, so a compromised git host or a man-in-the-middle could serve arbitrary code on later installs without lockfile changes.
230
+
231
+ A new `gitHosted: true` field is recorded on git-hosted tarball resolutions in the lockfile, letting every reader/writer route them by a single typed check instead of pattern-matching the tarball URL in each call site. Lockfiles written by older pnpm versions are enriched on load (URL fallback) so the field can be relied on uniformly across the codebase.
232
+
233
+ - Updated dependencies [27425d7]
234
+ - @pnpm/fetching.pick-fetcher@1100.0.5
235
+ - @pnpm/resolving.resolver-base@1100.1.2
236
+ - @pnpm/hooks.types@1100.0.5
237
+ - @pnpm/fetching.fetcher-base@1100.1.2
238
+ - @pnpm/store.controller-types@1100.0.5
239
+ - @pnpm/store.cafs@1100.1.2
240
+ - @pnpm/worker@1100.1.2
241
+
242
+ ## 1101.0.2
243
+
244
+ ### Patch Changes
245
+
246
+ - 184ce26: Fix the package name in README.md.
247
+ - Updated dependencies [184ce26]
248
+ - Updated dependencies [5a901e7]
249
+ - @pnpm/config.package-is-installable@1100.0.3
250
+ - @pnpm/resolving.resolver-base@1100.1.1
251
+ - @pnpm/store.controller-types@1100.0.4
252
+ - @pnpm/fetching.fetcher-base@1100.1.1
253
+ - @pnpm/fetching.pick-fetcher@1100.0.4
254
+ - @pnpm/fs.graceful-fs@1100.1.0
255
+ - @pnpm/deps.path@1100.0.2
256
+ - @pnpm/worker@1100.1.1
257
+ - @pnpm/hooks.types@1100.0.4
258
+ - @pnpm/store.cafs@1100.1.1
259
+
260
+ ## 1101.0.1
261
+
262
+ ### Patch Changes
263
+
264
+ - Updated dependencies [d96a1bf]
265
+ - @pnpm/config.package-is-installable@1100.0.2
266
+
267
+ ## 1101.0.0
268
+
269
+ ### Patch Changes
270
+
271
+ - Updated dependencies [421317c]
272
+ - @pnpm/fetching.fetcher-base@1100.1.0
273
+ - @pnpm/store.cafs@1100.1.0
274
+ - @pnpm/worker@1100.1.0
275
+ - @pnpm/fetching.pick-fetcher@1100.0.3
276
+ - @pnpm/hooks.types@1100.0.3
277
+ - @pnpm/store.controller-types@1100.0.3
278
+
279
+ ## 1100.0.2
280
+
281
+ ### Patch Changes
282
+
283
+ - 72c1e05: Fix: different platform variants of the same runtime (e.g. `node@runtime:25.9.0` glibc vs. musl) no longer share a single global-virtual-store entry. The virtual store path now incorporates the selected variant's integrity, so installs with different `--os`/`--cpu`/`--libc` end up in separate directories and `pnpm add --libc=musl node@runtime:<v>` reliably fetches the musl binary even when the glibc variant is already cached.
284
+ - Updated dependencies [72c1e05]
285
+ - @pnpm/resolving.resolver-base@1100.1.0
286
+ - @pnpm/fetching.fetcher-base@1100.0.2
287
+ - @pnpm/fetching.pick-fetcher@1100.0.2
288
+ - @pnpm/hooks.types@1100.0.2
289
+ - @pnpm/store.controller-types@1100.0.2
290
+ - @pnpm/store.cafs@1100.0.2
291
+ - @pnpm/worker@1100.0.2
292
+
293
+ ## 1100.0.1
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [ff28085]
298
+ - @pnpm/types@1101.0.0
299
+ - @pnpm/config.package-is-installable@1100.0.1
300
+ - @pnpm/core-loggers@1100.0.1
301
+ - @pnpm/deps.path@1100.0.1
302
+ - @pnpm/fetching.fetcher-base@1100.0.1
303
+ - @pnpm/hooks.types@1100.0.1
304
+ - @pnpm/resolving.resolver-base@1100.0.1
305
+ - @pnpm/store.cafs@1100.0.1
306
+ - @pnpm/store.controller-types@1100.0.1
307
+ - @pnpm/worker@1100.0.1
308
+ - @pnpm/fetching.pick-fetcher@1100.0.1
309
+
310
+ ## 1009.0.0
311
+
312
+ ### Major Changes
313
+
314
+ - 491a84f: This package is now pure ESM.
315
+ - 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
316
+ - 56a59df: Store the bundled manifest (name, version, bin, engines, scripts, etc.) directly in the package index file, eliminating the need to read `package.json` from the content-addressable store during resolution and installation. This reduces I/O and speeds up repeat installs [#10473](https://github.com/pnpm/pnpm/pull/10473).
317
+
318
+ ### Minor Changes
319
+
320
+ - facdd71: Adding `trustPolicyIgnoreAfter` allows you to ignore trust policy checks for packages published more than a specified time ago[#10352](https://github.com/pnpm/pnpm/issues/10352).
321
+ - ba065f6: Block git-hosted dependencies from running prepare scripts unless explicitly allowed in onlyBuiltDependencies [#10288](https://github.com/pnpm/pnpm/pull/10288).
322
+ - 2b81a4f: In some cases, a filtered install (i.e. `pnpm install --filter ...`) was slower than running `pnpm install` without any filter arguments. This performance regression is now fixed. Filtered installs should be as fast or faster than a full install.
323
+ - 4893853: Increase the network concurrency on machines with many CPU cores. We pick a network concurrency that is not less than 16 and not more than 64 and it is calculated by the number of pnpm workers multiplied by 3 [#10068](https://github.com/pnpm/pnpm/issues/10068).
324
+ - 10bc391: Added a new setting: `trustPolicy`.
325
+ - 9d3f00b: Added support for `trustPolicyExclude` [#10164](https://github.com/pnpm/pnpm/issues/10164).
326
+
327
+ You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement. For example:
328
+
329
+ ```yaml
330
+ trustPolicy: no-downgrade
331
+ trustPolicyExclude:
332
+ - chokidar@4.0.3
333
+ - webpack@4.47.0 || 5.102.1
334
+ ```
335
+
336
+ - 98a0410: Compute integrity hash for HTTP tarball dependencies when fetching, storing it in the lockfile to prevent servers from serving altered content on subsequent installs [#10287](https://github.com/pnpm/pnpm/pull/10287).
337
+
338
+ ### Patch Changes
339
+
340
+ - 56a59df: Check if a package is installable for non npm-hosted packages (e.g., git or tarball dependencies) after the manifest has been fetched.
341
+ - bb8baa7: Fixed optional dependencies to request full metadata from the registry to get the `libc` field, which is required for proper platform compatibility checks [#9950](https://github.com/pnpm/pnpm/issues/9950).
342
+ - ee9fe58: Skip the staging directory when importing packages into `node_modules`. This avoids the overhead of creating a temp dir and renaming per package. Falls back to the atomic staging path on error.
343
+
344
+ Packages that lack a `package.json` now get a synthetic empty one added to the store so that `package.json` can serve as a universal completion marker for the importer.
345
+
346
+ - 38b8e35: Support for custom resolvers and fetchers.
347
+ - Updated dependencies [5f73b0f]
348
+ - Updated dependencies [facdd71]
349
+ - Updated dependencies [e2e0a32]
350
+ - Updated dependencies [9b0a460]
351
+ - Updated dependencies [76718b3]
352
+ - Updated dependencies [a8f016c]
353
+ - Updated dependencies [cc1b8e3]
354
+ - Updated dependencies [7cec347]
355
+ - Updated dependencies [3bf5e21]
356
+ - Updated dependencies [491a84f]
357
+ - Updated dependencies [6656baa]
358
+ - Updated dependencies [2ea6463]
359
+ - Updated dependencies [50fbeca]
360
+ - Updated dependencies [caabba4]
361
+ - Updated dependencies [ba065f6]
362
+ - Updated dependencies [3bf5e21]
363
+ - Updated dependencies [878a773]
364
+ - Updated dependencies [f8e6774]
365
+ - Updated dependencies [ee9fe58]
366
+ - Updated dependencies [7d2fd48]
367
+ - Updated dependencies [efb48dc]
368
+ - Updated dependencies [56a59df]
369
+ - Updated dependencies [780af09]
370
+ - Updated dependencies [50fbeca]
371
+ - Updated dependencies [cb367b9]
372
+ - Updated dependencies [7b1c189]
373
+ - Updated dependencies [8ffb1a7]
374
+ - Updated dependencies [05fb1ae]
375
+ - Updated dependencies [71de2b3]
376
+ - Updated dependencies [4893853]
377
+ - Updated dependencies [10bc391]
378
+ - Updated dependencies [38b8e35]
379
+ - Updated dependencies [b7f0f21]
380
+ - Updated dependencies [1e6de25]
381
+ - Updated dependencies [831f574]
382
+ - Updated dependencies [2df8b71]
383
+ - Updated dependencies [15549a9]
384
+ - Updated dependencies [cc7c0d2]
385
+ - Updated dependencies [9d3f00b]
386
+ - Updated dependencies [98a0410]
387
+ - Updated dependencies [efb48dc]
388
+ - @pnpm/deps.path@1002.0.0
389
+ - @pnpm/store.controller-types@1005.0.0
390
+ - @pnpm/resolving.resolver-base@1006.0.0
391
+ - @pnpm/store.cafs@1001.0.0
392
+ - @pnpm/worker@1001.0.0
393
+ - @pnpm/types@1001.0.0
394
+ - @pnpm/config.package-is-installable@1001.0.0
395
+ - @pnpm/fetching.fetcher-base@1002.0.0
396
+ - @pnpm/fetching.pick-fetcher@1002.0.0
397
+ - @pnpm/core-loggers@1002.0.0
398
+ - @pnpm/fs.graceful-fs@1001.0.0
399
+ - @pnpm/error@1001.0.0
400
+ - @pnpm/hooks.types@1002.0.0
401
+ - @pnpm/store.index@1000.0.0
402
+
403
+ ## 1008.0.0
404
+
405
+ ### Minor Changes
406
+
407
+ - 7c1382f: The npm resolver supports `publishedByExclude` now.
408
+
409
+ ### Patch Changes
410
+
411
+ - Updated dependencies [8993f68]
412
+ - Updated dependencies [7c1382f]
413
+ - Updated dependencies [7c1382f]
414
+ - Updated dependencies [dee39ec]
415
+ - @pnpm/worker@1000.3.0
416
+ - @pnpm/types@1000.9.0
417
+ - @pnpm/resolver-base@1005.1.0
418
+ - @pnpm/store-controller-types@1004.1.0
419
+ - @pnpm/package-is-installable@1000.0.15
420
+ - @pnpm/fetcher-base@1001.0.2
421
+ - @pnpm/core-loggers@1001.0.4
422
+ - @pnpm/dependency-path@1001.1.3
423
+ - @pnpm/read-package-json@1000.1.2
424
+ - @pnpm/store.cafs@1000.0.19
425
+ - @pnpm/pick-fetcher@1001.0.0
426
+
427
+ ## 1007.0.0
428
+
429
+ ### Patch Changes
430
+
431
+ - Updated dependencies [06d2160]
432
+ - @pnpm/worker@1000.2.0
433
+
434
+ ## 1006.0.3
435
+
436
+ ### Patch Changes
437
+
438
+ - Updated dependencies [9b9faa5]
439
+ - @pnpm/graceful-fs@1000.0.1
440
+ - @pnpm/store.cafs@1000.0.18
441
+ - @pnpm/worker@1000.1.14
442
+ - @pnpm/dependency-path@1001.1.2
443
+
444
+ ## 1006.0.2
445
+
446
+ ### Patch Changes
447
+
448
+ - @pnpm/error@1000.0.5
449
+ - @pnpm/package-is-installable@1000.0.14
450
+ - @pnpm/read-package-json@1000.1.1
451
+ - @pnpm/worker@1000.1.13
452
+
453
+ ## 1006.0.1
454
+
455
+ ### Patch Changes
456
+
457
+ - Updated dependencies [e792927]
458
+ - Updated dependencies [df8d57f]
459
+ - Updated dependencies [e792927]
460
+ - @pnpm/read-package-json@1000.1.0
461
+ - @pnpm/package-is-installable@1000.0.13
462
+ - @pnpm/types@1000.8.0
463
+ - @pnpm/fetcher-base@1001.0.1
464
+ - @pnpm/core-loggers@1001.0.3
465
+ - @pnpm/dependency-path@1001.1.1
466
+ - @pnpm/resolver-base@1005.0.1
467
+ - @pnpm/store.cafs@1000.0.17
468
+ - @pnpm/store-controller-types@1004.0.2
469
+ - @pnpm/worker@1000.1.12
470
+ - @pnpm/pick-fetcher@1001.0.0
471
+
472
+ ## 1006.0.0
473
+
474
+ ### Major Changes
475
+
476
+ - d1edf73: Removed node fetcher. The binary fetcher should be used for downloading node assets.
477
+ - f91922c: Changed how the integrity of the node.js artifact is stored in the lockfile.
478
+
479
+ ### Patch Changes
480
+
481
+ - Updated dependencies [d1edf73]
482
+ - Updated dependencies [d1edf73]
483
+ - Updated dependencies [86b33e9]
484
+ - Updated dependencies [d1edf73]
485
+ - Updated dependencies [adb097c]
486
+ - Updated dependencies [f91922c]
487
+ - @pnpm/dependency-path@1001.1.0
488
+ - @pnpm/fetcher-base@1001.0.0
489
+ - @pnpm/resolver-base@1005.0.0
490
+ - @pnpm/pick-fetcher@1001.0.0
491
+ - @pnpm/read-package-json@1000.0.11
492
+ - @pnpm/error@1000.0.4
493
+ - @pnpm/store.cafs@1000.0.16
494
+ - @pnpm/store-controller-types@1004.0.1
495
+ - @pnpm/package-is-installable@1000.0.12
496
+ - @pnpm/worker@1000.1.11
497
+
498
+ ## 1005.0.0
499
+
500
+ ### Major Changes
501
+
502
+ - 1a07b8f: expectedPkg removed from options of the fetch package to store function.
503
+
504
+ ### Minor Changes
505
+
506
+ - 1a07b8f: Added support for resolving and downloading the Node.js runtime specified in the [devEngines](https://github.com/openjs-foundation/package-metadata-interoperability-collab-space/issues/15) field of `package.json`.
507
+
508
+ Usage example:
509
+
510
+ ```json
511
+ {
512
+ "devEngines": {
513
+ "runtime": {
514
+ "name": "node",
515
+ "version": "^24.4.0",
516
+ "onFail": "download"
517
+ }
518
+ }
519
+ }
520
+ ```
521
+
522
+ When running `pnpm install`, pnpm will resolve Node.js to the latest version that satisfies the specified range and install it as a dependency of the project. As a result, when running scripts, the locally installed Node.js version will be used.
523
+
524
+ Unlike the existing options, `useNodeVersion` and `executionEnv.nodeVersion`, this new field supports version ranges, which are locked to exact versions during installation. The resolved version is stored in the pnpm lockfile, along with an integrity checksum for future validation of the Node.js content's validity.
525
+
526
+ Related PR: [#9755](https://github.com/pnpm/pnpm/pull/9755).
527
+
528
+ ### Patch Changes
529
+
530
+ - Updated dependencies [1a07b8f]
531
+ - Updated dependencies [1a07b8f]
532
+ - Updated dependencies [1a07b8f]
533
+ - @pnpm/types@1000.7.0
534
+ - @pnpm/store-controller-types@1004.0.0
535
+ - @pnpm/resolver-base@1004.1.0
536
+ - @pnpm/fetcher-base@1000.1.0
537
+ - @pnpm/pick-fetcher@1000.1.0
538
+ - @pnpm/package-is-installable@1000.0.11
539
+ - @pnpm/core-loggers@1001.0.2
540
+ - @pnpm/dependency-path@1001.0.2
541
+ - @pnpm/read-package-json@1000.0.10
542
+ - @pnpm/store.cafs@1000.0.15
543
+ - @pnpm/worker@1000.1.10
544
+ - @pnpm/error@1000.0.3
545
+
546
+ ## 1004.0.5
547
+
548
+ ### Patch Changes
549
+
550
+ - Updated dependencies [589ac1f]
551
+ - @pnpm/worker@1000.1.9
552
+ - @pnpm/dependency-path@1001.0.1
553
+
554
+ ## 1004.0.4
555
+
556
+ ### Patch Changes
557
+
558
+ - Updated dependencies [540986f]
559
+ - @pnpm/dependency-path@1001.0.0
560
+
561
+ ## 1004.0.3
562
+
563
+ ### Patch Changes
564
+
565
+ - Updated dependencies [2721291]
566
+ - Updated dependencies [6acf819]
567
+ - @pnpm/resolver-base@1004.0.0
568
+ - @pnpm/pick-fetcher@1000.0.1
569
+ - @pnpm/fetcher-base@1000.0.12
570
+ - @pnpm/store-controller-types@1003.0.3
571
+ - @pnpm/store.cafs@1000.0.14
572
+ - @pnpm/worker@1000.1.8
573
+
574
+ ## 1004.0.2
575
+
576
+ ### Patch Changes
577
+
578
+ - 509948d: Fix a regression (in v10.9.0) causing the `--lockfile-only` flag on `pnpm update` to produce a different `pnpm-lock.yaml` than an update without the flag.
579
+ - Updated dependencies [509948d]
580
+ - @pnpm/store-controller-types@1003.0.2
581
+ - @pnpm/store.cafs@1000.0.13
582
+ - @pnpm/worker@1000.1.7
583
+
584
+ ## 1004.0.1
585
+
586
+ ### Patch Changes
587
+
588
+ - 09cf46f: Update `@pnpm/logger` in peer dependencies.
589
+ - c24c66e: Don't remove cpu field on subsequent install
590
+ - Updated dependencies [09cf46f]
591
+ - Updated dependencies [5ec7255]
592
+ - Updated dependencies [c24c66e]
593
+ - @pnpm/package-is-installable@1000.0.10
594
+ - @pnpm/core-loggers@1001.0.1
595
+ - @pnpm/worker@1000.1.6
596
+ - @pnpm/types@1000.6.0
597
+ - @pnpm/store-controller-types@1003.0.1
598
+ - @pnpm/fetcher-base@1000.0.11
599
+ - @pnpm/dependency-path@1000.0.9
600
+ - @pnpm/read-package-json@1000.0.9
601
+ - @pnpm/resolver-base@1003.0.1
602
+ - @pnpm/store.cafs@1000.0.12
603
+ - @pnpm/pick-fetcher@1000.0.0
604
+
605
+ ## 1004.0.0
606
+
607
+ ### Major Changes
608
+
609
+ - 8a9f3a4: `pref` renamed to `bareSpecifier`.
610
+ - 5b73df1: Renamed `normalizedPref` to `specifiers`.
611
+
612
+ ### Minor Changes
613
+
614
+ - 9c3dd03: **Added support for installing JSR packages.** You can now install JSR packages using the following syntax:
615
+
616
+ ```
617
+ pnpm add jsr:<pkg_name>
618
+ ```
619
+
620
+ or with a version range:
621
+
622
+ ```
623
+ pnpm add jsr:<pkg_name>@<range>
624
+ ```
625
+
626
+ For example, running:
627
+
628
+ ```
629
+ pnpm add jsr:@foo/bar
630
+ ```
631
+
632
+ will add the following entry to your `package.json`:
633
+
634
+ ```json
635
+ {
636
+ "dependencies": {
637
+ "@foo/bar": "jsr:^0.1.2"
638
+ }
639
+ }
640
+ ```
641
+
642
+ When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
643
+
644
+ ```json
645
+ {
646
+ "dependencies": {
647
+ "@foo/bar": "npm:@jsr/foo__bar@^0.1.2"
648
+ }
649
+ }
650
+ ```
651
+
652
+ Related issue: [#8941](https://github.com/pnpm/pnpm/issues/8941).
653
+
654
+ Note: The `@jsr` scope defaults to <https://npm.jsr.io/> if the `@jsr:registry` setting is not defined.
655
+
656
+ ### Patch Changes
657
+
658
+ - Updated dependencies [8a9f3a4]
659
+ - Updated dependencies [5b73df1]
660
+ - Updated dependencies [9c3dd03]
661
+ - Updated dependencies [5b73df1]
662
+ - @pnpm/store-controller-types@1003.0.0
663
+ - @pnpm/resolver-base@1003.0.0
664
+ - @pnpm/core-loggers@1001.0.0
665
+ - @pnpm/logger@1001.0.0
666
+ - @pnpm/types@1000.5.0
667
+ - @pnpm/store.cafs@1000.0.11
668
+ - @pnpm/fetcher-base@1000.0.10
669
+ - @pnpm/pick-fetcher@1000.0.0
670
+ - @pnpm/package-is-installable@1000.0.9
671
+ - @pnpm/dependency-path@1000.0.8
672
+ - @pnpm/read-package-json@1000.0.8
673
+ - @pnpm/worker@1000.1.5
674
+
675
+ ## 1003.0.1
676
+
677
+ ### Patch Changes
678
+
679
+ - Updated dependencies [81f441c]
680
+ - @pnpm/resolver-base@1002.0.0
681
+ - @pnpm/fetcher-base@1000.0.9
682
+ - @pnpm/pick-fetcher@1000.0.0
683
+ - @pnpm/store-controller-types@1002.0.1
684
+ - @pnpm/store.cafs@1000.0.10
685
+ - @pnpm/worker@1000.1.4
686
+
687
+ ## 1003.0.0
688
+
689
+ ### Major Changes
690
+
691
+ - 72cff38: The resolving function now takes a `registries` object, so it finds the required registry itself instead of receiving it from package requester.
692
+
693
+ ### Patch Changes
694
+
695
+ - Updated dependencies [750ae7d]
696
+ - Updated dependencies [72cff38]
697
+ - Updated dependencies [750ae7d]
698
+ - @pnpm/types@1000.4.0
699
+ - @pnpm/store-controller-types@1002.0.0
700
+ - @pnpm/resolver-base@1001.0.0
701
+ - @pnpm/core-loggers@1000.2.0
702
+ - @pnpm/package-is-installable@1000.0.8
703
+ - @pnpm/fetcher-base@1000.0.8
704
+ - @pnpm/dependency-path@1000.0.7
705
+ - @pnpm/read-package-json@1000.0.7
706
+ - @pnpm/store.cafs@1000.0.9
707
+ - @pnpm/worker@1000.1.3
708
+ - @pnpm/pick-fetcher@1000.0.0
709
+
710
+ ## 1002.0.2
711
+
712
+ ### Patch Changes
713
+
714
+ - Updated dependencies [5f7be64]
715
+ - Updated dependencies [5f7be64]
716
+ - @pnpm/types@1000.3.0
717
+ - @pnpm/package-is-installable@1000.0.7
718
+ - @pnpm/fetcher-base@1000.0.7
719
+ - @pnpm/core-loggers@1000.1.5
720
+ - @pnpm/dependency-path@1000.0.6
721
+ - @pnpm/read-package-json@1000.0.6
722
+ - @pnpm/resolver-base@1000.2.1
723
+ - @pnpm/store.cafs@1000.0.8
724
+ - @pnpm/store-controller-types@1001.0.5
725
+ - @pnpm/worker@1000.1.2
726
+ - @pnpm/pick-fetcher@1000.0.0
727
+
728
+ ## 1002.0.1
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [3d52365]
733
+ - @pnpm/resolver-base@1000.2.0
734
+ - @pnpm/fetcher-base@1000.0.6
735
+ - @pnpm/pick-fetcher@1000.0.0
736
+ - @pnpm/store-controller-types@1001.0.4
737
+ - @pnpm/store.cafs@1000.0.7
738
+ - @pnpm/worker@1000.1.1
739
+
740
+ ## 1002.0.0
741
+
742
+ ### Patch Changes
743
+
744
+ - Updated dependencies [2e05789]
745
+ - @pnpm/worker@1000.1.0
746
+
747
+ ## 1001.0.4
748
+
749
+ ### Patch Changes
750
+
751
+ - @pnpm/worker@1000.0.8
752
+ - @pnpm/dependency-path@1000.0.5
753
+
754
+ ## 1001.0.3
755
+
756
+ ### Patch Changes
757
+
758
+ - Updated dependencies [a5e4965]
759
+ - @pnpm/types@1000.2.1
760
+ - @pnpm/dependency-path@1000.0.4
761
+ - @pnpm/package-is-installable@1000.0.6
762
+ - @pnpm/fetcher-base@1000.0.5
763
+ - @pnpm/core-loggers@1000.1.4
764
+ - @pnpm/read-package-json@1000.0.5
765
+ - @pnpm/resolver-base@1000.1.4
766
+ - @pnpm/store.cafs@1000.0.6
767
+ - @pnpm/store-controller-types@1001.0.3
768
+ - @pnpm/worker@1000.0.7
769
+ - @pnpm/pick-fetcher@1000.0.0
770
+
771
+ ## 1001.0.2
772
+
773
+ ### Patch Changes
774
+
775
+ - Updated dependencies [8fcc221]
776
+ - @pnpm/types@1000.2.0
777
+ - @pnpm/package-is-installable@1000.0.5
778
+ - @pnpm/fetcher-base@1000.0.4
779
+ - @pnpm/core-loggers@1000.1.3
780
+ - @pnpm/dependency-path@1000.0.3
781
+ - @pnpm/read-package-json@1000.0.4
782
+ - @pnpm/resolver-base@1000.1.3
783
+ - @pnpm/store.cafs@1000.0.5
784
+ - @pnpm/store-controller-types@1001.0.2
785
+ - @pnpm/worker@1000.0.6
786
+ - @pnpm/pick-fetcher@1000.0.0
787
+
788
+ ## 1001.0.1
789
+
790
+ ### Patch Changes
791
+
792
+ - Updated dependencies [b562deb]
793
+ - @pnpm/types@1000.1.1
794
+ - @pnpm/error@1000.0.2
795
+ - @pnpm/package-is-installable@1000.0.4
796
+ - @pnpm/fetcher-base@1000.0.3
797
+ - @pnpm/core-loggers@1000.1.2
798
+ - @pnpm/dependency-path@1000.0.2
799
+ - @pnpm/read-package-json@1000.0.3
800
+ - @pnpm/resolver-base@1000.1.2
801
+ - @pnpm/store.cafs@1000.0.4
802
+ - @pnpm/store-controller-types@1001.0.1
803
+ - @pnpm/worker@1000.0.5
804
+ - @pnpm/pick-fetcher@1000.0.0
805
+
806
+ ## 1001.0.0
807
+
808
+ ### Major Changes
809
+
810
+ - dde650b: `RequestPackageOptions` now takes a union type for the `update` option, instead of a separate `updateToLatest` option.
811
+
812
+ This avoids pitfalls around specifying only `update` or, specifying `update: false`, but still providing `updateToLatest: true`.
813
+
814
+ ### Patch Changes
815
+
816
+ - Updated dependencies [dde650b]
817
+ - @pnpm/store-controller-types@1001.0.0
818
+ - @pnpm/store.cafs@1000.0.3
819
+ - @pnpm/worker@1000.0.4
820
+
821
+ ## 1000.1.2
822
+
823
+ ### Patch Changes
824
+
825
+ - Updated dependencies [9591a18]
826
+ - @pnpm/types@1000.1.0
827
+ - @pnpm/package-is-installable@1000.0.3
828
+ - @pnpm/fetcher-base@1000.0.2
829
+ - @pnpm/core-loggers@1000.1.1
830
+ - @pnpm/dependency-path@1000.0.1
831
+ - @pnpm/read-package-json@1000.0.2
832
+ - @pnpm/resolver-base@1000.1.1
833
+ - @pnpm/store.cafs@1000.0.2
834
+ - @pnpm/store-controller-types@1000.1.1
835
+ - @pnpm/worker@1000.0.3
836
+ - @pnpm/pick-fetcher@1000.0.0
837
+
838
+ ## 1000.1.1
839
+
840
+ ### Patch Changes
841
+
842
+ - Updated dependencies [516c4b3]
843
+ - Updated dependencies [7272992]
844
+ - @pnpm/core-loggers@1000.1.0
845
+ - @pnpm/worker@1000.0.2
846
+ - @pnpm/package-is-installable@1000.0.2
847
+
848
+ ## 1000.1.0
849
+
850
+ ### Minor Changes
851
+
852
+ - 6483b64: A new setting, `inject-workspace-packages`, has been added to allow hard-linking all local workspace dependencies instead of symlinking them. Previously, this behavior was achievable via the [`dependenciesMeta[].injected`](https://pnpm.io/package_json#dependenciesmetainjected) setting, which remains supported [#8836](https://github.com/pnpm/pnpm/pull/8836).
853
+
854
+ ### Patch Changes
855
+
856
+ - Updated dependencies [6483b64]
857
+ - @pnpm/store-controller-types@1000.1.0
858
+ - @pnpm/resolver-base@1000.1.0
859
+ - @pnpm/error@1000.0.1
860
+ - @pnpm/store.cafs@1000.0.1
861
+ - @pnpm/fetcher-base@1000.0.1
862
+ - @pnpm/pick-fetcher@1000.0.0
863
+ - @pnpm/package-is-installable@1000.0.1
864
+ - @pnpm/read-package-json@1000.0.1
865
+ - @pnpm/worker@1000.0.1
866
+
867
+ ## 26.0.0
868
+
869
+ ### Major Changes
870
+
871
+ - d433cb9: Some registries allow identical content to be published under different package names or versions. To accommodate this, index files in the store are now stored using both the content hash and package identifier.
872
+
873
+ This approach ensures that we can:
874
+
875
+ 1. Validate that the integrity in the lockfile corresponds to the correct package,
876
+ which might not be the case after a poorly resolved Git conflict.
877
+ 2. Allow the same content to be referenced by different packages or different versions of the same package.
878
+
879
+ Related PR: [#8510](https://github.com/pnpm/pnpm/pull/8510)
880
+ Related issue: [#8204](https://github.com/pnpm/pnpm/issues/8204)
881
+
882
+ ### Patch Changes
883
+
884
+ - Updated dependencies [dcd2917]
885
+ - Updated dependencies [d433cb9]
886
+ - Updated dependencies [e476b07]
887
+ - Updated dependencies [099e6af]
888
+ - Updated dependencies [d55b259]
889
+ - @pnpm/dependency-path@6.0.0
890
+ - @pnpm/store.cafs@5.0.0
891
+ - @pnpm/package-is-installable@9.0.12
892
+ - @pnpm/worker@2.0.0
893
+ - @pnpm/error@6.0.3
894
+ - @pnpm/fetcher-base@16.0.7
895
+ - @pnpm/store-controller-types@18.1.6
896
+ - @pnpm/read-package-json@9.0.10
897
+
898
+ ## 25.2.10
899
+
900
+ ### Patch Changes
901
+
902
+ - Updated dependencies [222d10a]
903
+ - Updated dependencies [a1f4df2]
904
+ - @pnpm/worker@1.0.13
905
+ - @pnpm/store.cafs@4.0.2
906
+ - @pnpm/package-is-installable@9.0.11
907
+ - @pnpm/dependency-path@5.1.7
908
+
909
+ ## 25.2.9
910
+
911
+ ### Patch Changes
912
+
913
+ - Updated dependencies [db7ff76]
914
+ - @pnpm/store.cafs@4.0.1
915
+ - @pnpm/worker@1.0.12
916
+
917
+ ## 25.2.8
918
+
919
+ ### Patch Changes
920
+
921
+ - @pnpm/error@6.0.2
922
+ - @pnpm/package-is-installable@9.0.10
923
+ - @pnpm/read-package-json@9.0.9
924
+ - @pnpm/worker@1.0.11
925
+
926
+ ## 25.2.7
927
+
928
+ ### Patch Changes
929
+
930
+ - Updated dependencies [d500d9f]
931
+ - Updated dependencies [db420ab]
932
+ - @pnpm/types@12.2.0
933
+ - @pnpm/store.cafs@4.0.0
934
+ - @pnpm/package-is-installable@9.0.9
935
+ - @pnpm/fetcher-base@16.0.7
936
+ - @pnpm/core-loggers@10.0.7
937
+ - @pnpm/dependency-path@5.1.6
938
+ - @pnpm/read-package-json@9.0.8
939
+ - @pnpm/resolver-base@13.0.4
940
+ - @pnpm/store-controller-types@18.1.6
941
+ - @pnpm/worker@1.0.10
942
+ - @pnpm/pick-fetcher@3.0.0
943
+
944
+ ## 25.2.6
945
+
946
+ ### Patch Changes
947
+
948
+ - Updated dependencies [7ee59a1]
949
+ - @pnpm/types@12.1.0
950
+ - @pnpm/package-is-installable@9.0.8
951
+ - @pnpm/fetcher-base@16.0.6
952
+ - @pnpm/core-loggers@10.0.6
953
+ - @pnpm/dependency-path@5.1.5
954
+ - @pnpm/read-package-json@9.0.7
955
+ - @pnpm/resolver-base@13.0.3
956
+ - @pnpm/store.cafs@3.0.8
957
+ - @pnpm/store-controller-types@18.1.5
958
+ - @pnpm/worker@1.0.9
959
+ - @pnpm/pick-fetcher@3.0.0
960
+
961
+ ## 25.2.5
962
+
963
+ ### Patch Changes
964
+
965
+ - Updated dependencies [33ba536]
966
+ - @pnpm/package-is-installable@9.0.7
967
+
968
+ ## 25.2.4
969
+
970
+ ### Patch Changes
971
+
972
+ - Updated dependencies [cb006df]
973
+ - @pnpm/types@12.0.0
974
+ - @pnpm/package-is-installable@9.0.6
975
+ - @pnpm/fetcher-base@16.0.5
976
+ - @pnpm/core-loggers@10.0.5
977
+ - @pnpm/dependency-path@5.1.4
978
+ - @pnpm/read-package-json@9.0.6
979
+ - @pnpm/resolver-base@13.0.2
980
+ - @pnpm/store.cafs@3.0.7
981
+ - @pnpm/store-controller-types@18.1.4
982
+ - @pnpm/worker@1.0.8
983
+ - @pnpm/pick-fetcher@3.0.0
984
+
985
+ ## 25.2.3
986
+
987
+ ### Patch Changes
988
+
989
+ - Updated dependencies [0ef168b]
990
+ - @pnpm/types@11.1.0
991
+ - @pnpm/package-is-installable@9.0.5
992
+ - @pnpm/fetcher-base@16.0.4
993
+ - @pnpm/core-loggers@10.0.4
994
+ - @pnpm/dependency-path@5.1.3
995
+ - @pnpm/read-package-json@9.0.5
996
+ - @pnpm/resolver-base@13.0.1
997
+ - @pnpm/store.cafs@3.0.6
998
+ - @pnpm/store-controller-types@18.1.3
999
+ - @pnpm/worker@1.0.7
1000
+ - @pnpm/pick-fetcher@3.0.0
1001
+
1002
+ ## 25.2.2
1003
+
1004
+ ### Patch Changes
1005
+
1006
+ - Updated dependencies [afe520d]
1007
+ - Updated dependencies [afe520d]
1008
+ - @pnpm/store.cafs@3.0.5
1009
+ - @pnpm/worker@1.0.6
1010
+
1011
+ ## 25.2.1
1012
+
1013
+ ### Patch Changes
1014
+
1015
+ - Updated dependencies [dd00eeb]
1016
+ - Updated dependencies
1017
+ - @pnpm/resolver-base@13.0.0
1018
+ - @pnpm/types@11.0.0
1019
+ - @pnpm/fetcher-base@16.0.3
1020
+ - @pnpm/pick-fetcher@3.0.0
1021
+ - @pnpm/store-controller-types@18.1.2
1022
+ - @pnpm/package-is-installable@9.0.4
1023
+ - @pnpm/core-loggers@10.0.3
1024
+ - @pnpm/dependency-path@5.1.2
1025
+ - @pnpm/read-package-json@9.0.4
1026
+ - @pnpm/store.cafs@3.0.4
1027
+ - @pnpm/worker@1.0.5
1028
+
1029
+ ## 25.2.0
1030
+
1031
+ ### Minor Changes
1032
+
1033
+ - 7c6c923: Some registries allow the exact same content to be published under different package names and/or versions. This breaks the validity checks of packages in the store. To avoid errors when verifying the names and versions of such packages in the store, you may now set the `strict-store-pkg-content-check` setting to `false` [#4724](https://github.com/pnpm/pnpm/issues/4724).
1034
+
1035
+ ### Patch Changes
1036
+
1037
+ - Updated dependencies [13e55b2]
1038
+ - @pnpm/types@10.1.1
1039
+ - @pnpm/package-is-installable@9.0.3
1040
+ - @pnpm/fetcher-base@16.0.2
1041
+ - @pnpm/core-loggers@10.0.2
1042
+ - @pnpm/dependency-path@5.1.1
1043
+ - @pnpm/read-package-json@9.0.3
1044
+ - @pnpm/resolver-base@12.0.2
1045
+ - @pnpm/store.cafs@3.0.3
1046
+ - @pnpm/store-controller-types@18.1.1
1047
+ - @pnpm/worker@1.0.4
1048
+ - @pnpm/pick-fetcher@3.0.0
1049
+
1050
+ ## 25.1.4
1051
+
1052
+ ### Patch Changes
1053
+
1054
+ - Updated dependencies [47341e5]
1055
+ - @pnpm/dependency-path@5.1.0
1056
+
1057
+ ## 25.1.3
1058
+
1059
+ ### Patch Changes
1060
+
1061
+ - Updated dependencies [0c08e1c]
1062
+ - @pnpm/store-controller-types@18.1.0
1063
+ - @pnpm/store.cafs@3.0.2
1064
+ - @pnpm/worker@1.0.3
1065
+
1066
+ ## 25.1.2
1067
+
1068
+ ### Patch Changes
1069
+
1070
+ - Updated dependencies [45f4262]
1071
+ - Updated dependencies
1072
+ - @pnpm/types@10.1.0
1073
+ - @pnpm/dependency-path@5.0.0
1074
+ - @pnpm/package-is-installable@9.0.2
1075
+ - @pnpm/fetcher-base@16.0.1
1076
+ - @pnpm/core-loggers@10.0.1
1077
+ - @pnpm/read-package-json@9.0.2
1078
+ - @pnpm/resolver-base@12.0.1
1079
+ - @pnpm/store.cafs@3.0.1
1080
+ - @pnpm/store-controller-types@18.0.1
1081
+ - @pnpm/worker@1.0.2
1082
+ - @pnpm/pick-fetcher@3.0.0
1083
+
1084
+ ## 25.1.1
1085
+
1086
+ ### Patch Changes
1087
+
1088
+ - Updated dependencies [a7aef51]
1089
+ - @pnpm/error@6.0.1
1090
+ - @pnpm/package-is-installable@9.0.1
1091
+ - @pnpm/read-package-json@9.0.1
1092
+ - @pnpm/worker@1.0.1
1093
+
1094
+ ## 25.1.0
1095
+
1096
+ ### Minor Changes
1097
+
1098
+ - 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).
1099
+
1100
+ ### Patch Changes
1101
+
1102
+ - Updated dependencies [9719a42]
1103
+ - @pnpm/dependency-path@4.0.0
1104
+
1105
+ ## 25.0.1
1106
+
1107
+ ### Patch Changes
1108
+
1109
+ - b7d2ed4: The `engines.pnpm` field in the `package.json` files of dependencies should be ignored [#7965](https://github.com/pnpm/pnpm/issues/7965).
1110
+
1111
+ ## 25.0.0
1112
+
1113
+ ### Major Changes
1114
+
1115
+ - cdd8365: Package ID does not contain the registry domain.
1116
+ - 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
1117
+
1118
+ ### Minor Changes
1119
+
1120
+ - 730929e: Add a field named `ignoredOptionalDependencies`. This is an array of strings. If an optional dependency has its name included in this array, it will be skipped.
1121
+
1122
+ ### Patch Changes
1123
+
1124
+ - Updated dependencies [7733f3a]
1125
+ - Updated dependencies [3ded840]
1126
+ - Updated dependencies [cdd8365]
1127
+ - Updated dependencies [89b396b]
1128
+ - Updated dependencies [43cdd87]
1129
+ - Updated dependencies [6cdbf11]
1130
+ - Updated dependencies [36dcaa0]
1131
+ - Updated dependencies [11d9ebd]
1132
+ - Updated dependencies [36dcaa0]
1133
+ - Updated dependencies [d381a60]
1134
+ - Updated dependencies [b13d2dc]
1135
+ - Updated dependencies [730929e]
1136
+ - Updated dependencies [98a1266]
1137
+ - @pnpm/types@10.0.0
1138
+ - @pnpm/error@6.0.0
1139
+ - @pnpm/worker@1.0.0
1140
+ - @pnpm/dependency-path@3.0.0
1141
+ - @pnpm/read-package-json@9.0.0
1142
+ - @pnpm/package-is-installable@9.0.0
1143
+ - @pnpm/store-controller-types@18.0.0
1144
+ - @pnpm/resolver-base@12.0.0
1145
+ - @pnpm/fetcher-base@16.0.0
1146
+ - @pnpm/pick-fetcher@3.0.0
1147
+ - @pnpm/core-loggers@10.0.0
1148
+ - @pnpm/graceful-fs@4.0.0
1149
+ - @pnpm/store.cafs@3.0.0
1150
+
1151
+ ## 24.1.8
1152
+
1153
+ ### Patch Changes
1154
+
1155
+ - 31054a63e: Running `pnpm update -r --latest` will no longer downgrade prerelease dependencies [#7436](https://github.com/pnpm/pnpm/issues/7436).
1156
+ - Updated dependencies [31054a63e]
1157
+ - @pnpm/store-controller-types@17.2.0
1158
+ - @pnpm/resolver-base@11.1.0
1159
+ - @pnpm/store.cafs@2.0.12
1160
+ - @pnpm/fetcher-base@15.0.7
1161
+ - @pnpm/pick-fetcher@2.0.1
1162
+ - @pnpm/worker@0.3.14
1163
+
1164
+ ## 24.1.7
1165
+
1166
+ ### Patch Changes
1167
+
1168
+ - @pnpm/worker@0.3.13
1169
+
1170
+ ## 24.1.6
1171
+
1172
+ ### Patch Changes
1173
+
1174
+ - Updated dependencies [33313d2fd]
1175
+ - Updated dependencies [4d34684f1]
1176
+ - @pnpm/store.cafs@2.0.11
1177
+ - @pnpm/types@9.4.2
1178
+ - @pnpm/worker@0.3.12
1179
+ - @pnpm/package-is-installable@8.1.2
1180
+ - @pnpm/fetcher-base@15.0.6
1181
+ - @pnpm/core-loggers@9.0.6
1182
+ - @pnpm/dependency-path@2.1.7
1183
+ - @pnpm/read-package-json@8.0.7
1184
+ - @pnpm/resolver-base@11.0.2
1185
+ - @pnpm/store-controller-types@17.1.4
1186
+ - @pnpm/pick-fetcher@2.0.1
1187
+
1188
+ ## 24.1.5
1189
+
1190
+ ### Patch Changes
1191
+
1192
+ - Updated dependencies
1193
+ - @pnpm/types@9.4.1
1194
+ - @pnpm/package-is-installable@8.1.1
1195
+ - @pnpm/fetcher-base@15.0.5
1196
+ - @pnpm/core-loggers@9.0.5
1197
+ - @pnpm/dependency-path@2.1.6
1198
+ - @pnpm/read-package-json@8.0.6
1199
+ - @pnpm/resolver-base@11.0.1
1200
+ - @pnpm/store.cafs@2.0.10
1201
+ - @pnpm/store-controller-types@17.1.3
1202
+ - @pnpm/worker@0.3.11
1203
+ - @pnpm/pick-fetcher@2.0.1
1204
+
1205
+ ## 24.1.4
1206
+
1207
+ ### Patch Changes
1208
+
1209
+ - @pnpm/worker@0.3.10
1210
+
1211
+ ## 24.1.3
1212
+
1213
+ ### Patch Changes
1214
+
1215
+ - 1e7bd4af3: Use availableParallelism, when available.
1216
+ - Updated dependencies [1e7bd4af3]
1217
+ - @pnpm/worker@0.3.9
1218
+
1219
+ ## 24.1.2
1220
+
1221
+ ### Patch Changes
1222
+
1223
+ - Updated dependencies [291607c5a]
1224
+ - @pnpm/store-controller-types@17.1.2
1225
+ - @pnpm/store.cafs@2.0.9
1226
+ - @pnpm/worker@0.3.8
1227
+
1228
+ ## 24.1.1
1229
+
1230
+ ### Patch Changes
1231
+
1232
+ - 7ea45afbe: If a package's tarball cannot be fetched, print the dependency chain that leads to the failed package [#7265](https://github.com/pnpm/pnpm/pull/7265).
1233
+ - Updated dependencies [4c2450208]
1234
+ - Updated dependencies [7ea45afbe]
1235
+ - @pnpm/resolver-base@11.0.0
1236
+ - @pnpm/store-controller-types@17.1.1
1237
+ - @pnpm/fetcher-base@15.0.4
1238
+ - @pnpm/pick-fetcher@2.0.1
1239
+ - @pnpm/worker@0.3.7
1240
+ - @pnpm/store.cafs@2.0.8
1241
+
1242
+ ## 24.1.0
1243
+
1244
+ ### Minor Changes
1245
+
1246
+ - 43ce9e4a6: Support for multiple architectures when installing dependencies [#5965](https://github.com/pnpm/pnpm/issues/5965).
1247
+
1248
+ You can now specify architectures for which you'd like to install optional dependencies, even if they don't match the architecture of the system running the install. Use the `supportedArchitectures` field in `package.json` to define your preferences.
1249
+
1250
+ For example, the following configuration tells pnpm to install optional dependencies for Windows x64:
1251
+
1252
+ ```json
1253
+ {
1254
+ "pnpm": {
1255
+ "supportedArchitectures": {
1256
+ "os": ["win32"],
1257
+ "cpu": ["x64"]
1258
+ }
1259
+ }
1260
+ }
1261
+ ```
1262
+
1263
+ Whereas this configuration will have pnpm install optional dependencies for Windows, macOS, and the architecture of the system currently running the install. It includes artifacts for both x64 and arm64 CPUs:
1264
+
1265
+ ```json
1266
+ {
1267
+ "pnpm": {
1268
+ "supportedArchitectures": {
1269
+ "os": ["win32", "darwin", "current"],
1270
+ "cpu": ["x64", "arm64"]
1271
+ }
1272
+ }
1273
+ }
1274
+ ```
1275
+
1276
+ Additionally, `supportedArchitectures` also supports specifying the `libc` of the system.
1277
+
1278
+ ### Patch Changes
1279
+
1280
+ - Updated dependencies [43ce9e4a6]
1281
+ - Updated dependencies [6390033cd]
1282
+ - @pnpm/package-is-installable@8.1.0
1283
+ - @pnpm/store-controller-types@17.1.0
1284
+ - @pnpm/types@9.4.0
1285
+ - @pnpm/worker@0.3.6
1286
+ - @pnpm/store.cafs@2.0.7
1287
+ - @pnpm/fetcher-base@15.0.3
1288
+ - @pnpm/core-loggers@9.0.4
1289
+ - @pnpm/dependency-path@2.1.5
1290
+ - @pnpm/read-package-json@8.0.5
1291
+ - @pnpm/resolver-base@10.0.4
1292
+ - @pnpm/pick-fetcher@2.0.1
1293
+
1294
+ ## 24.0.6
1295
+
1296
+ ### Patch Changes
1297
+
1298
+ - @pnpm/worker@0.3.5
1299
+
1300
+ ## 24.0.5
1301
+
1302
+ ### Patch Changes
1303
+
1304
+ - 01bc58e2c: Update ssri to v10.0.5.
1305
+ - Updated dependencies [01bc58e2c]
1306
+ - Updated dependencies [08b65ff78]
1307
+ - @pnpm/store.cafs@2.0.6
1308
+ - @pnpm/worker@0.3.4
1309
+
1310
+ ## 24.0.4
1311
+
1312
+ ### Patch Changes
1313
+
1314
+ - @pnpm/worker@0.3.3
1315
+
1316
+ ## 24.0.3
1317
+
1318
+ ### Patch Changes
1319
+
1320
+ - @pnpm/worker@0.3.2
1321
+
1322
+ ## 24.0.2
1323
+
1324
+ ### Patch Changes
1325
+
1326
+ - Updated dependencies [d774a3196]
1327
+ - @pnpm/types@9.3.0
1328
+ - @pnpm/package-is-installable@8.0.5
1329
+ - @pnpm/fetcher-base@15.0.2
1330
+ - @pnpm/core-loggers@9.0.3
1331
+ - @pnpm/dependency-path@2.1.4
1332
+ - @pnpm/read-package-json@8.0.4
1333
+ - @pnpm/resolver-base@10.0.3
1334
+ - @pnpm/store.cafs@2.0.5
1335
+ - @pnpm/store-controller-types@17.0.1
1336
+ - @pnpm/worker@0.3.1
1337
+ - @pnpm/pick-fetcher@2.0.1
1338
+
1339
+ ## 24.0.1
1340
+
1341
+ ### Patch Changes
1342
+
1343
+ - Updated dependencies [f394cfccd]
1344
+ - @pnpm/pick-fetcher@2.0.1
1345
+
1346
+ ## 24.0.0
1347
+
1348
+ ### Major Changes
1349
+
1350
+ - 9caa33d53: `fromStore` replaced with `resolvedFrom`.
1351
+
1352
+ ### Patch Changes
1353
+
1354
+ - Updated dependencies [9caa33d53]
1355
+ - Updated dependencies [9caa33d53]
1356
+ - Updated dependencies [9caa33d53]
1357
+ - @pnpm/store-controller-types@17.0.0
1358
+ - @pnpm/worker@0.3.0
1359
+ - @pnpm/graceful-fs@3.2.0
1360
+ - @pnpm/store.cafs@2.0.4
1361
+ - @pnpm/fetcher-base@15.0.1
1362
+
1363
+ ## 23.0.1
1364
+
1365
+ ### Patch Changes
1366
+
1367
+ - @pnpm/worker@0.2.1
1368
+
1369
+ ## 23.0.0
1370
+
1371
+ ### Patch Changes
1372
+
1373
+ - Updated dependencies [03cdccc6e]
1374
+ - Updated dependencies [48dcd108c]
1375
+ - @pnpm/store-controller-types@16.1.0
1376
+ - @pnpm/worker@0.2.0
1377
+ - @pnpm/store.cafs@2.0.3
1378
+ - @pnpm/fetcher-base@15.0.1
1379
+
1380
+ ## 22.0.2
1381
+
1382
+ ### Patch Changes
1383
+
1384
+ - Updated dependencies [b3947185c]
1385
+ - @pnpm/store.cafs@2.0.2
1386
+ - @pnpm/worker@0.1.2
1387
+
1388
+ ## 22.0.1
1389
+
1390
+ ### Patch Changes
1391
+
1392
+ - Updated dependencies [b548f2f43]
1393
+ - Updated dependencies [4a1a9431d]
1394
+ - @pnpm/store.cafs@2.0.1
1395
+ - @pnpm/fetcher-base@15.0.1
1396
+ - @pnpm/worker@0.1.1
1397
+ - @pnpm/pick-fetcher@2.0.0
1398
+ - @pnpm/store-controller-types@16.0.1
1399
+
1400
+ ## 22.0.0
1401
+
1402
+ ### Major Changes
1403
+
1404
+ - 494f87544: Breaking changes to the API.
1405
+ - 083bbf590: Breaking changes to the API.
1406
+
1407
+ ### Patch Changes
1408
+
1409
+ - Updated dependencies [0fd9e6a6c]
1410
+ - Updated dependencies [494f87544]
1411
+ - Updated dependencies [70b2830ac]
1412
+ - Updated dependencies [083bbf590]
1413
+ - Updated dependencies [083bbf590]
1414
+ - Updated dependencies [083bbf590]
1415
+ - Updated dependencies [083bbf590]
1416
+ - @pnpm/store.cafs@2.0.0
1417
+ - @pnpm/store-controller-types@16.0.0
1418
+ - @pnpm/fetcher-base@15.0.0
1419
+ - @pnpm/worker@0.1.0
1420
+ - @pnpm/graceful-fs@3.1.0
1421
+ - @pnpm/pick-fetcher@2.0.0
1422
+
1423
+ ## 21.1.0
1424
+
1425
+ ### Minor Changes
1426
+
1427
+ - 92f42224c: New option added: `relinkLocalDirDeps`. It is `true` by default. When `false`, local directory dependencies are not relinked on repeat install.
1428
+
1429
+ ## 21.0.12
1430
+
1431
+ ### Patch Changes
1432
+
1433
+ - dac59e632: The length of the temporary file names in the content-addressable store reduced in order to prevent `ENAMETOOLONG` errors from happening [#6842](https://github.com/pnpm/pnpm/issues/6842).
1434
+
1435
+ ## 21.0.11
1436
+
1437
+ ### Patch Changes
1438
+
1439
+ - 73f2b6826: When several containers use the same store simultaneously, there's a chance that multiple containers may create a temporary file at the same time. In such scenarios, pnpm could fail to rename the temporary file in one of the containers. This issue has been addressed: pnpm will no longer fail if the temporary file is absent but the destination file exists.
1440
+ - Updated dependencies [73f2b6826]
1441
+ - @pnpm/store.cafs@1.0.2
1442
+
1443
+ ## 21.0.10
1444
+
1445
+ ### Patch Changes
1446
+
1447
+ - Updated dependencies [fe1c5f48d]
1448
+ - @pnpm/store.cafs@1.0.1
1449
+
1450
+ ## 21.0.9
1451
+
1452
+ ### Patch Changes
1453
+
1454
+ - Updated dependencies [4bbf482d1]
1455
+ - @pnpm/store.cafs@1.0.0
1456
+
1457
+ ## 21.0.8
1458
+
1459
+ ### Patch Changes
1460
+
1461
+ - e958707b2: Improve performance by removing cryptographically generated id from temporary file names.
1462
+ - Updated dependencies [aa2ae8fe2]
1463
+ - Updated dependencies [250f7e9fe]
1464
+ - Updated dependencies [e958707b2]
1465
+ - @pnpm/types@9.2.0
1466
+ - @pnpm/cafs@7.0.5
1467
+ - @pnpm/package-is-installable@8.0.4
1468
+ - @pnpm/fetcher-base@14.0.2
1469
+ - @pnpm/core-loggers@9.0.2
1470
+ - @pnpm/dependency-path@2.1.3
1471
+ - @pnpm/read-package-json@8.0.3
1472
+ - @pnpm/resolver-base@10.0.2
1473
+ - @pnpm/store-controller-types@15.0.2
1474
+ - @pnpm/pick-fetcher@2.0.0
1475
+
1476
+ ## 21.0.7
1477
+
1478
+ ### Patch Changes
1479
+
1480
+ - Updated dependencies [b81cefdcd]
1481
+ - @pnpm/cafs@7.0.4
1482
+
1483
+ ## 21.0.6
1484
+
1485
+ ### Patch Changes
1486
+
1487
+ - Updated dependencies [e57e2d340]
1488
+ - @pnpm/cafs@7.0.3
1489
+
1490
+ ## 21.0.5
1491
+
1492
+ ### Patch Changes
1493
+
1494
+ - @pnpm/error@5.0.2
1495
+ - @pnpm/package-is-installable@8.0.3
1496
+ - @pnpm/read-package-json@8.0.2
1497
+
1498
+ ## 21.0.4
1499
+
1500
+ ### Patch Changes
1501
+
1502
+ - d55b41a8b: Dependencies have been updated.
1503
+ - Updated dependencies [d55b41a8b]
1504
+ - Updated dependencies [614d5bd72]
1505
+ - @pnpm/cafs@7.0.2
1506
+
1507
+ ## 21.0.3
1508
+
1509
+ ### Patch Changes
1510
+
1511
+ - Updated dependencies [a9e0b7cbf]
1512
+ - @pnpm/types@9.1.0
1513
+ - @pnpm/package-is-installable@8.0.2
1514
+ - @pnpm/fetcher-base@14.0.1
1515
+ - @pnpm/core-loggers@9.0.1
1516
+ - @pnpm/dependency-path@2.1.2
1517
+ - @pnpm/read-package-json@8.0.1
1518
+ - @pnpm/resolver-base@10.0.1
1519
+ - @pnpm/cafs@7.0.1
1520
+ - @pnpm/store-controller-types@15.0.1
1521
+ - @pnpm/error@5.0.1
1522
+ - @pnpm/pick-fetcher@2.0.0
1523
+
1524
+ ## 21.0.2
1525
+
1526
+ ### Patch Changes
1527
+
1528
+ - c0760128d: bump semver to 7.4.0
1529
+ - Updated dependencies [c0760128d]
1530
+ - @pnpm/package-is-installable@8.0.1
1531
+ - @pnpm/dependency-path@2.1.1
1532
+
1533
+ ## 21.0.1
1534
+
1535
+ ### Patch Changes
1536
+
1537
+ - Updated dependencies [5087636b6]
1538
+ - Updated dependencies [94f94eed6]
1539
+ - @pnpm/dependency-path@2.1.0
1540
+
1541
+ ## 21.0.0
1542
+
1543
+ ### Major Changes
1544
+
1545
+ - eceaa8b8b: Node.js 14 support dropped.
1546
+
1547
+ ### Patch Changes
1548
+
1549
+ - Updated dependencies [ca8f51e60]
1550
+ - Updated dependencies [eceaa8b8b]
1551
+ - Updated dependencies [0e26acb0f]
1552
+ - @pnpm/dependency-path@2.0.0
1553
+ - @pnpm/read-package-json@8.0.0
1554
+ - @pnpm/package-is-installable@8.0.0
1555
+ - @pnpm/store-controller-types@15.0.0
1556
+ - @pnpm/resolver-base@10.0.0
1557
+ - @pnpm/fetcher-base@14.0.0
1558
+ - @pnpm/pick-fetcher@2.0.0
1559
+ - @pnpm/core-loggers@9.0.0
1560
+ - @pnpm/graceful-fs@3.0.0
1561
+ - @pnpm/error@5.0.0
1562
+ - @pnpm/types@9.0.0
1563
+ - @pnpm/cafs@7.0.0
1564
+
1565
+ ## 20.1.7
1566
+
1567
+ ### Patch Changes
1568
+
1569
+ - Updated dependencies [955874422]
1570
+ - @pnpm/graceful-fs@2.1.0
1571
+ - @pnpm/cafs@6.0.2
1572
+
1573
+ ## 20.1.6
1574
+
1575
+ ### Patch Changes
1576
+
1577
+ - Updated dependencies [029143cff]
1578
+ - Updated dependencies [029143cff]
1579
+ - @pnpm/resolver-base@9.2.0
1580
+ - @pnpm/fetcher-base@13.1.6
1581
+ - @pnpm/pick-fetcher@1.0.0
1582
+ - @pnpm/store-controller-types@14.3.1
1583
+ - @pnpm/cafs@6.0.1
1584
+
1585
+ ## 20.1.5
1586
+
1587
+ ### Patch Changes
1588
+
1589
+ - Updated dependencies [d89d7a078]
1590
+ - @pnpm/dependency-path@1.1.3
1591
+
1592
+ ## 20.1.4
1593
+
1594
+ ### Patch Changes
1595
+
1596
+ - Updated dependencies [9247f6781]
1597
+ - @pnpm/dependency-path@1.1.2
1598
+
1599
+ ## 20.1.3
1600
+
1601
+ ### Patch Changes
1602
+
1603
+ - 98d6603f3: The store integrity check should validate the side effects cache of the installed package. If the side effects cache is broken, the package needs to be rebuilt [#4997](https://github.com/pnpm/pnpm/issues/4997).
1604
+ - Updated dependencies [98d6603f3]
1605
+ - Updated dependencies [98d6603f3]
1606
+ - @pnpm/cafs@6.0.0
1607
+
1608
+ ## 20.1.2
1609
+
1610
+ ### Patch Changes
1611
+
1612
+ - 1e6de89b6: Update ssri to v10.0.1.
1613
+ - Updated dependencies [1e6de89b6]
1614
+ - @pnpm/cafs@5.0.6
1615
+
1616
+ ## 20.1.1
1617
+
1618
+ ### Patch Changes
1619
+
1620
+ - Updated dependencies [0f6e95872]
1621
+ - @pnpm/dependency-path@1.1.1
1622
+
1623
+ ## 20.1.0
1624
+
1625
+ ### Minor Changes
1626
+
1627
+ - 891a8d763: New function added to the store: `getFilesIndexFilePath`.
1628
+ - c7b05cd9a: When ignoreScripts=true is passed to the fetcher, do not build git-hosted dependencies.
1629
+
1630
+ ### Patch Changes
1631
+
1632
+ - Updated dependencies [891a8d763]
1633
+ - Updated dependencies [c7b05cd9a]
1634
+ - Updated dependencies [3ebce5db7]
1635
+ - @pnpm/store-controller-types@14.3.0
1636
+ - @pnpm/dependency-path@1.1.0
1637
+ - @pnpm/cafs@5.0.5
1638
+ - @pnpm/error@4.0.1
1639
+ - @pnpm/package-is-installable@7.0.4
1640
+ - @pnpm/read-package-json@7.0.5
1641
+
1642
+ ## 20.0.5
1643
+
1644
+ ### Patch Changes
1645
+
1646
+ - Updated dependencies [b77651d14]
1647
+ - Updated dependencies [2458741fa]
1648
+ - @pnpm/types@8.10.0
1649
+ - @pnpm/store-controller-types@14.2.0
1650
+ - @pnpm/package-is-installable@7.0.3
1651
+ - @pnpm/fetcher-base@13.1.5
1652
+ - @pnpm/core-loggers@8.0.3
1653
+ - @pnpm/dependency-path@1.0.1
1654
+ - @pnpm/read-package-json@7.0.4
1655
+ - @pnpm/resolver-base@9.1.5
1656
+ - @pnpm/cafs@5.0.4
1657
+ - @pnpm/pick-fetcher@1.0.0
1658
+
1659
+ ## 20.0.4
1660
+
1661
+ ### Patch Changes
1662
+
1663
+ - Updated dependencies [313702d76]
1664
+ - @pnpm/dependency-path@1.0.0
1665
+
1666
+ ## 20.0.3
1667
+
1668
+ ### Patch Changes
1669
+
1670
+ - a9d59d8bc: Update dependencies.
1671
+ - Updated dependencies [a9d59d8bc]
1672
+ - @pnpm/read-package-json@7.0.3
1673
+ - @pnpm/cafs@5.0.3
1674
+
1675
+ ## 20.0.2
1676
+
1677
+ ### Patch Changes
1678
+
1679
+ - Updated dependencies [702e847c1]
1680
+ - @pnpm/types@8.9.0
1681
+ - @pnpm/cafs@5.0.2
1682
+ - @pnpm/core-loggers@8.0.2
1683
+ - dependency-path@9.2.8
1684
+ - @pnpm/fetcher-base@13.1.4
1685
+ - @pnpm/package-is-installable@7.0.2
1686
+ - @pnpm/read-package-json@7.0.2
1687
+ - @pnpm/resolver-base@9.1.4
1688
+ - @pnpm/store-controller-types@14.1.5
1689
+ - @pnpm/pick-fetcher@1.0.0
1690
+
1691
+ ## 20.0.1
1692
+
1693
+ ### Patch Changes
1694
+
1695
+ - Updated dependencies [844e82f3a]
1696
+ - @pnpm/types@8.8.0
1697
+ - @pnpm/cafs@5.0.1
1698
+ - @pnpm/core-loggers@8.0.1
1699
+ - dependency-path@9.2.7
1700
+ - @pnpm/fetcher-base@13.1.3
1701
+ - @pnpm/package-is-installable@7.0.1
1702
+ - @pnpm/read-package-json@7.0.1
1703
+ - @pnpm/resolver-base@9.1.3
1704
+ - @pnpm/store-controller-types@14.1.4
1705
+ - @pnpm/pick-fetcher@1.0.0
1706
+
1707
+ ## 20.0.0
1708
+
1709
+ ### Major Changes
1710
+
1711
+ - f884689e0: Require `@pnpm/logger` v5.
1712
+
1713
+ ### Patch Changes
1714
+
1715
+ - Updated dependencies [043d988fc]
1716
+ - Updated dependencies [f884689e0]
1717
+ - @pnpm/cafs@5.0.0
1718
+ - @pnpm/error@4.0.0
1719
+ - @pnpm/core-loggers@8.0.0
1720
+ - @pnpm/package-is-installable@7.0.0
1721
+ - @pnpm/read-package-json@7.0.0
1722
+
1723
+ ## 19.0.6
1724
+
1725
+ ### Patch Changes
1726
+
1727
+ - Updated dependencies [3ae888c28]
1728
+ - @pnpm/core-loggers@7.1.0
1729
+ - @pnpm/package-is-installable@6.0.12
1730
+
1731
+ ## 19.0.5
1732
+
1733
+ ### Patch Changes
1734
+
1735
+ - Updated dependencies [e8a631bf0]
1736
+ - @pnpm/error@3.1.0
1737
+ - @pnpm/package-is-installable@6.0.11
1738
+ - @pnpm/read-package-json@6.0.11
1739
+
1740
+ ## 19.0.4
1741
+
1742
+ ### Patch Changes
1743
+
1744
+ - Updated dependencies [d665f3ff7]
1745
+ - @pnpm/types@8.7.0
1746
+ - @pnpm/cafs@4.3.2
1747
+ - @pnpm/core-loggers@7.0.8
1748
+ - dependency-path@9.2.6
1749
+ - @pnpm/fetcher-base@13.1.2
1750
+ - @pnpm/package-is-installable@6.0.10
1751
+ - @pnpm/read-package-json@6.0.10
1752
+ - @pnpm/resolver-base@9.1.2
1753
+ - @pnpm/store-controller-types@14.1.3
1754
+ - @pnpm/pick-fetcher@1.0.0
1755
+
1756
+ ## 19.0.3
1757
+
1758
+ ### Patch Changes
1759
+
1760
+ - Updated dependencies [156cc1ef6]
1761
+ - @pnpm/types@8.6.0
1762
+ - @pnpm/cafs@4.3.1
1763
+ - @pnpm/core-loggers@7.0.7
1764
+ - dependency-path@9.2.5
1765
+ - @pnpm/fetcher-base@13.1.1
1766
+ - @pnpm/package-is-installable@6.0.9
1767
+ - @pnpm/read-package-json@6.0.9
1768
+ - @pnpm/resolver-base@9.1.1
1769
+ - @pnpm/store-controller-types@14.1.2
1770
+ - @pnpm/pick-fetcher@1.0.0
1771
+
1772
+ ## 19.0.2
1773
+
1774
+ ### Patch Changes
1775
+
1776
+ - Updated dependencies [745143e79]
1777
+ - @pnpm/cafs@4.3.0
1778
+ - @pnpm/fetcher-base@13.1.0
1779
+ - @pnpm/store-controller-types@14.1.1
1780
+
1781
+ ## 19.0.1
1782
+
1783
+ ### Patch Changes
1784
+
1785
+ - dbac0ca01: Update ssri to v9.
1786
+ - Updated dependencies [dbac0ca01]
1787
+ - Updated dependencies [07bc24ad1]
1788
+ - @pnpm/cafs@4.2.1
1789
+ - @pnpm/read-package-json@6.0.8
1790
+
1791
+ ## 19.0.0
1792
+
1793
+ ### Major Changes
1794
+
1795
+ - 7a17f99ab: Refactor `tarball-fetcher` and separate it into more specific fetchers, such as `localTarball`, `remoteTarball` and `gitHostedTarball`.
1796
+
1797
+ ### Minor Changes
1798
+
1799
+ - 23984abd1: Add hook for adding custom fetchers.
1800
+
1801
+ ### Patch Changes
1802
+
1803
+ - 32915f0e4: Refactor cafs types into separate package and add additional properties including `cafsDir` and `getFilePathInCafs`.
1804
+ - Updated dependencies [32915f0e4]
1805
+ - Updated dependencies [23984abd1]
1806
+ - Updated dependencies [7a17f99ab]
1807
+ - @pnpm/cafs@4.2.0
1808
+ - @pnpm/fetcher-base@13.1.0
1809
+ - @pnpm/store-controller-types@14.1.1
1810
+ - @pnpm/pick-fetcher@1.0.0
1811
+ - @pnpm/resolver-base@9.1.0
1812
+
1813
+ ## 18.1.3
1814
+
1815
+ ### Patch Changes
1816
+
1817
+ - c191ca7bf: Fix bug where the package manifest was not resolved if `verifyStoreIntegrity` is set to `false`.
1818
+ - Updated dependencies [c191ca7bf]
1819
+ - @pnpm/cafs@4.1.0
1820
+
1821
+ ## 18.1.2
1822
+
1823
+ ### Patch Changes
1824
+
1825
+ - 8103f92bd: Use a patched version of ramda to fix deprecation warnings on Node.js 16. Related issue: https://github.com/ramda/ramda/pull/3270
1826
+ - Updated dependencies [39c040127]
1827
+ - Updated dependencies [65c4260de]
1828
+ - @pnpm/cafs@4.0.9
1829
+ - @pnpm/store-controller-types@14.1.0
1830
+
1831
+ ## 18.1.1
1832
+
1833
+ ### Patch Changes
1834
+
1835
+ - Updated dependencies [c90798461]
1836
+ - @pnpm/types@8.5.0
1837
+ - @pnpm/cafs@4.0.8
1838
+ - @pnpm/core-loggers@7.0.6
1839
+ - dependency-path@9.2.4
1840
+ - @pnpm/fetcher-base@13.0.2
1841
+ - @pnpm/package-is-installable@6.0.8
1842
+ - @pnpm/read-package-json@6.0.7
1843
+ - @pnpm/resolver-base@9.0.6
1844
+ - @pnpm/store-controller-types@14.0.2
1845
+
1846
+ ## 18.1.0
1847
+
1848
+ ### Minor Changes
1849
+
1850
+ - cac34ad69: `verify-store-integrity=false` makes pnpm skip checking the integrities of files in the global content-addressable store.
1851
+
1852
+ ## 18.0.13
1853
+
1854
+ ### Patch Changes
1855
+
1856
+ - dependency-path@9.2.3
1857
+
1858
+ ## 18.0.12
1859
+
1860
+ ### Patch Changes
1861
+
1862
+ - 5f643f23b: Update ramda to v0.28.
1863
+
1864
+ ## 18.0.11
1865
+
1866
+ ### Patch Changes
1867
+
1868
+ - Updated dependencies [fc581d371]
1869
+ - dependency-path@9.2.2
1870
+
1871
+ ## 18.0.10
1872
+
1873
+ ### Patch Changes
1874
+
1875
+ - Updated dependencies [8e5b77ef6]
1876
+ - @pnpm/types@8.4.0
1877
+ - @pnpm/cafs@4.0.7
1878
+ - @pnpm/core-loggers@7.0.5
1879
+ - dependency-path@9.2.1
1880
+ - @pnpm/fetcher-base@13.0.1
1881
+ - @pnpm/package-is-installable@6.0.7
1882
+ - @pnpm/read-package-json@6.0.6
1883
+ - @pnpm/resolver-base@9.0.5
1884
+ - @pnpm/store-controller-types@14.0.1
1885
+
1886
+ ## 18.0.9
1887
+
1888
+ ### Patch Changes
1889
+
1890
+ - Updated dependencies [2a34b21ce]
1891
+ - Updated dependencies [c635f9fc1]
1892
+ - Updated dependencies [2a34b21ce]
1893
+ - Updated dependencies [47b5e45dd]
1894
+ - @pnpm/types@8.3.0
1895
+ - dependency-path@9.2.0
1896
+ - @pnpm/fetcher-base@13.0.0
1897
+ - @pnpm/store-controller-types@14.0.0
1898
+ - @pnpm/cafs@4.0.6
1899
+ - @pnpm/core-loggers@7.0.4
1900
+ - @pnpm/package-is-installable@6.0.6
1901
+ - @pnpm/read-package-json@6.0.5
1902
+ - @pnpm/resolver-base@9.0.4
1903
+
1904
+ ## 18.0.8
1905
+
1906
+ ### Patch Changes
1907
+
1908
+ - 0abfe1718: Use `safe-promise-defer`.
1909
+ - Updated dependencies [fb5bbfd7a]
1910
+ - Updated dependencies [725636a90]
1911
+ - Updated dependencies [0abfe1718]
1912
+ - @pnpm/types@8.2.0
1913
+ - dependency-path@9.1.4
1914
+ - @pnpm/fetcher-base@12.1.0
1915
+ - @pnpm/cafs@4.0.5
1916
+ - @pnpm/core-loggers@7.0.3
1917
+ - @pnpm/package-is-installable@6.0.5
1918
+ - @pnpm/read-package-json@6.0.4
1919
+ - @pnpm/resolver-base@9.0.3
1920
+ - @pnpm/store-controller-types@13.0.4
1921
+
1922
+ ## 18.0.7
1923
+
1924
+ ### Patch Changes
1925
+
1926
+ - Updated dependencies [4d39e4a0c]
1927
+ - @pnpm/types@8.1.0
1928
+ - @pnpm/cafs@4.0.4
1929
+ - @pnpm/core-loggers@7.0.2
1930
+ - dependency-path@9.1.3
1931
+ - @pnpm/fetcher-base@12.0.3
1932
+ - @pnpm/package-is-installable@6.0.4
1933
+ - @pnpm/read-package-json@6.0.3
1934
+ - @pnpm/resolver-base@9.0.2
1935
+ - @pnpm/store-controller-types@13.0.3
1936
+
1937
+ ## 18.0.6
1938
+
1939
+ ### Patch Changes
1940
+
1941
+ - 6756c2b02: It should be possible to install a git-hosted package that has no `package.json` file [#4822](https://github.com/pnpm/pnpm/issues/4822).
1942
+ - Updated dependencies [6756c2b02]
1943
+ - @pnpm/cafs@4.0.3
1944
+ - @pnpm/fetcher-base@12.0.2
1945
+ - @pnpm/store-controller-types@13.0.2
1946
+
1947
+ ## 18.0.5
1948
+
1949
+ ### Patch Changes
1950
+
1951
+ - Updated dependencies [c57695550]
1952
+ - dependency-path@9.1.2
1953
+
1954
+ ## 18.0.4
1955
+
1956
+ ### Patch Changes
1957
+
1958
+ - Updated dependencies [52b0576af]
1959
+ - @pnpm/package-is-installable@6.0.3
1960
+
1961
+ ## 18.0.3
1962
+
1963
+ ### Patch Changes
1964
+
1965
+ - Updated dependencies [cadefe5b6]
1966
+ - @pnpm/cafs@4.0.2
1967
+
1968
+ ## 18.0.2
1969
+
1970
+ ### Patch Changes
1971
+
1972
+ - Updated dependencies [18ba5e2c0]
1973
+ - @pnpm/types@8.0.1
1974
+ - @pnpm/core-loggers@7.0.1
1975
+ - dependency-path@9.1.1
1976
+ - @pnpm/fetcher-base@12.0.1
1977
+ - @pnpm/package-is-installable@6.0.2
1978
+ - @pnpm/read-package-json@6.0.2
1979
+ - @pnpm/resolver-base@9.0.1
1980
+ - @pnpm/store-controller-types@13.0.1
1981
+ - @pnpm/cafs@4.0.1
1982
+
1983
+ ## 18.0.1
1984
+
1985
+ ### Patch Changes
1986
+
1987
+ - 7cdca5ef2: Don't check the integrity of the store with the package version from the lockfile, when the package was updated [#4580](https://github.com/pnpm/pnpm/pull/4580).
1988
+ - Updated dependencies [0a70aedb1]
1989
+ - dependency-path@9.1.0
1990
+ - @pnpm/error@3.0.1
1991
+ - @pnpm/package-is-installable@6.0.1
1992
+ - @pnpm/read-package-json@6.0.1
1993
+
1994
+ ## 18.0.0
1995
+
1996
+ ### Major Changes
1997
+
1998
+ - 9c22c063e: Local dependencies referenced through the `file:` protocol are hard linked (not symlinked) [#4408](https://github.com/pnpm/pnpm/pull/4408). If you need to symlink a dependency, use the `link:` protocol instead.
1999
+ - 542014839: Node.js 12 is not supported.
2000
+
2001
+ ### Patch Changes
2002
+
2003
+ - Updated dependencies [d504dc380]
2004
+ - Updated dependencies [faf830b8f]
2005
+ - Updated dependencies [542014839]
2006
+ - @pnpm/types@8.0.0
2007
+ - dependency-path@9.0.0
2008
+ - @pnpm/cafs@4.0.0
2009
+ - @pnpm/core-loggers@7.0.0
2010
+ - @pnpm/error@3.0.0
2011
+ - @pnpm/fetcher-base@12.0.0
2012
+ - @pnpm/graceful-fs@2.0.0
2013
+ - @pnpm/package-is-installable@6.0.0
2014
+ - @pnpm/read-package-json@6.0.0
2015
+ - @pnpm/resolver-base@9.0.0
2016
+ - @pnpm/store-controller-types@13.0.0
2017
+
2018
+ ## 17.0.0
2019
+
2020
+ ### Major Changes
2021
+
2022
+ - 5c525db13: Changes to RequestPackageOptions: currentPkg.name and currentPkg.version removed.
2023
+
2024
+ ### Patch Changes
2025
+
2026
+ - Updated dependencies [70ba51da9]
2027
+ - Updated dependencies [5c525db13]
2028
+ - @pnpm/error@2.1.0
2029
+ - @pnpm/store-controller-types@12.0.0
2030
+ - @pnpm/package-is-installable@5.0.13
2031
+ - @pnpm/read-package-json@5.0.12
2032
+ - @pnpm/cafs@3.0.15
2033
+
2034
+ ## 16.0.2
2035
+
2036
+ ### Patch Changes
2037
+
2038
+ - 800fb2836: Ignore case, when verifying package name in the store [#4367](https://github.com/pnpm/pnpm/issues/4367).
2039
+ - Updated dependencies [b138d048c]
2040
+ - @pnpm/types@7.10.0
2041
+ - @pnpm/core-loggers@6.1.4
2042
+ - dependency-path@8.0.11
2043
+ - @pnpm/fetcher-base@11.1.6
2044
+ - @pnpm/package-is-installable@5.0.12
2045
+ - @pnpm/read-package-json@5.0.11
2046
+ - @pnpm/resolver-base@8.1.6
2047
+ - @pnpm/store-controller-types@11.0.12
2048
+ - @pnpm/cafs@3.0.14
2049
+
2050
+ ## 16.0.1
2051
+
2052
+ ### Patch Changes
2053
+
2054
+ - Updated dependencies [26cd01b88]
2055
+ - @pnpm/types@7.9.0
2056
+ - @pnpm/core-loggers@6.1.3
2057
+ - dependency-path@8.0.10
2058
+ - @pnpm/fetcher-base@11.1.5
2059
+ - @pnpm/package-is-installable@5.0.11
2060
+ - @pnpm/read-package-json@5.0.10
2061
+ - @pnpm/resolver-base@8.1.5
2062
+ - @pnpm/store-controller-types@11.0.11
2063
+ - @pnpm/cafs@3.0.13
2064
+
2065
+ ## 16.0.0
2066
+
2067
+ ### Major Changes
2068
+
2069
+ - 8ddcd5116: Log the fetch statuses of packages for the progress reporter.
2070
+
2071
+ ## 15.2.6
2072
+
2073
+ ### Patch Changes
2074
+
2075
+ - Updated dependencies [b5734a4a7]
2076
+ - @pnpm/types@7.8.0
2077
+ - @pnpm/core-loggers@6.1.2
2078
+ - dependency-path@8.0.9
2079
+ - @pnpm/fetcher-base@11.1.4
2080
+ - @pnpm/package-is-installable@5.0.10
2081
+ - @pnpm/read-package-json@5.0.9
2082
+ - @pnpm/resolver-base@8.1.4
2083
+ - @pnpm/store-controller-types@11.0.10
2084
+ - @pnpm/cafs@3.0.12
2085
+
2086
+ ## 15.2.5
2087
+
2088
+ ### Patch Changes
2089
+
2090
+ - Updated dependencies [6493e0c93]
2091
+ - @pnpm/types@7.7.1
2092
+ - @pnpm/core-loggers@6.1.1
2093
+ - dependency-path@8.0.8
2094
+ - @pnpm/fetcher-base@11.1.3
2095
+ - @pnpm/package-is-installable@5.0.9
2096
+ - @pnpm/read-package-json@5.0.8
2097
+ - @pnpm/resolver-base@8.1.3
2098
+ - @pnpm/store-controller-types@11.0.9
2099
+ - @pnpm/cafs@3.0.11
2100
+
2101
+ ## 15.2.4
2102
+
2103
+ ### Patch Changes
2104
+
2105
+ - 77ff0898b: Don't fail when the version of a package in the store is not a semver version.
2106
+ - Updated dependencies [ba9b2eba1]
2107
+ - Updated dependencies [ba9b2eba1]
2108
+ - @pnpm/core-loggers@6.1.0
2109
+ - @pnpm/types@7.7.0
2110
+ - @pnpm/package-is-installable@5.0.8
2111
+ - dependency-path@8.0.7
2112
+ - @pnpm/fetcher-base@11.1.2
2113
+ - @pnpm/read-package-json@5.0.7
2114
+ - @pnpm/resolver-base@8.1.2
2115
+ - @pnpm/store-controller-types@11.0.8
2116
+ - @pnpm/cafs@3.0.10
2117
+
2118
+ ## 15.2.3
2119
+
2120
+ ### Patch Changes
2121
+
2122
+ - dbd8acfe9: The version in the bundled manifest should always be normalized.
2123
+ - 119b3a908: When checking the correctness of the package data in the lockfile, don't use exact version comparison. `v1.0.0` should be considered to be the same as `1.0.0`. This fixes some edge cases when a package is published with a non-normalized version specifier in its `package.json`.
2124
+
2125
+ ## 15.2.2
2126
+
2127
+ ### Patch Changes
2128
+
2129
+ - Updated dependencies [783cc1051]
2130
+ - @pnpm/package-is-installable@5.0.7
2131
+
2132
+ ## 15.2.1
2133
+
2134
+ ### Patch Changes
2135
+
2136
+ - Updated dependencies [302ae4f6f]
2137
+ - @pnpm/types@7.6.0
2138
+ - @pnpm/core-loggers@6.0.6
2139
+ - dependency-path@8.0.6
2140
+ - @pnpm/fetcher-base@11.1.1
2141
+ - @pnpm/package-is-installable@5.0.6
2142
+ - @pnpm/read-package-json@5.0.6
2143
+ - @pnpm/resolver-base@8.1.1
2144
+ - @pnpm/store-controller-types@11.0.7
2145
+ - @pnpm/cafs@3.0.9
2146
+
2147
+ ## 15.2.0
2148
+
2149
+ ### Minor Changes
2150
+
2151
+ - 4ab87844a: Added support for "injected" dependencies.
2152
+
2153
+ ### Patch Changes
2154
+
2155
+ - Updated dependencies [4ab87844a]
2156
+ - Updated dependencies [4ab87844a]
2157
+ - Updated dependencies [4ab87844a]
2158
+ - Updated dependencies [4ab87844a]
2159
+ - @pnpm/types@7.5.0
2160
+ - @pnpm/fetcher-base@11.1.0
2161
+ - @pnpm/resolver-base@8.1.0
2162
+ - @pnpm/core-loggers@6.0.5
2163
+ - dependency-path@8.0.5
2164
+ - @pnpm/package-is-installable@5.0.5
2165
+ - @pnpm/read-package-json@5.0.5
2166
+ - @pnpm/store-controller-types@11.0.6
2167
+ - @pnpm/cafs@3.0.8
2168
+
2169
+ ## 15.1.2
2170
+
2171
+ ### Patch Changes
2172
+
2173
+ - 11a934da1: Always fetch the bundled manifest.
2174
+
2175
+ ## 15.1.1
2176
+
2177
+ ### Patch Changes
2178
+
2179
+ - 31e01d9a9: isInstallable should be always returned by `packageRequester()`.
2180
+
2181
+ ## 15.1.0
2182
+
2183
+ ### Minor Changes
2184
+
2185
+ - 07e7b1c0c: Do not fetch optional packages that are not installable on the target system.
2186
+
2187
+ ## 15.0.7
2188
+
2189
+ ### Patch Changes
2190
+
2191
+ - Updated dependencies [b734b45ea]
2192
+ - @pnpm/types@7.4.0
2193
+ - @pnpm/core-loggers@6.0.4
2194
+ - dependency-path@8.0.4
2195
+ - @pnpm/fetcher-base@11.0.3
2196
+ - @pnpm/read-package-json@5.0.4
2197
+ - @pnpm/resolver-base@8.0.4
2198
+ - @pnpm/store-controller-types@11.0.5
2199
+ - @pnpm/cafs@3.0.7
2200
+
2201
+ ## 15.0.6
2202
+
2203
+ ### Patch Changes
2204
+
2205
+ - Updated dependencies [8e76690f4]
2206
+ - @pnpm/types@7.3.0
2207
+ - @pnpm/core-loggers@6.0.3
2208
+ - dependency-path@8.0.3
2209
+ - @pnpm/fetcher-base@11.0.2
2210
+ - @pnpm/read-package-json@5.0.3
2211
+ - @pnpm/resolver-base@8.0.3
2212
+ - @pnpm/store-controller-types@11.0.4
2213
+ - @pnpm/cafs@3.0.6
2214
+
2215
+ ## 15.0.5
2216
+
2217
+ ### Patch Changes
2218
+
2219
+ - Updated dependencies [6c418943c]
2220
+ - dependency-path@8.0.2
2221
+
2222
+ ## 15.0.4
2223
+
2224
+ ### Patch Changes
2225
+
2226
+ - Updated dependencies [724c5abd8]
2227
+ - @pnpm/types@7.2.0
2228
+ - @pnpm/core-loggers@6.0.2
2229
+ - dependency-path@8.0.1
2230
+ - @pnpm/fetcher-base@11.0.1
2231
+ - @pnpm/read-package-json@5.0.2
2232
+ - @pnpm/resolver-base@8.0.2
2233
+ - @pnpm/store-controller-types@11.0.3
2234
+ - @pnpm/cafs@3.0.5
2235
+
2236
+ ## 15.0.3
2237
+
2238
+ ### Patch Changes
2239
+
2240
+ - a1a03d145: Import only the required functions from ramda.
2241
+
2242
+ ## 15.0.2
2243
+
2244
+ ### Patch Changes
2245
+
2246
+ - Updated dependencies [20e2f235d]
2247
+ - dependency-path@8.0.0
2248
+
2249
+ ## 15.0.1
2250
+
2251
+ ### Patch Changes
2252
+
2253
+ - Updated dependencies [a2aeeef88]
2254
+ - Updated dependencies [ef0ca24be]
2255
+ - @pnpm/graceful-fs@1.0.0
2256
+ - @pnpm/cafs@3.0.4
2257
+
2258
+ ## 15.0.0
2259
+
2260
+ ### Major Changes
2261
+
2262
+ - e6a2654a2: Breaking changes to the API of `packageRequester()`.
2263
+
2264
+ `resolve` and `fetchers` should be passed in through `options`, not as arguments.
2265
+
2266
+ `cafs` is not returned anymore. It should be passed in through `options` as well.
2267
+
2268
+ ### Patch Changes
2269
+
2270
+ - Updated dependencies [e6a2654a2]
2271
+ - Updated dependencies [e6a2654a2]
2272
+ - @pnpm/fetcher-base@11.0.0
2273
+ - @pnpm/cafs@3.0.3
2274
+ - @pnpm/store-controller-types@11.0.2
2275
+
2276
+ ## 14.0.3
2277
+
2278
+ ### Patch Changes
2279
+
2280
+ - Updated dependencies [97c64bae4]
2281
+ - @pnpm/types@7.1.0
2282
+ - @pnpm/core-loggers@6.0.1
2283
+ - dependency-path@7.0.1
2284
+ - @pnpm/fetcher-base@10.0.1
2285
+ - @pnpm/read-package-json@5.0.1
2286
+ - @pnpm/resolver-base@8.0.1
2287
+ - @pnpm/store-controller-types@11.0.1
2288
+ - @pnpm/cafs@3.0.2
2289
+
2290
+ ## 14.0.2
2291
+
2292
+ ### Patch Changes
2293
+
2294
+ - 6f198457d: Update rename-overwrite.
2295
+ - Updated dependencies [6f198457d]
2296
+ - @pnpm/cafs@3.0.1
2297
+
2298
+ ## 14.0.1
2299
+
2300
+ ### Patch Changes
2301
+
2302
+ - Updated dependencies [9ceab68f0]
2303
+ - dependency-path@7.0.0
2304
+
2305
+ ## 14.0.0
2306
+
2307
+ ### Major Changes
2308
+
2309
+ - 97b986fbc: Node.js 10 support is dropped. At least Node.js 12.17 is required for the package to work.
2310
+
2311
+ ### Patch Changes
2312
+
2313
+ - 83645c8ed: Update ssri.
2314
+ - Updated dependencies [97b986fbc]
2315
+ - Updated dependencies [90487a3a8]
2316
+ - Updated dependencies [e4efddbd2]
2317
+ - Updated dependencies [f2bb5cbeb]
2318
+ - Updated dependencies [83645c8ed]
2319
+ - @pnpm/cafs@3.0.0
2320
+ - @pnpm/core-loggers@6.0.0
2321
+ - dependency-path@6.0.0
2322
+ - @pnpm/error@2.0.0
2323
+ - @pnpm/fetcher-base@10.0.0
2324
+ - @pnpm/read-package-json@5.0.0
2325
+ - @pnpm/resolver-base@8.0.0
2326
+ - @pnpm/store-controller-types@11.0.0
2327
+ - @pnpm/types@7.0.0
2328
+
2329
+ ## 13.0.1
2330
+
2331
+ ### Patch Changes
2332
+
2333
+ - Updated dependencies [d853fb14a]
2334
+ - @pnpm/read-package-json@4.0.0
2335
+
2336
+ ## 13.0.0
2337
+
2338
+ ### Major Changes
2339
+
2340
+ - 8d1dfa89c: Breaking changes to the store controller API.
2341
+
2342
+ The options to `requestPackage()` and `fetchPackage()` changed.
2343
+
2344
+ ### Patch Changes
2345
+
2346
+ - Updated dependencies [8d1dfa89c]
2347
+ - Updated dependencies [8d1dfa89c]
2348
+ - @pnpm/store-controller-types@10.0.0
2349
+ - @pnpm/cafs@2.1.0
2350
+
2351
+ ## 12.2.2
2352
+
2353
+ ### Patch Changes
2354
+
2355
+ - Updated dependencies [9ad8c27bf]
2356
+ - @pnpm/types@6.4.0
2357
+ - @pnpm/core-loggers@5.0.3
2358
+ - dependency-path@5.1.1
2359
+ - @pnpm/fetcher-base@9.0.4
2360
+ - @pnpm/read-package-json@3.1.9
2361
+ - @pnpm/resolver-base@7.1.1
2362
+ - @pnpm/store-controller-types@9.2.1
2363
+ - @pnpm/cafs@2.0.5
2364
+
2365
+ ## 12.2.1
2366
+
2367
+ ### Patch Changes
2368
+
2369
+ - Updated dependencies [e27dcf0dc]
2370
+ - dependency-path@5.1.0
2371
+
2372
+ ## 12.2.0
2373
+
2374
+ ### Minor Changes
2375
+
2376
+ - 8698a7060: New option added: preferWorkspacePackages. When it is `true`, dependencies are linked from the workspace even, when there are newer version available in the registry.
2377
+
2378
+ ### Patch Changes
2379
+
2380
+ - Updated dependencies [8698a7060]
2381
+ - @pnpm/resolver-base@7.1.0
2382
+ - @pnpm/store-controller-types@9.2.0
2383
+ - @pnpm/fetcher-base@9.0.3
2384
+ - @pnpm/cafs@2.0.4
2385
+
2386
+ ## 12.1.4
2387
+
2388
+ ### Patch Changes
2389
+
2390
+ - @pnpm/read-package-json@3.1.8
2391
+
2392
+ ## 12.1.3
2393
+
2394
+ ### Patch Changes
2395
+
2396
+ - Updated dependencies [b3059f4f8]
2397
+ - @pnpm/cafs@2.0.3
2398
+
2399
+ ## 12.1.2
2400
+
2401
+ ### Patch Changes
2402
+
2403
+ - Updated dependencies [b5d694e7f]
2404
+ - @pnpm/types@6.3.1
2405
+ - @pnpm/core-loggers@5.0.2
2406
+ - @pnpm/fetcher-base@9.0.2
2407
+ - @pnpm/read-package-json@3.1.7
2408
+ - @pnpm/resolver-base@7.0.5
2409
+ - @pnpm/store-controller-types@9.1.2
2410
+ - @pnpm/cafs@2.0.2
2411
+
2412
+ ## 12.1.1
2413
+
2414
+ ### Patch Changes
2415
+
2416
+ - Updated dependencies [d54043ee4]
2417
+ - Updated dependencies [212671848]
2418
+ - @pnpm/types@6.3.0
2419
+ - @pnpm/read-package-json@3.1.6
2420
+ - @pnpm/core-loggers@5.0.1
2421
+ - @pnpm/fetcher-base@9.0.1
2422
+ - @pnpm/resolver-base@7.0.4
2423
+ - @pnpm/store-controller-types@9.1.1
2424
+ - @pnpm/cafs@2.0.1
2425
+
2426
+ ## 12.1.0
2427
+
2428
+ ### Minor Changes
2429
+
2430
+ - 0a6544043: A new field added to the package files index: `checkedAt`. `checkedAt` is the timestamp (number of milliseconds), when the file's content was verified the last time.
2431
+
2432
+ ### Patch Changes
2433
+
2434
+ - Updated dependencies [0a6544043]
2435
+ - Updated dependencies [0a6544043]
2436
+ - Updated dependencies [0a6544043]
2437
+ - @pnpm/store-controller-types@9.1.0
2438
+ - @pnpm/cafs@2.0.0
2439
+ - @pnpm/fetcher-base@9.0.0
2440
+
2441
+ ## 12.0.13
2442
+
2443
+ ### Patch Changes
2444
+
2445
+ - Updated dependencies [86cd72de3]
2446
+ - Updated dependencies [86cd72de3]
2447
+ - @pnpm/core-loggers@5.0.0
2448
+ - @pnpm/store-controller-types@9.0.0
2449
+ - @pnpm/cafs@1.0.8
2450
+
2451
+ ## 12.0.12
2452
+
2453
+ ### Patch Changes
2454
+
2455
+ - 501efdabd: The `finishing` promise is resolved always after the `files` promise.
2456
+
2457
+ ## 12.0.11
2458
+
2459
+ ### Patch Changes
2460
+
2461
+ - @pnpm/read-package-json@3.1.5
2462
+
2463
+ ## 12.0.10
2464
+
2465
+ ### Patch Changes
2466
+
2467
+ - Updated dependencies [9f5803187]
2468
+ - @pnpm/read-package-json@3.1.4
2469
+
2470
+ ## 12.0.9
2471
+
2472
+ ### Patch Changes
2473
+
2474
+ - Updated dependencies [1525fff4c]
2475
+ - @pnpm/cafs@1.0.7
2476
+
2477
+ ## 12.0.8
2478
+
2479
+ ### Patch Changes
2480
+
2481
+ - a2ef8084f: Use the same versions of dependencies across the pnpm monorepo.
2482
+ - Updated dependencies [a2ef8084f]
2483
+ - @pnpm/cafs@1.0.6
2484
+
2485
+ ## 12.0.7
2486
+
2487
+ ### Patch Changes
2488
+
2489
+ - Updated dependencies [9a908bc07]
2490
+ - Updated dependencies [9a908bc07]
2491
+ - @pnpm/core-loggers@4.2.0
2492
+
2493
+ ## 12.0.6
2494
+
2495
+ ### Patch Changes
2496
+
2497
+ - Updated dependencies [db17f6f7b]
2498
+ - @pnpm/types@6.2.0
2499
+ - @pnpm/core-loggers@4.1.2
2500
+ - @pnpm/fetcher-base@8.0.2
2501
+ - @pnpm/read-package-json@3.1.3
2502
+ - @pnpm/resolver-base@7.0.3
2503
+ - @pnpm/store-controller-types@8.0.2
2504
+ - @pnpm/cafs@1.0.5
2505
+
2506
+ ## 12.0.5
2507
+
2508
+ ### Patch Changes
2509
+
2510
+ - Updated dependencies [71a8c8ce3]
2511
+ - @pnpm/types@6.1.0
2512
+ - @pnpm/core-loggers@4.1.1
2513
+ - @pnpm/fetcher-base@8.0.1
2514
+ - @pnpm/read-package-json@3.1.2
2515
+ - @pnpm/resolver-base@7.0.2
2516
+ - @pnpm/store-controller-types@8.0.1
2517
+ - @pnpm/cafs@1.0.4
2518
+
2519
+ ## 12.0.4
2520
+
2521
+ ### Patch Changes
2522
+
2523
+ - Updated dependencies [492805ee3]
2524
+ - @pnpm/cafs@1.0.3
2525
+
2526
+ ## 12.0.3
2527
+
2528
+ ### Patch Changes
2529
+
2530
+ - d3ddd023c: Update p-limit to v3.
2531
+ - Updated dependencies [d3ddd023c]
2532
+ - Updated dependencies [2ebb7af33]
2533
+ - @pnpm/cafs@1.0.2
2534
+ - @pnpm/core-loggers@4.1.0
2535
+
2536
+ ## 12.0.2
2537
+
2538
+ ### Patch Changes
2539
+
2540
+ - a203bc138: The temporary file name to which the package index is written should not be longer than the target file name.
2541
+
2542
+ ## 12.0.1
2543
+
2544
+ ### Patch Changes
2545
+
2546
+ - Updated dependencies [bcd4aa1aa]
2547
+ - @pnpm/fetcher-base@8.0.0
2548
+ - @pnpm/cafs@1.0.1
2549
+
2550
+ ## 12.0.0
2551
+
2552
+ ### Major Changes
2553
+
2554
+ - b5f66c0f2: Reduce the number of directories in the virtual store directory. Don't create a subdirectory for the package version. Append the package version to the package name directory.
2555
+ - 9596774f2: Store the package index files in the CAFS to reduce directory nesting.
2556
+ - 16d1ac0fd: `body.cacheByEngine` removed from `PackageResponse`.
2557
+ - da091c711: Remove state from store. The store should not store the information about what projects on the computer use what dependencies. This information was needed for pruning in pnpm v4. Also, without this information, we cannot have the `pnpm store usages` command. So `pnpm store usages` is deprecated.
2558
+ - b6a82072e: Using a content-addressable filesystem for storing packages.
2559
+ - 802d145fc: `getPackageLocation()` removed from store. Remove `inStoreLocation` from the result of `fetchPackage()`.
2560
+ - 471149e66: Change the format of the package index file. Move all the files info into a "files" property.
2561
+
2562
+ ### Minor Changes
2563
+
2564
+ - f516d266c: Executables are saved into a separate directory inside the content-addressable storage.
2565
+ - 42e6490d1: The fetch package to store function does not need the pkgName anymore.
2566
+ - a5febb913: Package request response contains the path to the files index file.
2567
+ - 42e6490d1: When a new package is being added to the store, its manifest is streamed in the memory. So instead of reading the manifest from the filesystem, we can parse the stream from the memory.
2568
+
2569
+ ### Patch Changes
2570
+
2571
+ - a7d20d927: The peer suffix at the end of local tarball dependency paths is not encoded.
2572
+ - 64bae33c4: Update p-queue to v6.4.0.
2573
+ - f93583d52: Use `fs.mkdir` instead of the `make-dir` package.
2574
+ - c207d994f: Update rename-overwrite to v3.
2575
+ - Updated dependencies [9596774f2]
2576
+ - Updated dependencies [16d1ac0fd]
2577
+ - Updated dependencies [f516d266c]
2578
+ - Updated dependencies [7852deea3]
2579
+ - Updated dependencies [da091c711]
2580
+ - Updated dependencies [42e6490d1]
2581
+ - Updated dependencies [a5febb913]
2582
+ - Updated dependencies [b6a82072e]
2583
+ - Updated dependencies [b6a82072e]
2584
+ - Updated dependencies [802d145fc]
2585
+ - Updated dependencies [a5febb913]
2586
+ - Updated dependencies [c207d994f]
2587
+ - Updated dependencies [a5febb913]
2588
+ - Updated dependencies [a5febb913]
2589
+ - Updated dependencies [471149e66]
2590
+ - Updated dependencies [42e6490d1]
2591
+ - @pnpm/cafs@1.0.0
2592
+ - @pnpm/store-controller-types@8.0.0
2593
+ - @pnpm/fetcher-base@7.0.0
2594
+ - @pnpm/types@6.0.0
2595
+ - @pnpm/core-loggers@4.0.2
2596
+ - @pnpm/read-package-json@3.1.1
2597
+ - @pnpm/resolver-base@7.0.1
2598
+
2599
+ ## 12.0.0-alpha.5
2600
+
2601
+ ### Major Changes
2602
+
2603
+ - 16d1ac0fd: `body.cacheByEngine` removed from `PackageResponse`.
2604
+
2605
+ ### Minor Changes
2606
+
2607
+ - a5febb913: Package request response contains the path to the files index file.
2608
+
2609
+ ### Patch Changes
2610
+
2611
+ - a7d20d927: The peer suffix at the end of local tarball dependency paths is not encoded.
2612
+ - Updated dependencies [16d1ac0fd]
2613
+ - Updated dependencies [a5febb913]
2614
+ - Updated dependencies [a5febb913]
2615
+ - Updated dependencies [a5febb913]
2616
+ - Updated dependencies [a5febb913]
2617
+ - @pnpm/store-controller-types@8.0.0-alpha.4
2618
+ - @pnpm/cafs@1.0.0-alpha.5
2619
+
2620
+ ## 12.0.0-alpha.4
2621
+
2622
+ ### Major Changes
2623
+
2624
+ - da091c71: Remove state from store. The store should not store the information about what projects on the computer use what dependencies. This information was needed for pruning in pnpm v4. Also, without this information, we cannot have the `pnpm store usages` command. So `pnpm store usages` is deprecated.
2625
+ - 471149e6: Change the format of the package index file. Move all the files info into a "files" property.
2626
+
2627
+ ### Patch Changes
2628
+
2629
+ - Updated dependencies [da091c71]
2630
+ - Updated dependencies [471149e6]
2631
+ - @pnpm/store-controller-types@8.0.0-alpha.3
2632
+ - @pnpm/types@6.0.0-alpha.0
2633
+ - @pnpm/cafs@1.0.0-alpha.4
2634
+ - @pnpm/core-loggers@4.0.2-alpha.0
2635
+ - @pnpm/fetcher-base@6.0.1-alpha.3
2636
+ - @pnpm/read-package-json@3.1.1-alpha.0
2637
+ - @pnpm/resolver-base@7.0.1-alpha.0
2638
+
2639
+ ## 12.0.0-alpha.3
2640
+
2641
+ ### Major Changes
2642
+
2643
+ - b5f66c0f2: Reduce the number of directories in the virtual store directory. Don't create a subdirectory for the package version. Append the package version to the package name directory.
2644
+ - 9596774f2: Store the package index files in the CAFS to reduce directory nesting.
2645
+
2646
+ ### Patch Changes
2647
+
2648
+ - Updated dependencies [9596774f2]
2649
+ - Updated dependencies [7852deea3]
2650
+ - @pnpm/cafs@1.0.0-alpha.3
2651
+
2652
+ ## 12.0.0-alpha.2
2653
+
2654
+ ### Minor Changes
2655
+
2656
+ - 42e6490d1: The fetch package to store function does not need the pkgName anymore.
2657
+ - 42e6490d1: When a new package is being added to the store, its manifest is streamed in the memory. So instead of reading the manifest from the filesystem, we can parse the stream from the memory.
2658
+
2659
+ ### Patch Changes
2660
+
2661
+ - 64bae33c4: Update p-queue to v6.4.0.
2662
+ - c207d994f: Update rename-overwrite to v3.
2663
+ - Updated dependencies [42e6490d1]
2664
+ - Updated dependencies [c207d994f]
2665
+ - Updated dependencies [42e6490d1]
2666
+ - @pnpm/store-controller-types@8.0.0-alpha.2
2667
+ - @pnpm/cafs@1.0.0-alpha.2
2668
+ - @pnpm/fetcher-base@7.0.0-alpha.2
2669
+
2670
+ ## 12.0.0-alpha.1
2671
+
2672
+ ### Minor Changes
2673
+
2674
+ - 4f62d0383: Executables are saved into a separate directory inside the content-addressable storage.
2675
+
2676
+ ### Patch Changes
2677
+
2678
+ - f93583d52: Use `fs.mkdir` instead of the `make-dir` package.
2679
+ - Updated dependencies [4f62d0383]
2680
+ - @pnpm/cafs@1.0.0-alpha.1
2681
+ - @pnpm/fetcher-base@7.0.0-alpha.1
2682
+ - @pnpm/store-controller-types@8.0.0-alpha.1
2683
+
2684
+ ## 12.0.0-alpha.0
2685
+
2686
+ ### Major Changes
2687
+
2688
+ - 91c4b5954: Using a content-addressable filesystem for storing packages.
2689
+
2690
+ ### Patch Changes
2691
+
2692
+ - Updated dependencies [91c4b5954]
2693
+ - Updated dependencies [91c4b5954]
2694
+ - @pnpm/cafs@1.0.0-alpha.0
2695
+ - @pnpm/fetcher-base@7.0.0-alpha.0
2696
+ - @pnpm/store-controller-types@8.0.0-alpha.0
2697
+
2698
+ ## 11.0.6
2699
+
2700
+ ### Patch Changes
2701
+
2702
+ - 907c63a48: Update symlink-dir to v4.
2703
+ - 907c63a48: Dependencies updated.