@pnpm/installing.package-requester 1102.1.1 → 1102.1.3

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