@pnpm/store.connection-manager 1100.3.4 → 1100.3.6

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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,3952 @@
1
+ # @pnpm/store-connection-manager
2
+
3
+ ## 1100.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - `pnpm add -g`, `pnpm update -g`, `pnpm setup`, and the self-updater no longer fail with `ERR_PNPM_MISSING_TIME` when `trustPolicy: no-downgrade` or `resolutionMode: time-based` is set in the global config [#12883](https://github.com/pnpm/pnpm/issues/12883). The decision to fetch full registry metadata now lives in one place, and the `no-downgrade` trust policy always requests full metadata (matching the self-updater), since the trust evidence it checks is missing from abbreviated metadata even on registries that include the `time` field.
8
+
9
+ - Updated dependencies:
10
+ - @pnpm/cli.meta@1100.0.9
11
+ - @pnpm/config.reader@1101.12.0
12
+ - @pnpm/installing.client@1100.2.14
13
+ - @pnpm/resolving.resolver-base@1100.5.2
14
+ - @pnpm/store.controller@1102.0.5
15
+
16
+ ## 1100.3.5
17
+
18
+ ### Patch Changes
19
+
20
+ - @pnpm/installing.client@1100.2.13
21
+ - @pnpm/store.controller@1102.0.4
22
+ - @pnpm/config.reader@1101.11.2
23
+
24
+ ## 1100.3.4
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [9318a11]
29
+ - Updated dependencies [5a4daec]
30
+ - @pnpm/config.reader@1101.11.1
31
+ - @pnpm/installing.client@1100.2.12
32
+ - @pnpm/store.controller@1102.0.3
33
+
34
+ ## 1100.3.3
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [3425e80]
39
+ - Updated dependencies [806c3ec]
40
+ - Updated dependencies [c121235]
41
+ - Updated dependencies [dcabb78]
42
+ - @pnpm/config.reader@1101.11.0
43
+ - @pnpm/resolving.resolver-base@1100.5.1
44
+ - @pnpm/installing.client@1100.2.11
45
+ - @pnpm/store.controller@1102.0.3
46
+
47
+ ## 1100.3.2
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [bae694f]
52
+ - @pnpm/resolving.resolver-base@1100.5.0
53
+ - @pnpm/installing.client@1100.2.10
54
+ - @pnpm/store.controller@1102.0.2
55
+ - @pnpm/config.reader@1101.10.1
56
+ - @pnpm/store.index@1100.2.1
57
+ - @pnpm/store.path@1100.0.2
58
+
59
+ ## 1100.3.1
60
+
61
+ ### Patch Changes
62
+
63
+ - Updated dependencies [302a2f7]
64
+ - Updated dependencies [0474a9c]
65
+ - @pnpm/config.reader@1101.10.0
66
+ - @pnpm/installing.client@1100.2.9
67
+ - @pnpm/store.controller@1102.0.1
68
+
69
+ ## 1100.3.0
70
+
71
+ ### Minor Changes
72
+
73
+ - 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.
74
+
75
+ ### Patch Changes
76
+
77
+ - a31faa7: Updated dependency ranges. Notably:
78
+
79
+ - `@pnpm/logger` peer dependency range moved to `^1100.0.0`.
80
+ - `msgpackr` 1.11.8 → 2.0.4 (store index files remain byte-compatible in both directions).
81
+ - `open` ^7.4.2 → ^11.0.0, `memoize` ^10 → ^11, `cli-truncate` ^5 → ^6, `pidtree` ^0.6 → ^1.
82
+ - `@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.
83
+
84
+ - Updated dependencies [61810aa]
85
+ - Updated dependencies [681b593]
86
+ - Updated dependencies [a31faa7]
87
+ - @pnpm/config.reader@1101.9.0
88
+ - @pnpm/store.index@1100.2.0
89
+ - @pnpm/store.controller@1102.0.0
90
+ - @pnpm/installing.client@1100.2.8
91
+ - @pnpm/cli.meta@1100.0.8
92
+ - @pnpm/resolving.resolver-base@1100.4.2
93
+
94
+ ## 1100.2.8
95
+
96
+ ### Patch Changes
97
+
98
+ - Updated dependencies [bc9ed78]
99
+ - Updated dependencies [615c669]
100
+ - @pnpm/config.reader@1101.8.0
101
+ - @pnpm/store.controller@1101.0.13
102
+ - @pnpm/installing.client@1100.2.7
103
+
104
+ ## 1100.2.7
105
+
106
+ ### Patch Changes
107
+
108
+ - Updated dependencies [822beb5]
109
+ - Updated dependencies [3537020]
110
+ - Updated dependencies [894ea6a]
111
+ - Updated dependencies [6b5d91a]
112
+ - Updated dependencies [027196b]
113
+ - Updated dependencies [1017c36]
114
+ - @pnpm/config.reader@1101.7.0
115
+ - @pnpm/installing.client@1100.2.6
116
+ - @pnpm/cli.meta@1100.0.7
117
+ - @pnpm/resolving.resolver-base@1100.4.1
118
+ - @pnpm/store.controller@1101.0.12
119
+
120
+ ## 1100.2.6
121
+
122
+ ### Patch Changes
123
+
124
+ - Updated dependencies [a017bf3]
125
+ - Updated dependencies [6d17b66]
126
+ - @pnpm/config.reader@1101.6.0
127
+ - @pnpm/resolving.resolver-base@1100.4.0
128
+ - @pnpm/installing.client@1100.2.5
129
+ - @pnpm/cli.meta@1100.0.6
130
+ - @pnpm/store.controller@1101.0.11
131
+
132
+ ## 1100.2.5
133
+
134
+ ### Patch Changes
135
+
136
+ - Updated dependencies [a39a83d]
137
+ - @pnpm/config.reader@1101.5.0
138
+ - @pnpm/installing.client@1100.2.4
139
+ - @pnpm/store.controller@1101.0.10
140
+
141
+ ## 1100.2.4
142
+
143
+ ### Patch Changes
144
+
145
+ - Updated dependencies [a23956e]
146
+ - Updated dependencies [35d2355]
147
+ - @pnpm/config.reader@1101.4.1
148
+ - @pnpm/installing.client@1100.2.3
149
+ - @pnpm/cli.meta@1100.0.5
150
+ - @pnpm/resolving.resolver-base@1100.3.1
151
+ - @pnpm/store.controller@1101.0.9
152
+
153
+ ## 1100.2.3
154
+
155
+ ### Patch Changes
156
+
157
+ - Updated dependencies [3b62f9d]
158
+ - Updated dependencies [212315d]
159
+ - @pnpm/config.reader@1101.4.0
160
+ - @pnpm/installing.client@1100.2.2
161
+ - @pnpm/store.controller@1101.0.8
162
+
163
+ ## 1100.2.2
164
+
165
+ ### Patch Changes
166
+
167
+ - @pnpm/installing.client@1100.2.1
168
+ - @pnpm/store.controller@1101.0.8
169
+
170
+ ## 1100.2.1
171
+
172
+ ### Patch Changes
173
+
174
+ - Updated dependencies [3687b0e]
175
+ - Updated dependencies [ced20cb]
176
+ - Updated dependencies [d1b340f]
177
+ - Updated dependencies [1627943]
178
+ - @pnpm/config.reader@1101.3.3
179
+ - @pnpm/installing.client@1100.2.0
180
+ - @pnpm/resolving.resolver-base@1100.3.0
181
+ - @pnpm/store.controller@1101.0.8
182
+ - @pnpm/cli.meta@1100.0.4
183
+
184
+ ## 1100.2.0
185
+
186
+ ### Minor Changes
187
+
188
+ - 4195766: Tightened the `minimumReleaseAge` story so the bypass becomes explicit on disk instead of silent, and removed the discover-by-loop dance for strict-mode users:
189
+
190
+ 1. Fresh resolutions in loose mode (`minimumReleaseAgeStrict: false`) that fall back to a version newer than the cutoff auto-collect the picked `name@version` into the workspace manifest's `minimumReleaseAgeExclude`. A single info message lists the additions; entries already on the list are left alone.
191
+ 2. The post-resolution lockfile verifier introduced in #11583 now runs in loose mode too — every accepted-immature pin must be on `minimumReleaseAgeExclude`, just like strict mode requires. A lockfile produced under a weaker (or absent) policy that still has immature entries is rejected the same way strict mode would reject it.
192
+ 3. **Strict mode (interactive)** no longer aborts on the first immature pick. The resolver gathers every immature direct _and_ transitive in one pass; before peer-dependency resolution runs, pnpm prompts the user with the full list and asks whether to add them all to `minimumReleaseAgeExclude` and proceed. Approve → install continues and the workspace manifest is written at the end. Decline → resolution aborts before the lockfile or package.json is touched (tarballs already in the store stay, since the store is idempotent). This closes the [#10488](https://github.com/pnpm/pnpm/issues/10488) loop where security bumps to packages with platform-specific transitives (e.g. `next` + the `@next/swc-*` shims) made users re-run `pnpm add` once per transitive.
193
+ 4. **Strict mode (non-interactive / CI)** now aborts with the full immature set in the error message instead of the first pick. The resolver always collects every immature direct + transitive; the install command then throws `ERR_PNPM_NO_MATURE_MATCHING_VERSION` listing each entry's `name@version` and publish time. Deterministic CI behavior is preserved (same exit code, same error code), but the error pinpoints every offending entry instead of forcing the discover-by-loop dance. The expected workflow is interactive approval locally → the lockfile + workspace manifest get committed → CI runs cleanly against the populated exclude list.
194
+
195
+ 5. **The lockfile verifier now also covers `trustPolicy: 'no-downgrade'`.** The same post-resolution gate that re-checks `minimumReleaseAge` on lockfile entries now re-runs `failIfTrustDowngraded` for every npm-registry entry whose name isn't on `trustPolicyExclude`. The two checks share a single full-metadata fetch per package, so the extra coverage doesn't cost an extra round trip when both policies are active. Resolver-time trust checks still run as before — this just closes the gap when an entry bypasses resolution (peek path, `--frozen-lockfile`, restored CI cache).
196
+
197
+ Pacquet parity: not ported — pacquet's `minimumReleaseAge` policy is itself only stubbed today (see `pnpm/crates/package-manager/src/version_policy.rs`). The auto-exclude, loose-mode verifier, prompt, and the new trust-policy verifier check will travel with the broader policy port whenever that happens.
198
+
199
+ - 31538bf: Restructured the `minimumReleaseAge` lockfile revalidation gate around a generic `ResolutionVerifier` interface. Each resolver may now export a sibling verifier factory (today: `createNpmResolutionVerifier`) that re-checks an already-resolved lockfile entry against its policies; the resolver chain returns the verifier list as `resolutionVerifiers` and the install side fans out across it. A `ResolutionVerifier` carries `verify` plus `policy` and `canTrustPastCheck` — the cache contract that lets repeat installs against an unchanged lockfile skip the per-package registry round trip entirely.
200
+
201
+ Verification results are memoized in JSON Lines at `<cacheDir>/lockfile-verified.jsonl`: a stat-only fast path matches on lockfile size, mtime, and inode, falling back to a content hash when those drift (typical after a CI checkout). Every active verifier's policy contribution is merged into a single `policy` bag on the record; the gate runs in full whenever the lockfile changes, any verifier rejects the cached policy, or no record exists [#11687](https://github.com/pnpm/pnpm/issues/11687).
202
+
203
+ ### Patch Changes
204
+
205
+ - Updated dependencies [4195766]
206
+ - Updated dependencies [31538bf]
207
+ - Updated dependencies [020ac45]
208
+ - Updated dependencies [d3f8408]
209
+ - Updated dependencies [a62f959]
210
+ - Updated dependencies [ba2c884]
211
+ - Updated dependencies [8df408c]
212
+ - @pnpm/resolving.resolver-base@1100.2.0
213
+ - @pnpm/installing.client@1100.1.0
214
+ - @pnpm/config.reader@1101.3.2
215
+ - @pnpm/store.controller@1101.0.7
216
+
217
+ ## 1100.1.2
218
+
219
+ ### Patch Changes
220
+
221
+ - @pnpm/config.reader@1101.3.1
222
+ - @pnpm/installing.client@1100.0.15
223
+ - @pnpm/store.controller@1101.0.6
224
+
225
+ ## 1100.1.1
226
+
227
+ ### Patch Changes
228
+
229
+ - @pnpm/installing.client@1100.0.14
230
+ - @pnpm/store.controller@1101.0.5
231
+
232
+ ## 1100.1.0
233
+
234
+ ### Minor Changes
235
+
236
+ - b61e268: Added support for installing packages from the [GitHub Packages npm registry](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-npm-registry) via a built-in `gh:` prefix (e.g. `pnpm add gh:@acme/private`), and, more broadly, for arbitrary named registries in the style of [vlt's named-registry aliases](https://docs.vlt.sh/cli/registries). Authentication is picked up from the existing per-URL `.npmrc` entries (e.g. `//npm.pkg.github.com/:_authToken=...`), so no separate auth mechanism is required.
237
+
238
+ Additional aliases — or an override for the built-in `gh` alias, for GitHub Enterprise Server — can be configured under `namedRegistries` in `pnpm-workspace.yaml`:
239
+
240
+ ```yaml
241
+ namedRegistries:
242
+ gh: https://npm.pkg.github.example.com/
243
+ work: https://npm.work.example.com/
244
+ ```
245
+
246
+ With this, `work:@corp/lib@^2.0.0` resolves against `https://npm.work.example.com/`. [#8941](https://github.com/pnpm/pnpm/issues/8941).
247
+
248
+ ### Patch Changes
249
+
250
+ - Updated dependencies [b61e268]
251
+ - Updated dependencies [e1e29c1]
252
+ - @pnpm/config.reader@1101.3.0
253
+ - @pnpm/installing.client@1100.0.13
254
+ - @pnpm/cli.meta@1100.0.3
255
+ - @pnpm/store.controller@1101.0.5
256
+
257
+ ## 1100.0.13
258
+
259
+ ### Patch Changes
260
+
261
+ - Updated dependencies [0c67cb5]
262
+ - Updated dependencies [e9e876c]
263
+ - @pnpm/store.index@1100.1.0
264
+ - @pnpm/config.reader@1101.2.2
265
+ - @pnpm/installing.client@1100.0.12
266
+ - @pnpm/store.controller@1101.0.4
267
+
268
+ ## 1100.0.12
269
+
270
+ ### Patch Changes
271
+
272
+ - @pnpm/installing.client@1100.0.11
273
+ - @pnpm/store.controller@1101.0.3
274
+
275
+ ## 1100.0.11
276
+
277
+ ### Patch Changes
278
+
279
+ - Updated dependencies [707a879]
280
+ - @pnpm/config.reader@1101.2.1
281
+ - @pnpm/installing.client@1100.0.10
282
+ - @pnpm/store.controller@1101.0.3
283
+
284
+ ## 1100.0.10
285
+
286
+ ### Patch Changes
287
+
288
+ - Updated dependencies [8fdd9a9]
289
+ - Updated dependencies [5f34a8d]
290
+ - Updated dependencies [c969392]
291
+ - Updated dependencies [817b1b4]
292
+ - Updated dependencies [c969392]
293
+ - Updated dependencies [2de318b]
294
+ - @pnpm/config.reader@1101.2.0
295
+ - @pnpm/installing.client@1100.0.9
296
+ - @pnpm/store.controller@1101.0.2
297
+
298
+ ## 1100.0.9
299
+
300
+ ### Patch Changes
301
+
302
+ - Updated dependencies [42a8f29]
303
+ - @pnpm/config.reader@1101.1.4
304
+ - @pnpm/installing.client@1100.0.8
305
+ - @pnpm/store.controller@1101.0.2
306
+
307
+ ## 1100.0.8
308
+
309
+ ### Patch Changes
310
+
311
+ - 184ce26: Fix the package name in README.md.
312
+ - Updated dependencies [184ce26]
313
+ - @pnpm/installing.client@1100.0.7
314
+ - @pnpm/store.controller@1101.0.2
315
+ - @pnpm/config.reader@1101.1.3
316
+ - @pnpm/store.path@1100.0.1
317
+ - @pnpm/cli.meta@1100.0.2
318
+
319
+ ## 1100.0.7
320
+
321
+ ### Patch Changes
322
+
323
+ - @pnpm/store.controller@1101.0.1
324
+
325
+ ## 1100.0.6
326
+
327
+ ### Patch Changes
328
+
329
+ - Updated dependencies [0fbcf74]
330
+ - @pnpm/config.reader@1101.1.2
331
+ - @pnpm/installing.client@1100.0.6
332
+ - @pnpm/store.controller@1101.0.0
333
+
334
+ ## 1100.0.5
335
+
336
+ ### Patch Changes
337
+
338
+ - @pnpm/installing.client@1100.0.5
339
+ - @pnpm/store.controller@1101.0.0
340
+
341
+ ## 1100.0.4
342
+
343
+ ### Patch Changes
344
+
345
+ - @pnpm/installing.client@1100.0.4
346
+ - @pnpm/store.controller@1101.0.0
347
+ - @pnpm/config.reader@1101.1.1
348
+
349
+ ## 1100.0.3
350
+
351
+ ### Patch Changes
352
+
353
+ - 9e0833c: Added a new setting `minimumReleaseAgeIgnoreMissingTime`, which is `true` by default. When enabled, pnpm skips the `minimumReleaseAge` maturity check if the registry metadata does not include the `time` field. Set to `false` to fail resolution instead.
354
+ - Updated dependencies [7d25bc1]
355
+ - Updated dependencies [9e0833c]
356
+ - @pnpm/config.reader@1101.1.0
357
+ - @pnpm/installing.client@1100.0.3
358
+ - @pnpm/store.controller@1100.0.2
359
+
360
+ ## 1100.0.2
361
+
362
+ ### Patch Changes
363
+
364
+ - Updated dependencies [cee550a]
365
+ - Updated dependencies [4ab3d9b]
366
+ - Updated dependencies [9af708a]
367
+ - Updated dependencies [ea2a7fb]
368
+ - Updated dependencies [ff7733c]
369
+ - @pnpm/config.reader@1101.0.0
370
+ - @pnpm/installing.client@1100.0.2
371
+ - @pnpm/store.controller@1100.0.1
372
+
373
+ ## 1100.0.1
374
+
375
+ ### Patch Changes
376
+
377
+ - @pnpm/cli.meta@1100.0.1
378
+ - @pnpm/config.reader@1100.0.1
379
+ - @pnpm/installing.client@1100.0.1
380
+ - @pnpm/store.controller@1100.0.1
381
+
382
+ ## 1003.0.0
383
+
384
+ ### Major Changes
385
+
386
+ - 491a84f: This package is now pure ESM.
387
+ - 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
388
+
389
+ ### Minor Changes
390
+
391
+ - ac944ef: Added a new setting `minimumReleaseAgeStrict` that is `false` by default. When disabled (the default), pnpm falls back to versions that don't meet the `minimumReleaseAge` constraint if no mature versions satisfy the range being resolved. Set to `true` to fail installation instead.
392
+ - 96704a1: Renamed `rawConfig` to `authConfig` on the `Config` interface. This field now only contains auth/registry data from `.npmrc` files. Non-auth settings are no longer written to it.
393
+
394
+ Added `nodeDownloadMirrors` setting to configure custom Node.js download mirrors in `pnpm-workspace.yaml`:
395
+
396
+ ```yaml
397
+ nodeDownloadMirrors:
398
+ release: https://my-mirror.example.com/download/release/
399
+ nightly: https://my-mirror.example.com/download/nightly/
400
+ ```
401
+
402
+ Replaced `rawConfig: object` with `userAgent?: string` in lifecycle hook options. Removed unused `rawConfig` from fetcher and prepare-package options.
403
+
404
+ Removed support for the npm `init-module` setting. Custom init scripts via `.pnpm-init.js` are no longer executed by `pnpm init`.
405
+
406
+ - 10bc391: Added a new setting: `trustPolicy`.
407
+ - 38b8e35: Support for custom resolvers and fetchers.
408
+
409
+ ### Patch Changes
410
+
411
+ - Updated dependencies [7730a7f]
412
+ - Updated dependencies [ae8b816]
413
+ - Updated dependencies [facdd71]
414
+ - Updated dependencies [e2e0a32]
415
+ - Updated dependencies [3c72b6b]
416
+ - Updated dependencies [9f5c0e3]
417
+ - Updated dependencies [76718b3]
418
+ - Updated dependencies [5a0ed1d]
419
+ - Updated dependencies [90bd3c3]
420
+ - Updated dependencies [1cc61e8]
421
+ - Updated dependencies [606f53e]
422
+ - Updated dependencies [c7203b9]
423
+ - Updated dependencies [bb17724]
424
+ - Updated dependencies [da2429d]
425
+ - Updated dependencies [1cc61e8]
426
+ - Updated dependencies [491a84f]
427
+ - Updated dependencies [f0ae1b9]
428
+ - Updated dependencies [7fab2a2]
429
+ - Updated dependencies [cb367b9]
430
+ - Updated dependencies [543c7e4]
431
+ - Updated dependencies [9eddabb]
432
+ - Updated dependencies [075aa99]
433
+ - Updated dependencies [ae43ac7]
434
+ - Updated dependencies [ccec8e7]
435
+ - Updated dependencies [4158906]
436
+ - Updated dependencies [ac944ef]
437
+ - Updated dependencies [7d2fd48]
438
+ - Updated dependencies [9eddabb]
439
+ - Updated dependencies [cc7c0d2]
440
+ - Updated dependencies [d5d4eed]
441
+ - Updated dependencies [095f659]
442
+ - Updated dependencies [96704a1]
443
+ - Updated dependencies [cb367b9]
444
+ - Updated dependencies [7b1c189]
445
+ - Updated dependencies [51b04c3]
446
+ - Updated dependencies [d01b81f]
447
+ - Updated dependencies [3ed41f4]
448
+ - Updated dependencies [71de2b3]
449
+ - Updated dependencies [10bc391]
450
+ - Updated dependencies [38b8e35]
451
+ - Updated dependencies [b7f0f21]
452
+ - Updated dependencies [2df8b71]
453
+ - Updated dependencies [2f98ec8]
454
+ - Updated dependencies [ed1a7fe]
455
+ - Updated dependencies [cc7c0d2]
456
+ - Updated dependencies [5bf7768]
457
+ - Updated dependencies [ae43ac7]
458
+ - Updated dependencies [09bb8db]
459
+ - Updated dependencies [a5fdbf9]
460
+ - Updated dependencies [9d3f00b]
461
+ - Updated dependencies [9587dac]
462
+ - Updated dependencies [09a999a]
463
+ - Updated dependencies [559f903]
464
+ - Updated dependencies [3574905]
465
+ - @pnpm/config.reader@1005.0.0
466
+ - @pnpm/store.controller@1005.0.0
467
+ - @pnpm/installing.client@1002.0.0
468
+ - @pnpm/store.path@1001.0.0
469
+ - @pnpm/cli.meta@1001.0.0
470
+ - @pnpm/store.index@1000.0.0
471
+
472
+ ## 1002.2.4
473
+
474
+ ### Patch Changes
475
+
476
+ - @pnpm/client@1001.1.4
477
+ - @pnpm/package-store@1004.0.0
478
+ - @pnpm/server@1001.0.11
479
+
480
+ ## 1002.2.3
481
+
482
+ ### Patch Changes
483
+
484
+ - @pnpm/package-store@1004.0.0
485
+ - @pnpm/cli-meta@1000.0.11
486
+ - @pnpm/config@1004.4.2
487
+ - @pnpm/client@1001.1.3
488
+ - @pnpm/server@1001.0.11
489
+
490
+ ## 1002.2.2
491
+
492
+ ### Patch Changes
493
+
494
+ - Updated dependencies [9865167]
495
+ - @pnpm/config@1004.4.1
496
+ - @pnpm/client@1001.1.2
497
+ - @pnpm/package-store@1003.0.0
498
+ - @pnpm/server@1001.0.10
499
+
500
+ ## 1002.2.1
501
+
502
+ ### Patch Changes
503
+
504
+ - @pnpm/package-store@1003.0.0
505
+ - @pnpm/client@1001.1.1
506
+ - @pnpm/server@1001.0.10
507
+
508
+ ## 1002.2.0
509
+
510
+ ### Minor Changes
511
+
512
+ - fb4da0c: Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.
513
+
514
+ Added configuration options for warning thresholds: `fetchWarnTimeoutMs` and `fetchMinSpeedKiBps`.
515
+ Warning messages are displayed when requests exceed time thresholds or fall below speed minimums
516
+
517
+ Related PR: [#10025](https://github.com/pnpm/pnpm/pull/10025).
518
+
519
+ ### Patch Changes
520
+
521
+ - Updated dependencies [fb4da0c]
522
+ - @pnpm/client@1001.1.0
523
+ - @pnpm/config@1004.4.0
524
+ - @pnpm/package-store@1002.0.12
525
+ - @pnpm/server@1001.0.10
526
+
527
+ ## 1002.1.3
528
+
529
+ ### Patch Changes
530
+
531
+ - @pnpm/client@1001.0.7
532
+ - @pnpm/package-store@1002.0.11
533
+ - @pnpm/server@1001.0.10
534
+
535
+ ## 1002.1.2
536
+
537
+ ### Patch Changes
538
+
539
+ - @pnpm/client@1001.0.6
540
+ - @pnpm/package-store@1002.0.11
541
+ - @pnpm/server@1001.0.10
542
+
543
+ ## 1002.1.1
544
+
545
+ ### Patch Changes
546
+
547
+ - @pnpm/config@1004.3.1
548
+ - @pnpm/error@1000.0.5
549
+ - @pnpm/store-path@1000.0.5
550
+ - @pnpm/package-store@1002.0.11
551
+ - @pnpm/client@1001.0.5
552
+ - @pnpm/server@1001.0.10
553
+
554
+ ## 1002.1.0
555
+
556
+ ### Minor Changes
557
+
558
+ - 38e2599: There have been several incidents recently where popular packages were successfully attacked. To reduce the risk of installing a compromised version, we are introducing a new setting that delays the installation of newly released dependencies. In most cases, such attacks are discovered quickly and the malicious versions are removed from the registry within an hour.
559
+
560
+ The new setting is called `minimumReleaseAge`. It specifies the number of minutes that must pass after a version is published before pnpm will install it. For example, setting `minimumReleaseAge: 1440` ensures that only packages released at least one day ago can be installed.
561
+
562
+ If you set `minimumReleaseAge` but need to disable this restriction for certain dependencies, you can list them under the `minimumReleaseAgeExclude` setting. For instance, with the following configuration pnpm will always install the latest version of webpack, regardless of its release time:
563
+
564
+ ```yaml
565
+ minimumReleaseAgeExclude:
566
+ - webpack
567
+ ```
568
+
569
+ Related issue: [#9921](https://github.com/pnpm/pnpm/issues/9921).
570
+
571
+ ### Patch Changes
572
+
573
+ - Updated dependencies [38e2599]
574
+ - Updated dependencies [e792927]
575
+ - @pnpm/config@1004.3.0
576
+ - @pnpm/cli-meta@1000.0.10
577
+ - @pnpm/client@1001.0.4
578
+ - @pnpm/package-store@1002.0.10
579
+ - @pnpm/server@1001.0.10
580
+
581
+ ## 1002.0.11
582
+
583
+ ### Patch Changes
584
+
585
+ - @pnpm/client@1001.0.3
586
+ - @pnpm/package-store@1002.0.9
587
+ - @pnpm/server@1001.0.9
588
+
589
+ ## 1002.0.10
590
+
591
+ ### Patch Changes
592
+
593
+ - @pnpm/client@1001.0.2
594
+ - @pnpm/server@1001.0.9
595
+ - @pnpm/package-store@1002.0.9
596
+
597
+ ## 1002.0.9
598
+
599
+ ### Patch Changes
600
+
601
+ - @pnpm/client@1001.0.1
602
+ - @pnpm/package-store@1002.0.9
603
+ - @pnpm/server@1001.0.8
604
+
605
+ ## 1002.0.8
606
+
607
+ ### Patch Changes
608
+
609
+ - Updated dependencies [d1edf73]
610
+ - Updated dependencies [d1edf73]
611
+ - Updated dependencies [f91922c]
612
+ - @pnpm/client@1001.0.0
613
+ - @pnpm/config@1004.2.1
614
+ - @pnpm/error@1000.0.4
615
+ - @pnpm/store-path@1000.0.4
616
+ - @pnpm/package-store@1002.0.9
617
+ - @pnpm/server@1001.0.8
618
+
619
+ ## 1002.0.7
620
+
621
+ ### Patch Changes
622
+
623
+ - Updated dependencies [6f7ac0f]
624
+ - Updated dependencies [1a07b8f]
625
+ - @pnpm/config@1004.2.0
626
+ - @pnpm/client@1000.1.0
627
+ - @pnpm/cli-meta@1000.0.9
628
+ - @pnpm/package-store@1002.0.8
629
+ - @pnpm/server@1001.0.7
630
+ - @pnpm/error@1000.0.3
631
+ - @pnpm/store-path@1000.0.3
632
+
633
+ ## 1002.0.6
634
+
635
+ ### Patch Changes
636
+
637
+ - Updated dependencies [623da6f]
638
+ - Updated dependencies [cf630a8]
639
+ - @pnpm/config@1004.1.0
640
+ - @pnpm/package-store@1002.0.7
641
+ - @pnpm/client@1000.0.21
642
+ - @pnpm/server@1001.0.6
643
+
644
+ ## 1002.0.5
645
+
646
+ ### Patch Changes
647
+
648
+ - Updated dependencies [5a5d280]
649
+ - @pnpm/server@1001.0.6
650
+ - @pnpm/package-store@1002.0.6
651
+
652
+ ## 1002.0.4
653
+
654
+ ### Patch Changes
655
+
656
+ - Updated dependencies [b217bbb]
657
+ - Updated dependencies [b0ead51]
658
+ - Updated dependencies [c8341cc]
659
+ - Updated dependencies [b0ead51]
660
+ - Updated dependencies [046af72]
661
+ - @pnpm/config@1004.0.0
662
+ - @pnpm/client@1000.0.20
663
+ - @pnpm/package-store@1002.0.5
664
+ - @pnpm/server@1001.0.5
665
+
666
+ ## 1002.0.3
667
+
668
+ ### Patch Changes
669
+
670
+ - Updated dependencies [8d175c0]
671
+ - @pnpm/config@1003.1.1
672
+ - @pnpm/package-store@1002.0.4
673
+ - @pnpm/server@1001.0.4
674
+ - @pnpm/client@1000.0.19
675
+
676
+ ## 1002.0.2
677
+
678
+ ### Patch Changes
679
+
680
+ - 09cf46f: Update `@pnpm/logger` in peer dependencies.
681
+ - Updated dependencies [b282bd1]
682
+ - Updated dependencies [fdb1d98]
683
+ - Updated dependencies [e4af08c]
684
+ - Updated dependencies [09cf46f]
685
+ - Updated dependencies [36d1448]
686
+ - Updated dependencies [9362b5f]
687
+ - Updated dependencies [6cf010c]
688
+ - @pnpm/config@1003.1.0
689
+ - @pnpm/package-store@1002.0.3
690
+ - @pnpm/server@1001.0.3
691
+ - @pnpm/client@1000.0.18
692
+ - @pnpm/cli-meta@1000.0.8
693
+
694
+ ## 1002.0.1
695
+
696
+ ### Patch Changes
697
+
698
+ - @pnpm/config@1003.0.1
699
+ - @pnpm/client@1000.0.17
700
+ - @pnpm/package-store@1002.0.2
701
+ - @pnpm/server@1001.0.2
702
+
703
+ ## 1002.0.0
704
+
705
+ ### Major Changes
706
+
707
+ - 5b73df1: Renamed `normalizedPref` to `specifiers`.
708
+
709
+ ### Patch Changes
710
+
711
+ - Updated dependencies [56bb69b]
712
+ - Updated dependencies [8a9f3a4]
713
+ - Updated dependencies [9c3dd03]
714
+ - @pnpm/config@1003.0.0
715
+ - @pnpm/logger@1001.0.0
716
+ - @pnpm/package-store@1002.0.2
717
+ - @pnpm/server@1001.0.2
718
+ - @pnpm/client@1000.0.16
719
+ - @pnpm/cli-meta@1000.0.7
720
+
721
+ ## 1001.0.1
722
+
723
+ ### Patch Changes
724
+
725
+ - @pnpm/client@1000.0.15
726
+ - @pnpm/package-store@1002.0.1
727
+ - @pnpm/server@1001.0.1
728
+ - @pnpm/config@1002.7.2
729
+
730
+ ## 1001.0.0
731
+
732
+ ### Major Changes
733
+
734
+ - 72cff38: The resolving function now takes a `registries` object, so it finds the required registry itself instead of receiving it from package requester.
735
+
736
+ ### Patch Changes
737
+
738
+ - Updated dependencies [72cff38]
739
+ - Updated dependencies [5679712]
740
+ - Updated dependencies [01f2bcf]
741
+ - @pnpm/package-store@1002.0.0
742
+ - @pnpm/server@1001.0.0
743
+ - @pnpm/config@1002.7.1
744
+ - @pnpm/cli-meta@1000.0.6
745
+ - @pnpm/client@1000.0.14
746
+
747
+ ## 1000.0.19
748
+
749
+ ### Patch Changes
750
+
751
+ - Updated dependencies [e57f1df]
752
+ - Updated dependencies [a54d3ad]
753
+ - @pnpm/config@1002.7.0
754
+ - @pnpm/package-store@1001.1.0
755
+ - @pnpm/server@1000.0.9
756
+
757
+ ## 1000.0.18
758
+
759
+ ### Patch Changes
760
+
761
+ - Updated dependencies [9bcca9f]
762
+ - Updated dependencies [5b35dff]
763
+ - Updated dependencies [9bcca9f]
764
+ - Updated dependencies [5f7be64]
765
+ - Updated dependencies [5f7be64]
766
+ - @pnpm/config@1002.6.0
767
+ - @pnpm/cli-meta@1000.0.5
768
+ - @pnpm/client@1000.0.13
769
+ - @pnpm/package-store@1001.0.2
770
+ - @pnpm/server@1000.0.9
771
+
772
+ ## 1000.0.17
773
+
774
+ ### Patch Changes
775
+
776
+ - Updated dependencies [936430a]
777
+ - @pnpm/config@1002.5.4
778
+ - @pnpm/client@1000.0.12
779
+ - @pnpm/package-store@1001.0.1
780
+ - @pnpm/server@1000.0.8
781
+
782
+ ## 1000.0.16
783
+
784
+ ### Patch Changes
785
+
786
+ - @pnpm/package-store@1001.0.0
787
+ - @pnpm/client@1000.0.11
788
+ - @pnpm/server@1000.0.7
789
+
790
+ ## 1000.0.15
791
+
792
+ ### Patch Changes
793
+
794
+ - Updated dependencies [6e4459c]
795
+ - @pnpm/config@1002.5.3
796
+
797
+ ## 1000.0.14
798
+
799
+ ### Patch Changes
800
+
801
+ - @pnpm/package-store@1000.0.8
802
+ - @pnpm/config@1002.5.2
803
+ - @pnpm/client@1000.0.10
804
+ - @pnpm/server@1000.0.7
805
+
806
+ ## 1000.0.13
807
+
808
+ ### Patch Changes
809
+
810
+ - Updated dependencies [c3aa4d8]
811
+ - @pnpm/config@1002.5.1
812
+ - @pnpm/client@1000.0.9
813
+ - @pnpm/package-store@1000.0.7
814
+ - @pnpm/server@1000.0.7
815
+
816
+ ## 1000.0.12
817
+
818
+ ### Patch Changes
819
+
820
+ - Updated dependencies [d965748]
821
+ - @pnpm/config@1002.5.0
822
+ - @pnpm/cli-meta@1000.0.4
823
+ - @pnpm/client@1000.0.8
824
+ - @pnpm/package-store@1000.0.7
825
+ - @pnpm/server@1000.0.7
826
+
827
+ ## 1000.0.11
828
+
829
+ ### Patch Changes
830
+
831
+ - Updated dependencies [1c2eb8c]
832
+ - @pnpm/config@1002.4.1
833
+
834
+ ## 1000.0.10
835
+
836
+ ### Patch Changes
837
+
838
+ - Updated dependencies [8fcc221]
839
+ - Updated dependencies [e32b1a2]
840
+ - @pnpm/config@1002.4.0
841
+ - @pnpm/cli-meta@1000.0.3
842
+ - @pnpm/client@1000.0.7
843
+ - @pnpm/package-store@1000.0.6
844
+ - @pnpm/server@1000.0.6
845
+
846
+ ## 1000.0.9
847
+
848
+ ### Patch Changes
849
+
850
+ - Updated dependencies [fee898f]
851
+ - @pnpm/config@1002.3.1
852
+
853
+ ## 1000.0.8
854
+
855
+ ### Patch Changes
856
+
857
+ - Updated dependencies [f6006f2]
858
+ - @pnpm/config@1002.3.0
859
+
860
+ ## 1000.0.7
861
+
862
+ ### Patch Changes
863
+
864
+ - @pnpm/config@1002.2.1
865
+ - @pnpm/client@1000.0.6
866
+ - @pnpm/package-store@1000.0.5
867
+ - @pnpm/server@1000.0.5
868
+
869
+ ## 1000.0.6
870
+
871
+ ### Patch Changes
872
+
873
+ - Updated dependencies [f3ffaed]
874
+ - Updated dependencies [c96eb2b]
875
+ - @pnpm/config@1002.2.0
876
+ - @pnpm/error@1000.0.2
877
+ - @pnpm/store-path@1000.0.2
878
+ - @pnpm/cli-meta@1000.0.2
879
+ - @pnpm/client@1000.0.5
880
+ - @pnpm/package-store@1000.0.5
881
+ - @pnpm/server@1000.0.5
882
+
883
+ ## 1000.0.5
884
+
885
+ ### Patch Changes
886
+
887
+ - @pnpm/config@1002.1.2
888
+ - @pnpm/package-store@1000.0.4
889
+ - @pnpm/server@1000.0.4
890
+ - @pnpm/client@1000.0.4
891
+
892
+ ## 1000.0.4
893
+
894
+ ### Patch Changes
895
+
896
+ - Updated dependencies [1f5169f]
897
+ - @pnpm/config@1002.1.1
898
+ - @pnpm/cli-meta@1000.0.1
899
+ - @pnpm/client@1000.0.3
900
+ - @pnpm/package-store@1000.0.3
901
+ - @pnpm/server@1000.0.3
902
+
903
+ ## 1000.0.3
904
+
905
+ ### Patch Changes
906
+
907
+ - Updated dependencies [f90a94b]
908
+ - Updated dependencies [f891288]
909
+ - @pnpm/config@1002.1.0
910
+
911
+ ## 1000.0.2
912
+
913
+ ### Patch Changes
914
+
915
+ - Updated dependencies [878ea8c]
916
+ - @pnpm/config@1002.0.0
917
+ - @pnpm/package-store@1000.0.2
918
+ - @pnpm/client@1000.0.2
919
+ - @pnpm/server@1000.0.2
920
+
921
+ ## 1000.0.1
922
+
923
+ ### Patch Changes
924
+
925
+ - Updated dependencies [ac5b9d8]
926
+ - Updated dependencies [6483b64]
927
+ - @pnpm/config@1001.0.0
928
+ - @pnpm/error@1000.0.1
929
+ - @pnpm/store-path@1000.0.1
930
+ - @pnpm/package-store@1000.0.1
931
+ - @pnpm/server@1000.0.1
932
+ - @pnpm/client@1000.0.1
933
+
934
+ ## 8.4.3
935
+
936
+ ### Patch Changes
937
+
938
+ - Updated dependencies [477e0c1]
939
+ - Updated dependencies [dfcf034]
940
+ - Updated dependencies [592e2ef]
941
+ - Updated dependencies [19d5b51]
942
+ - Updated dependencies [d433cb9]
943
+ - Updated dependencies [1dbc56a]
944
+ - Updated dependencies [e9985b6]
945
+ - @pnpm/config@22.0.0
946
+ - @pnpm/package-store@21.0.0
947
+ - @pnpm/error@6.0.3
948
+ - @pnpm/store-path@9.0.3
949
+ - @pnpm/server@18.2.6
950
+ - @pnpm/client@11.1.13
951
+
952
+ ## 8.4.2
953
+
954
+ ### Patch Changes
955
+
956
+ - @pnpm/package-store@20.4.2
957
+ - @pnpm/client@11.1.12
958
+ - @pnpm/server@18.2.6
959
+ - @pnpm/config@21.8.5
960
+
961
+ ## 8.4.1
962
+
963
+ ### Patch Changes
964
+
965
+ - @pnpm/package-store@20.4.1
966
+ - @pnpm/server@18.2.6
967
+ - @pnpm/client@11.1.11
968
+ - @pnpm/config@21.8.4
969
+
970
+ ## 8.4.0
971
+
972
+ ### Minor Changes
973
+
974
+ - 83681da: Packages with `libc` that differ from `pnpm.supportedArchitectures.libc` are not downloaded [#7362](https://github.com/pnpm/pnpm/issues/7362).
975
+
976
+ ### Patch Changes
977
+
978
+ - Updated dependencies [83681da]
979
+ - Updated dependencies [25d37f5]
980
+ - @pnpm/package-store@20.4.0
981
+ - @pnpm/config@21.8.4
982
+ - @pnpm/error@6.0.2
983
+ - @pnpm/server@18.2.6
984
+ - @pnpm/store-path@9.0.2
985
+ - @pnpm/client@11.1.10
986
+
987
+ ## 8.3.10
988
+
989
+ ### Patch Changes
990
+
991
+ - @pnpm/cli-meta@6.2.2
992
+ - @pnpm/config@21.8.3
993
+ - @pnpm/client@11.1.9
994
+ - @pnpm/package-store@20.3.7
995
+ - @pnpm/server@18.2.6
996
+
997
+ ## 8.3.9
998
+
999
+ ### Patch Changes
1000
+
1001
+ - @pnpm/cli-meta@6.2.1
1002
+ - @pnpm/config@21.8.2
1003
+ - @pnpm/client@11.1.8
1004
+ - @pnpm/package-store@20.3.6
1005
+ - @pnpm/server@18.2.5
1006
+
1007
+ ## 8.3.8
1008
+
1009
+ ### Patch Changes
1010
+
1011
+ - Updated dependencies [eb8bf2a]
1012
+ - @pnpm/cli-meta@6.2.0
1013
+ - @pnpm/package-store@20.3.5
1014
+ - @pnpm/server@18.2.4
1015
+
1016
+ ## 8.3.7
1017
+
1018
+ ### Patch Changes
1019
+
1020
+ - Updated dependencies [251ab21]
1021
+ - @pnpm/config@21.8.1
1022
+
1023
+ ## 8.3.6
1024
+
1025
+ ### Patch Changes
1026
+
1027
+ - Updated dependencies [26b065c]
1028
+ - @pnpm/config@21.8.0
1029
+
1030
+ ## 8.3.5
1031
+
1032
+ ### Patch Changes
1033
+
1034
+ - Updated dependencies [64e2e4f]
1035
+ - Updated dependencies [d20eed3]
1036
+ - Updated dependencies [e7f6330]
1037
+ - @pnpm/cli-meta@6.1.0
1038
+ - @pnpm/config@21.7.0
1039
+ - @pnpm/client@11.1.7
1040
+ - @pnpm/package-store@20.3.4
1041
+ - @pnpm/server@18.2.4
1042
+
1043
+ ## 8.3.4
1044
+
1045
+ ### Patch Changes
1046
+
1047
+ - @pnpm/config@21.6.3
1048
+ - @pnpm/client@11.1.6
1049
+ - @pnpm/package-store@20.3.3
1050
+ - @pnpm/server@18.2.3
1051
+
1052
+ ## 8.3.3
1053
+
1054
+ ### Patch Changes
1055
+
1056
+ - @pnpm/cli-meta@6.0.4
1057
+ - @pnpm/config@21.6.2
1058
+ - @pnpm/client@11.1.5
1059
+ - @pnpm/package-store@20.3.3
1060
+ - @pnpm/server@18.2.3
1061
+
1062
+ ## 8.3.2
1063
+
1064
+ ### Patch Changes
1065
+
1066
+ - Updated dependencies [afe520d]
1067
+ - @pnpm/config@21.6.1
1068
+ - @pnpm/client@11.1.4
1069
+ - @pnpm/package-store@20.3.2
1070
+ - @pnpm/server@18.2.2
1071
+
1072
+ ## 8.3.1
1073
+
1074
+ ### Patch Changes
1075
+
1076
+ - Updated dependencies [1b03682]
1077
+ - @pnpm/config@21.6.0
1078
+ - @pnpm/client@11.1.3
1079
+ - @pnpm/package-store@20.3.1
1080
+ - @pnpm/cli-meta@6.0.3
1081
+ - @pnpm/server@18.2.2
1082
+
1083
+ ## 8.3.0
1084
+
1085
+ ### Minor Changes
1086
+
1087
+ - 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).
1088
+
1089
+ ### Patch Changes
1090
+
1091
+ - Updated dependencies [7c6c923]
1092
+ - Updated dependencies [7d10394]
1093
+ - Updated dependencies [d8eab39]
1094
+ - Updated dependencies [04b8363]
1095
+ - @pnpm/package-store@20.3.0
1096
+ - @pnpm/config@21.5.0
1097
+ - @pnpm/server@18.2.1
1098
+ - @pnpm/cli-meta@6.0.2
1099
+ - @pnpm/client@11.1.2
1100
+
1101
+ ## 8.2.2
1102
+
1103
+ ### Patch Changes
1104
+
1105
+ - Updated dependencies [47341e5]
1106
+ - @pnpm/config@21.4.0
1107
+ - @pnpm/package-store@20.2.1
1108
+ - @pnpm/server@18.2.0
1109
+
1110
+ ## 8.2.1
1111
+
1112
+ ### Patch Changes
1113
+
1114
+ - Updated dependencies [b7ca13f]
1115
+ - @pnpm/config@21.3.0
1116
+ - @pnpm/client@11.1.1
1117
+ - @pnpm/package-store@20.2.0
1118
+ - @pnpm/server@18.2.0
1119
+
1120
+ ## 8.2.0
1121
+
1122
+ ### Minor Changes
1123
+
1124
+ - 0c08e1c: Added a new function for clearing resolution cache.
1125
+
1126
+ ### Patch Changes
1127
+
1128
+ - Updated dependencies [0c08e1c]
1129
+ - @pnpm/package-store@20.2.0
1130
+ - @pnpm/client@11.1.0
1131
+ - @pnpm/server@18.2.0
1132
+ - @pnpm/config@21.2.3
1133
+
1134
+ ## 8.1.4
1135
+
1136
+ ### Patch Changes
1137
+
1138
+ - @pnpm/cli-meta@6.0.1
1139
+ - @pnpm/config@21.2.2
1140
+ - @pnpm/client@11.0.6
1141
+ - @pnpm/package-store@20.1.2
1142
+ - @pnpm/server@18.1.1
1143
+
1144
+ ## 8.1.3
1145
+
1146
+ ### Patch Changes
1147
+
1148
+ - Updated dependencies [a7aef51]
1149
+ - @pnpm/error@6.0.1
1150
+ - @pnpm/config@21.2.1
1151
+ - @pnpm/store-path@9.0.1
1152
+ - @pnpm/client@11.0.5
1153
+ - @pnpm/package-store@20.1.1
1154
+ - @pnpm/server@18.1.0
1155
+
1156
+ ## 8.1.2
1157
+
1158
+ ### Patch Changes
1159
+
1160
+ - @pnpm/client@11.0.4
1161
+ - @pnpm/package-store@20.1.0
1162
+ - @pnpm/server@18.1.0
1163
+
1164
+ ## 8.1.1
1165
+
1166
+ ### Patch Changes
1167
+
1168
+ - @pnpm/client@11.0.3
1169
+ - @pnpm/package-store@20.1.0
1170
+ - @pnpm/server@18.1.0
1171
+
1172
+ ## 8.1.0
1173
+
1174
+ ### Minor Changes
1175
+
1176
+ - 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).
1177
+
1178
+ ### Patch Changes
1179
+
1180
+ - Updated dependencies [9719a42]
1181
+ - @pnpm/package-store@20.1.0
1182
+ - @pnpm/config@21.2.0
1183
+ - @pnpm/server@18.1.0
1184
+
1185
+ ## 8.0.4
1186
+
1187
+ ### Patch Changes
1188
+
1189
+ - @pnpm/client@11.0.2
1190
+ - @pnpm/package-store@20.0.1
1191
+ - @pnpm/server@18.0.0
1192
+
1193
+ ## 8.0.3
1194
+
1195
+ ### Patch Changes
1196
+
1197
+ - @pnpm/package-store@20.0.1
1198
+ - @pnpm/server@18.0.0
1199
+
1200
+ ## 8.0.2
1201
+
1202
+ ### Patch Changes
1203
+
1204
+ - @pnpm/client@11.0.1
1205
+ - @pnpm/package-store@20.0.0
1206
+ - @pnpm/server@18.0.0
1207
+
1208
+ ## 8.0.1
1209
+
1210
+ ### Patch Changes
1211
+
1212
+ - Updated dependencies [e0f47f4]
1213
+ - @pnpm/config@21.1.0
1214
+
1215
+ ## 8.0.0
1216
+
1217
+ ### Major Changes
1218
+
1219
+ - 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
1220
+
1221
+ ### Minor Changes
1222
+
1223
+ - 7733f3a: Added support for registry-scoped SSL configurations (cert, key, and ca). Three new settings supported: `<registryURL>:certfile`, `<registryURL>:keyfile`, and `<registryURL>:ca`. For instance:
1224
+
1225
+ ```
1226
+ //registry.mycomp.com/:certfile=server-cert.pem
1227
+ //registry.mycomp.com/:keyfile=server-key.pem
1228
+ //registry.mycomp.com/:cafile=client-cert.pem
1229
+ ```
1230
+
1231
+ Related issue: [#7427](https://github.com/pnpm/pnpm/issues/7427).
1232
+ Related PR: [#7626](https://github.com/pnpm/pnpm/pull/7626).
1233
+
1234
+ ### Patch Changes
1235
+
1236
+ - Updated dependencies [7733f3a]
1237
+ - Updated dependencies [3ded840]
1238
+ - Updated dependencies [cdd8365]
1239
+ - Updated dependencies [43cdd87]
1240
+ - Updated dependencies [2d9e3b8]
1241
+ - Updated dependencies [cfa33f1]
1242
+ - Updated dependencies [e748162]
1243
+ - Updated dependencies [2b89155]
1244
+ - Updated dependencies [60839fc]
1245
+ - Updated dependencies [730929e]
1246
+ - Updated dependencies [98566d9]
1247
+ - @pnpm/client@11.0.0
1248
+ - @pnpm/config@21.0.0
1249
+ - @pnpm/error@6.0.0
1250
+ - @pnpm/server@18.0.0
1251
+ - @pnpm/package-store@20.0.0
1252
+ - @pnpm/store-path@9.0.0
1253
+ - @pnpm/cli-meta@6.0.0
1254
+
1255
+ ## 7.0.26
1256
+
1257
+ ### Patch Changes
1258
+
1259
+ - @pnpm/package-store@19.0.15
1260
+ - @pnpm/server@17.0.7
1261
+ - @pnpm/client@10.0.46
1262
+ - @pnpm/config@20.4.2
1263
+
1264
+ ## 7.0.25
1265
+
1266
+ ### Patch Changes
1267
+
1268
+ - @pnpm/client@10.0.45
1269
+ - @pnpm/package-store@19.0.14
1270
+ - @pnpm/server@17.0.6
1271
+
1272
+ ## 7.0.24
1273
+
1274
+ ### Patch Changes
1275
+
1276
+ - Updated dependencies [37ccff637]
1277
+ - Updated dependencies [d9564e354]
1278
+ - @pnpm/store-path@8.0.2
1279
+ - @pnpm/config@20.4.1
1280
+ - @pnpm/client@10.0.44
1281
+ - @pnpm/package-store@19.0.14
1282
+ - @pnpm/server@17.0.6
1283
+
1284
+ ## 7.0.23
1285
+
1286
+ ### Patch Changes
1287
+
1288
+ - @pnpm/package-store@19.0.14
1289
+ - @pnpm/server@17.0.6
1290
+ - @pnpm/client@10.0.43
1291
+
1292
+ ## 7.0.22
1293
+
1294
+ ### Patch Changes
1295
+
1296
+ - Updated dependencies [c597f72ec]
1297
+ - @pnpm/config@20.4.0
1298
+
1299
+ ## 7.0.21
1300
+
1301
+ ### Patch Changes
1302
+
1303
+ - Updated dependencies [4e71066dd]
1304
+ - @pnpm/config@20.3.0
1305
+ - @pnpm/package-store@19.0.13
1306
+ - @pnpm/cli-meta@5.0.6
1307
+ - @pnpm/server@17.0.6
1308
+ - @pnpm/client@10.0.42
1309
+
1310
+ ## 7.0.20
1311
+
1312
+ ### Patch Changes
1313
+
1314
+ - Updated dependencies [672c559e4]
1315
+ - @pnpm/config@20.2.0
1316
+ - @pnpm/cli-meta@5.0.5
1317
+ - @pnpm/package-store@19.0.12
1318
+ - @pnpm/server@17.0.5
1319
+ - @pnpm/client@10.0.41
1320
+
1321
+ ## 7.0.19
1322
+
1323
+ ### Patch Changes
1324
+
1325
+ - @pnpm/package-store@19.0.11
1326
+ - @pnpm/server@17.0.4
1327
+ - @pnpm/client@10.0.40
1328
+
1329
+ ## 7.0.18
1330
+
1331
+ ### Patch Changes
1332
+
1333
+ - @pnpm/client@10.0.39
1334
+ - @pnpm/package-store@19.0.10
1335
+ - @pnpm/server@17.0.4
1336
+
1337
+ ## 7.0.17
1338
+
1339
+ ### Patch Changes
1340
+
1341
+ - @pnpm/client@10.0.38
1342
+ - @pnpm/package-store@19.0.10
1343
+ - @pnpm/server@17.0.4
1344
+
1345
+ ## 7.0.16
1346
+
1347
+ ### Patch Changes
1348
+
1349
+ - @pnpm/client@10.0.37
1350
+ - @pnpm/package-store@19.0.10
1351
+ - @pnpm/server@17.0.4
1352
+
1353
+ ## 7.0.15
1354
+
1355
+ ### Patch Changes
1356
+
1357
+ - @pnpm/package-store@19.0.10
1358
+ - @pnpm/server@17.0.4
1359
+ - @pnpm/client@10.0.36
1360
+
1361
+ ## 7.0.14
1362
+
1363
+ ### Patch Changes
1364
+
1365
+ - Updated dependencies [291607c5a]
1366
+ - @pnpm/package-store@19.0.9
1367
+ - @pnpm/client@10.0.35
1368
+ - @pnpm/server@17.0.4
1369
+ - @pnpm/config@20.1.2
1370
+
1371
+ ## 7.0.13
1372
+
1373
+ ### Patch Changes
1374
+
1375
+ - @pnpm/client@10.0.34
1376
+ - @pnpm/package-store@19.0.8
1377
+ - @pnpm/server@17.0.3
1378
+
1379
+ ## 7.0.12
1380
+
1381
+ ### Patch Changes
1382
+
1383
+ - Updated dependencies [7d65d901a]
1384
+ - @pnpm/store-path@8.0.1
1385
+ - @pnpm/client@10.0.33
1386
+ - @pnpm/package-store@19.0.8
1387
+ - @pnpm/server@17.0.3
1388
+ - @pnpm/config@20.1.1
1389
+
1390
+ ## 7.0.11
1391
+
1392
+ ### Patch Changes
1393
+
1394
+ - @pnpm/client@10.0.32
1395
+ - @pnpm/package-store@19.0.7
1396
+ - @pnpm/server@17.0.2
1397
+
1398
+ ## 7.0.10
1399
+
1400
+ ### Patch Changes
1401
+
1402
+ - Updated dependencies [43ce9e4a6]
1403
+ - Updated dependencies [d6592964f]
1404
+ - @pnpm/config@20.1.0
1405
+ - @pnpm/package-store@19.0.7
1406
+ - @pnpm/server@17.0.2
1407
+ - @pnpm/cli-meta@5.0.4
1408
+ - @pnpm/client@10.0.31
1409
+
1410
+ ## 7.0.9
1411
+
1412
+ ### Patch Changes
1413
+
1414
+ - @pnpm/client@10.0.30
1415
+ - @pnpm/package-store@19.0.6
1416
+ - @pnpm/server@17.0.1
1417
+
1418
+ ## 7.0.8
1419
+
1420
+ ### Patch Changes
1421
+
1422
+ - @pnpm/package-store@19.0.6
1423
+ - @pnpm/server@17.0.1
1424
+ - @pnpm/client@10.0.29
1425
+
1426
+ ## 7.0.7
1427
+
1428
+ ### Patch Changes
1429
+
1430
+ - Updated dependencies [01bc58e2c]
1431
+ - Updated dependencies [ac5abd3ff]
1432
+ - Updated dependencies [b60bb6cbe]
1433
+ - @pnpm/package-store@19.0.5
1434
+ - @pnpm/config@20.0.0
1435
+ - @pnpm/server@17.0.1
1436
+ - @pnpm/client@10.0.28
1437
+
1438
+ ## 7.0.6
1439
+
1440
+ ### Patch Changes
1441
+
1442
+ - @pnpm/package-store@19.0.4
1443
+ - @pnpm/server@17.0.1
1444
+ - @pnpm/client@10.0.27
1445
+
1446
+ ## 7.0.5
1447
+
1448
+ ### Patch Changes
1449
+
1450
+ - @pnpm/package-store@19.0.3
1451
+ - @pnpm/server@17.0.1
1452
+ - @pnpm/client@10.0.26
1453
+
1454
+ ## 7.0.4
1455
+
1456
+ ### Patch Changes
1457
+
1458
+ - Updated dependencies [b1dd0ee58]
1459
+ - @pnpm/config@19.2.1
1460
+
1461
+ ## 7.0.3
1462
+
1463
+ ### Patch Changes
1464
+
1465
+ - Updated dependencies [d774a3196]
1466
+ - Updated dependencies [832e28826]
1467
+ - @pnpm/config@19.2.0
1468
+ - @pnpm/cli-meta@5.0.3
1469
+ - @pnpm/package-store@19.0.2
1470
+ - @pnpm/server@17.0.1
1471
+ - @pnpm/client@10.0.25
1472
+
1473
+ ## 7.0.2
1474
+
1475
+ ### Patch Changes
1476
+
1477
+ - Updated dependencies [ee328fd25]
1478
+ - @pnpm/config@19.1.0
1479
+ - @pnpm/package-store@19.0.1
1480
+ - @pnpm/server@17.0.0
1481
+
1482
+ ## 7.0.1
1483
+
1484
+ ### Patch Changes
1485
+
1486
+ - @pnpm/client@10.0.24
1487
+ - @pnpm/package-store@19.0.0
1488
+ - @pnpm/server@17.0.0
1489
+
1490
+ ## 7.0.0
1491
+
1492
+ ### Major Changes
1493
+
1494
+ - 9caa33d53: Remove `disableRelinkFromStore` and `relinkLocalDirDeps`. Replace them with `disableRelinkLocalDirDeps`.
1495
+
1496
+ ### Patch Changes
1497
+
1498
+ - Updated dependencies [9caa33d53]
1499
+ - @pnpm/server@17.0.0
1500
+ - @pnpm/package-store@19.0.0
1501
+ - @pnpm/client@10.0.23
1502
+ - @pnpm/config@19.0.3
1503
+
1504
+ ## 6.2.1
1505
+
1506
+ ### Patch Changes
1507
+
1508
+ - @pnpm/package-store@18.0.1
1509
+ - @pnpm/server@16.0.2
1510
+ - @pnpm/client@10.0.22
1511
+
1512
+ ## 6.2.0
1513
+
1514
+ ### Minor Changes
1515
+
1516
+ - 03cdccc6e: New option added: disableRelinkFromStore.
1517
+
1518
+ ### Patch Changes
1519
+
1520
+ - @pnpm/package-store@18.0.0
1521
+ - @pnpm/server@16.0.2
1522
+ - @pnpm/config@19.0.2
1523
+ - @pnpm/client@10.0.21
1524
+
1525
+ ## 6.1.3
1526
+
1527
+ ### Patch Changes
1528
+
1529
+ - @pnpm/package-store@17.0.2
1530
+ - @pnpm/server@16.0.1
1531
+ - @pnpm/client@10.0.20
1532
+ - @pnpm/config@19.0.1
1533
+
1534
+ ## 6.1.2
1535
+
1536
+ ### Patch Changes
1537
+
1538
+ - Updated dependencies [548768e09]
1539
+ - @pnpm/server@16.0.1
1540
+ - @pnpm/package-store@17.0.1
1541
+ - @pnpm/client@10.0.19
1542
+ - @pnpm/config@19.0.1
1543
+
1544
+ ## 6.1.1
1545
+
1546
+ ### Patch Changes
1547
+
1548
+ - Updated dependencies [cb8bcc8df]
1549
+ - Updated dependencies [494f87544]
1550
+ - @pnpm/config@19.0.0
1551
+ - @pnpm/package-store@17.0.0
1552
+ - @pnpm/server@16.0.0
1553
+ - @pnpm/client@10.0.18
1554
+
1555
+ ## 6.1.0
1556
+
1557
+ ### Minor Changes
1558
+
1559
+ - 92f42224c: New option added: `relinkLocalDirDeps`. It is `true` by default. When `false`, local directory dependencies are not relinked on repeat install.
1560
+
1561
+ ### Patch Changes
1562
+
1563
+ - Updated dependencies [92f42224c]
1564
+ - @pnpm/package-store@16.1.0
1565
+ - @pnpm/client@10.0.17
1566
+ - @pnpm/server@15.0.3
1567
+
1568
+ ## 6.0.24
1569
+
1570
+ ### Patch Changes
1571
+
1572
+ - @pnpm/client@10.0.16
1573
+ - @pnpm/package-store@16.0.12
1574
+ - @pnpm/server@15.0.3
1575
+
1576
+ ## 6.0.23
1577
+
1578
+ ### Patch Changes
1579
+
1580
+ - @pnpm/package-store@16.0.12
1581
+ - @pnpm/server@15.0.3
1582
+
1583
+ ## 6.0.22
1584
+
1585
+ ### Patch Changes
1586
+
1587
+ - @pnpm/package-store@16.0.11
1588
+ - @pnpm/server@15.0.3
1589
+ - @pnpm/config@18.4.4
1590
+
1591
+ ## 6.0.21
1592
+
1593
+ ### Patch Changes
1594
+
1595
+ - @pnpm/package-store@16.0.10
1596
+ - @pnpm/server@15.0.3
1597
+ - @pnpm/client@10.0.15
1598
+ - @pnpm/config@18.4.4
1599
+
1600
+ ## 6.0.20
1601
+
1602
+ ### Patch Changes
1603
+
1604
+ - @pnpm/package-store@16.0.9
1605
+ - @pnpm/server@15.0.3
1606
+ - @pnpm/config@18.4.4
1607
+
1608
+ ## 6.0.19
1609
+
1610
+ ### Patch Changes
1611
+
1612
+ - @pnpm/client@10.0.14
1613
+ - @pnpm/package-store@16.0.8
1614
+ - @pnpm/server@15.0.3
1615
+
1616
+ ## 6.0.18
1617
+
1618
+ ### Patch Changes
1619
+
1620
+ - @pnpm/cli-meta@5.0.2
1621
+ - @pnpm/config@18.4.4
1622
+ - @pnpm/package-store@16.0.8
1623
+ - @pnpm/server@15.0.3
1624
+ - @pnpm/client@10.0.13
1625
+
1626
+ ## 6.0.17
1627
+
1628
+ ### Patch Changes
1629
+
1630
+ - @pnpm/config@18.4.3
1631
+ - @pnpm/client@10.0.12
1632
+ - @pnpm/package-store@16.0.7
1633
+ - @pnpm/server@15.0.2
1634
+
1635
+ ## 6.0.16
1636
+
1637
+ ### Patch Changes
1638
+
1639
+ - @pnpm/package-store@16.0.7
1640
+ - @pnpm/server@15.0.2
1641
+ - @pnpm/client@10.0.11
1642
+ - @pnpm/config@18.4.2
1643
+
1644
+ ## 6.0.15
1645
+
1646
+ ### Patch Changes
1647
+
1648
+ - @pnpm/client@10.0.10
1649
+ - @pnpm/package-store@16.0.6
1650
+ - @pnpm/server@15.0.2
1651
+
1652
+ ## 6.0.14
1653
+
1654
+ ### Patch Changes
1655
+
1656
+ - @pnpm/client@10.0.9
1657
+ - @pnpm/package-store@16.0.6
1658
+ - @pnpm/server@15.0.2
1659
+
1660
+ ## 6.0.13
1661
+
1662
+ ### Patch Changes
1663
+
1664
+ - Updated dependencies [e2d631217]
1665
+ - @pnpm/config@18.4.2
1666
+ - @pnpm/package-store@16.0.6
1667
+ - @pnpm/server@15.0.2
1668
+
1669
+ ## 6.0.12
1670
+
1671
+ ### Patch Changes
1672
+
1673
+ - @pnpm/config@18.4.1
1674
+ - @pnpm/error@5.0.2
1675
+ - @pnpm/package-store@16.0.5
1676
+ - @pnpm/client@10.0.8
1677
+ - @pnpm/server@15.0.2
1678
+
1679
+ ## 6.0.11
1680
+
1681
+ ### Patch Changes
1682
+
1683
+ - Updated dependencies [4b97f1f07]
1684
+ - Updated dependencies [d55b41a8b]
1685
+ - @pnpm/package-store@16.0.4
1686
+ - @pnpm/server@15.0.2
1687
+ - @pnpm/client@10.0.7
1688
+ - @pnpm/config@18.4.0
1689
+
1690
+ ## 6.0.10
1691
+
1692
+ ### Patch Changes
1693
+
1694
+ - Updated dependencies [301b8e2da]
1695
+ - @pnpm/config@18.4.0
1696
+ - @pnpm/cli-meta@5.0.1
1697
+ - @pnpm/package-store@16.0.3
1698
+ - @pnpm/server@15.0.2
1699
+ - @pnpm/error@5.0.1
1700
+ - @pnpm/client@10.0.6
1701
+
1702
+ ## 6.0.9
1703
+
1704
+ ### Patch Changes
1705
+
1706
+ - Updated dependencies [1de07a4af]
1707
+ - @pnpm/config@18.3.2
1708
+
1709
+ ## 6.0.8
1710
+
1711
+ ### Patch Changes
1712
+
1713
+ - Updated dependencies [2809e89ab]
1714
+ - @pnpm/config@18.3.1
1715
+ - @pnpm/client@10.0.5
1716
+ - @pnpm/package-store@16.0.2
1717
+ - @pnpm/server@15.0.1
1718
+
1719
+ ## 6.0.7
1720
+
1721
+ ### Patch Changes
1722
+
1723
+ - @pnpm/client@10.0.4
1724
+ - @pnpm/server@15.0.1
1725
+ - @pnpm/package-store@16.0.2
1726
+
1727
+ ## 6.0.6
1728
+
1729
+ ### Patch Changes
1730
+
1731
+ - Updated dependencies [32f8e08c6]
1732
+ - @pnpm/config@18.3.0
1733
+ - @pnpm/package-store@16.0.2
1734
+ - @pnpm/server@15.0.0
1735
+ - @pnpm/client@10.0.3
1736
+
1737
+ ## 6.0.5
1738
+
1739
+ ### Patch Changes
1740
+
1741
+ - Updated dependencies [fc8780ca9]
1742
+ - @pnpm/config@18.2.0
1743
+
1744
+ ## 6.0.4
1745
+
1746
+ ### Patch Changes
1747
+
1748
+ - @pnpm/config@18.1.1
1749
+ - @pnpm/package-store@16.0.1
1750
+ - @pnpm/server@15.0.0
1751
+ - @pnpm/client@10.0.2
1752
+
1753
+ ## 6.0.3
1754
+
1755
+ ### Patch Changes
1756
+
1757
+ - Updated dependencies [e2cb4b63d]
1758
+ - Updated dependencies [cd6ce11f0]
1759
+ - @pnpm/config@18.1.0
1760
+ - @pnpm/client@10.0.1
1761
+ - @pnpm/package-store@16.0.0
1762
+ - @pnpm/server@15.0.0
1763
+
1764
+ ## 6.0.2
1765
+
1766
+ ### Patch Changes
1767
+
1768
+ - @pnpm/config@18.0.2
1769
+
1770
+ ## 6.0.1
1771
+
1772
+ ### Patch Changes
1773
+
1774
+ - @pnpm/config@18.0.1
1775
+
1776
+ ## 6.0.0
1777
+
1778
+ ### Major Changes
1779
+
1780
+ - 7a0ce1df0: When there's a `files` field in the `package.json`, only deploy those files that are listed in it.
1781
+ Use the same logic also when injecting packages. This behavior can be changed by setting the `deploy-all-files` setting to `true` [#5911](https://github.com/pnpm/pnpm/issues/5911).
1782
+ - eceaa8b8b: Node.js 14 support dropped.
1783
+
1784
+ ### Patch Changes
1785
+
1786
+ - Updated dependencies [47e45d717]
1787
+ - Updated dependencies [47e45d717]
1788
+ - Updated dependencies [7a0ce1df0]
1789
+ - Updated dependencies [158d8cf22]
1790
+ - Updated dependencies [eceaa8b8b]
1791
+ - Updated dependencies [8e35c21d1]
1792
+ - Updated dependencies [47e45d717]
1793
+ - Updated dependencies [47e45d717]
1794
+ - Updated dependencies [113f0ae26]
1795
+ - @pnpm/config@18.0.0
1796
+ - @pnpm/client@10.0.0
1797
+ - @pnpm/package-store@16.0.0
1798
+ - @pnpm/store-path@8.0.0
1799
+ - @pnpm/error@5.0.0
1800
+ - @pnpm/cli-meta@5.0.0
1801
+ - @pnpm/server@15.0.0
1802
+
1803
+ ## 5.2.20
1804
+
1805
+ ### Patch Changes
1806
+
1807
+ - @pnpm/config@17.0.2
1808
+
1809
+ ## 5.2.19
1810
+
1811
+ ### Patch Changes
1812
+
1813
+ - Updated dependencies [b38d711f3]
1814
+ - @pnpm/config@17.0.1
1815
+
1816
+ ## 5.2.18
1817
+
1818
+ ### Patch Changes
1819
+
1820
+ - Updated dependencies [e505b58e3]
1821
+ - @pnpm/config@17.0.0
1822
+ - @pnpm/client@9.1.5
1823
+ - @pnpm/package-store@15.1.8
1824
+ - @pnpm/server@14.1.2
1825
+
1826
+ ## 5.2.17
1827
+
1828
+ ### Patch Changes
1829
+
1830
+ - @pnpm/config@16.7.2
1831
+
1832
+ ## 5.2.16
1833
+
1834
+ ### Patch Changes
1835
+
1836
+ - @pnpm/config@16.7.1
1837
+
1838
+ ## 5.2.15
1839
+
1840
+ ### Patch Changes
1841
+
1842
+ - Updated dependencies [5c31fa8be]
1843
+ - @pnpm/config@16.7.0
1844
+
1845
+ ## 5.2.14
1846
+
1847
+ ### Patch Changes
1848
+
1849
+ - @pnpm/config@16.6.4
1850
+
1851
+ ## 5.2.13
1852
+
1853
+ ### Patch Changes
1854
+
1855
+ - @pnpm/config@16.6.3
1856
+
1857
+ ## 5.2.12
1858
+
1859
+ ### Patch Changes
1860
+
1861
+ - @pnpm/client@9.1.4
1862
+ - @pnpm/server@14.1.2
1863
+ - @pnpm/package-store@15.1.7
1864
+ - @pnpm/config@16.6.2
1865
+
1866
+ ## 5.2.11
1867
+
1868
+ ### Patch Changes
1869
+
1870
+ - @pnpm/client@9.1.3
1871
+ - @pnpm/package-store@15.1.7
1872
+ - @pnpm/config@16.6.1
1873
+ - @pnpm/server@14.1.1
1874
+
1875
+ ## 5.2.10
1876
+
1877
+ ### Patch Changes
1878
+
1879
+ - Updated dependencies [59ee53678]
1880
+ - @pnpm/config@16.6.0
1881
+ - @pnpm/package-store@15.1.6
1882
+ - @pnpm/server@14.1.0
1883
+ - @pnpm/client@9.1.2
1884
+
1885
+ ## 5.2.9
1886
+
1887
+ ### Patch Changes
1888
+
1889
+ - @pnpm/package-store@15.1.5
1890
+ - @pnpm/server@14.1.0
1891
+ - @pnpm/config@16.5.5
1892
+
1893
+ ## 5.2.8
1894
+
1895
+ ### Patch Changes
1896
+
1897
+ - @pnpm/package-store@15.1.4
1898
+ - @pnpm/server@14.1.0
1899
+ - @pnpm/config@16.5.4
1900
+
1901
+ ## 5.2.7
1902
+
1903
+ ### Patch Changes
1904
+
1905
+ - @pnpm/config@16.5.3
1906
+
1907
+ ## 5.2.6
1908
+
1909
+ ### Patch Changes
1910
+
1911
+ - @pnpm/config@16.5.2
1912
+
1913
+ ## 5.2.5
1914
+
1915
+ ### Patch Changes
1916
+
1917
+ - @pnpm/package-store@15.1.3
1918
+ - @pnpm/server@14.1.0
1919
+ - @pnpm/config@16.5.1
1920
+
1921
+ ## 5.2.4
1922
+
1923
+ ### Patch Changes
1924
+
1925
+ - Updated dependencies [28b47a156]
1926
+ - @pnpm/config@16.5.0
1927
+
1928
+ ## 5.2.3
1929
+
1930
+ ### Patch Changes
1931
+
1932
+ - Updated dependencies [1e6de89b6]
1933
+ - @pnpm/package-store@15.1.2
1934
+ - @pnpm/server@14.1.0
1935
+ - @pnpm/client@9.1.1
1936
+ - @pnpm/config@16.4.3
1937
+
1938
+ ## 5.2.2
1939
+
1940
+ ### Patch Changes
1941
+
1942
+ - @pnpm/config@16.4.2
1943
+
1944
+ ## 5.2.1
1945
+
1946
+ ### Patch Changes
1947
+
1948
+ - @pnpm/package-store@15.1.1
1949
+ - @pnpm/server@14.1.0
1950
+ - @pnpm/config@16.4.1
1951
+
1952
+ ## 5.2.0
1953
+
1954
+ ### Minor Changes
1955
+
1956
+ - c7b05cd9a: When ignoreScripts=true is passed to the fetcher, do not build git-hosted dependencies.
1957
+
1958
+ ### Patch Changes
1959
+
1960
+ - Updated dependencies [891a8d763]
1961
+ - Updated dependencies [c7b05cd9a]
1962
+ - Updated dependencies [3ebce5db7]
1963
+ - @pnpm/package-store@15.1.0
1964
+ - @pnpm/server@14.1.0
1965
+ - @pnpm/client@9.1.0
1966
+ - @pnpm/config@16.4.0
1967
+ - @pnpm/error@4.0.1
1968
+
1969
+ ## 5.1.14
1970
+
1971
+ ### Patch Changes
1972
+
1973
+ - Updated dependencies [1fad508b0]
1974
+ - @pnpm/config@16.3.0
1975
+
1976
+ ## 5.1.13
1977
+
1978
+ ### Patch Changes
1979
+
1980
+ - ec97a3105: Report to the console when a git-hosted dependency is built [#5847](https://github.com/pnpm/pnpm/pull/5847).
1981
+ - Updated dependencies [ec97a3105]
1982
+ - @pnpm/client@9.0.1
1983
+ - @pnpm/package-store@15.0.5
1984
+ - @pnpm/server@14.0.5
1985
+ - @pnpm/config@16.2.2
1986
+
1987
+ ## 5.1.12
1988
+
1989
+ ### Patch Changes
1990
+
1991
+ - Updated dependencies [d71dbf230]
1992
+ - @pnpm/config@16.2.1
1993
+
1994
+ ## 5.1.11
1995
+
1996
+ ### Patch Changes
1997
+
1998
+ - Updated dependencies [339c0a704]
1999
+ - Updated dependencies [841f52e70]
2000
+ - @pnpm/client@9.0.0
2001
+ - @pnpm/config@16.2.0
2002
+ - @pnpm/package-store@15.0.5
2003
+ - @pnpm/server@14.0.5
2004
+
2005
+ ## 5.1.10
2006
+
2007
+ ### Patch Changes
2008
+
2009
+ - @pnpm/cli-meta@4.0.3
2010
+ - @pnpm/config@16.1.11
2011
+ - @pnpm/package-store@15.0.5
2012
+ - @pnpm/server@14.0.5
2013
+ - @pnpm/client@8.1.3
2014
+
2015
+ ## 5.1.9
2016
+
2017
+ ### Patch Changes
2018
+
2019
+ - @pnpm/config@16.1.10
2020
+ - @pnpm/package-store@15.0.4
2021
+ - @pnpm/server@14.0.4
2022
+
2023
+ ## 5.1.8
2024
+
2025
+ ### Patch Changes
2026
+
2027
+ - @pnpm/config@16.1.9
2028
+
2029
+ ## 5.1.7
2030
+
2031
+ ### Patch Changes
2032
+
2033
+ - @pnpm/config@16.1.8
2034
+
2035
+ ## 5.1.6
2036
+
2037
+ ### Patch Changes
2038
+
2039
+ - Updated dependencies [a9d59d8bc]
2040
+ - @pnpm/config@16.1.7
2041
+ - @pnpm/package-store@15.0.3
2042
+ - @pnpm/client@8.1.2
2043
+ - @pnpm/server@14.0.4
2044
+
2045
+ ## 5.1.5
2046
+
2047
+ ### Patch Changes
2048
+
2049
+ - @pnpm/config@16.1.6
2050
+
2051
+ ## 5.1.4
2052
+
2053
+ ### Patch Changes
2054
+
2055
+ - @pnpm/config@16.1.5
2056
+
2057
+ ## 5.1.3
2058
+
2059
+ ### Patch Changes
2060
+
2061
+ - @pnpm/config@16.1.4
2062
+ - @pnpm/client@8.1.1
2063
+ - @pnpm/package-store@15.0.2
2064
+ - @pnpm/server@14.0.3
2065
+
2066
+ ## 5.1.2
2067
+
2068
+ ### Patch Changes
2069
+
2070
+ - @pnpm/config@16.1.3
2071
+
2072
+ ## 5.1.1
2073
+
2074
+ ### Patch Changes
2075
+
2076
+ - @pnpm/config@16.1.2
2077
+
2078
+ ## 5.1.0
2079
+
2080
+ ### Minor Changes
2081
+
2082
+ - eacff33e4: New option added to resolve symlinks to their real locations, when injecting directories.
2083
+
2084
+ ### Patch Changes
2085
+
2086
+ - Updated dependencies [eacff33e4]
2087
+ - @pnpm/client@8.1.0
2088
+ - @pnpm/package-store@15.0.2
2089
+ - @pnpm/server@14.0.3
2090
+ - @pnpm/config@16.1.1
2091
+
2092
+ ## 5.0.6
2093
+
2094
+ ### Patch Changes
2095
+
2096
+ - Updated dependencies [3dab7f83c]
2097
+ - @pnpm/config@16.1.0
2098
+
2099
+ ## 5.0.5
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - @pnpm/client@8.0.3
2104
+ - @pnpm/cli-meta@4.0.2
2105
+ - @pnpm/config@16.0.5
2106
+ - @pnpm/package-store@15.0.2
2107
+ - @pnpm/server@14.0.3
2108
+
2109
+ ## 5.0.4
2110
+
2111
+ ### Patch Changes
2112
+
2113
+ - @pnpm/config@16.0.4
2114
+
2115
+ ## 5.0.3
2116
+
2117
+ ### Patch Changes
2118
+
2119
+ - Updated dependencies [aacb83f73]
2120
+ - Updated dependencies [a14ad09e6]
2121
+ - @pnpm/config@16.0.3
2122
+
2123
+ ## 5.0.2
2124
+
2125
+ ### Patch Changes
2126
+
2127
+ - Updated dependencies [bea0acdfc]
2128
+ - @pnpm/config@16.0.2
2129
+ - @pnpm/client@8.0.2
2130
+ - @pnpm/package-store@15.0.1
2131
+ - @pnpm/server@14.0.2
2132
+
2133
+ ## 5.0.1
2134
+
2135
+ ### Patch Changes
2136
+
2137
+ - Updated dependencies [e7fd8a84c]
2138
+ - @pnpm/config@16.0.1
2139
+ - @pnpm/cli-meta@4.0.1
2140
+ - @pnpm/package-store@15.0.1
2141
+ - @pnpm/server@14.0.1
2142
+ - @pnpm/client@8.0.1
2143
+
2144
+ ## 5.0.0
2145
+
2146
+ ### Major Changes
2147
+
2148
+ - f884689e0: Require `@pnpm/logger` v5.
2149
+
2150
+ ### Patch Changes
2151
+
2152
+ - Updated dependencies [043d988fc]
2153
+ - Updated dependencies [1d0fd82fd]
2154
+ - Updated dependencies [645384bfd]
2155
+ - Updated dependencies [f884689e0]
2156
+ - Updated dependencies [3c117996e]
2157
+ - @pnpm/cli-meta@4.0.0
2158
+ - @pnpm/client@8.0.0
2159
+ - @pnpm/config@16.0.0
2160
+ - @pnpm/error@4.0.0
2161
+ - @pnpm/package-store@15.0.0
2162
+ - @pnpm/server@14.0.0
2163
+ - @pnpm/store-path@7.0.0
2164
+
2165
+ ## 4.3.16
2166
+
2167
+ ### Patch Changes
2168
+
2169
+ - Updated dependencies [147ec6eaf]
2170
+ - @pnpm/server@13.0.9
2171
+ - @pnpm/config@15.10.12
2172
+ - @pnpm/client@7.2.10
2173
+ - @pnpm/package-store@14.2.7
2174
+
2175
+ ## 4.3.15
2176
+
2177
+ ### Patch Changes
2178
+
2179
+ - @pnpm/client@7.2.9
2180
+ - @pnpm/server@13.0.8
2181
+ - @pnpm/package-store@14.2.7
2182
+ - @pnpm/config@15.10.11
2183
+
2184
+ ## 4.3.14
2185
+
2186
+ ### Patch Changes
2187
+
2188
+ - Updated dependencies [e8a631bf0]
2189
+ - @pnpm/error@3.1.0
2190
+ - @pnpm/config@15.10.10
2191
+ - @pnpm/client@7.2.8
2192
+ - @pnpm/package-store@14.2.6
2193
+ - @pnpm/server@13.0.7
2194
+
2195
+ ## 4.3.13
2196
+
2197
+ ### Patch Changes
2198
+
2199
+ - @pnpm/config@15.10.9
2200
+ - @pnpm/cli-meta@3.0.8
2201
+ - @pnpm/package-store@14.2.5
2202
+ - @pnpm/server@13.0.7
2203
+ - @pnpm/client@7.2.7
2204
+
2205
+ ## 4.3.12
2206
+
2207
+ ### Patch Changes
2208
+
2209
+ - @pnpm/config@15.10.8
2210
+
2211
+ ## 4.3.11
2212
+
2213
+ ### Patch Changes
2214
+
2215
+ - @pnpm/config@15.10.7
2216
+
2217
+ ## 4.3.10
2218
+
2219
+ ### Patch Changes
2220
+
2221
+ - @pnpm/cli-meta@3.0.7
2222
+ - @pnpm/config@15.10.6
2223
+ - @pnpm/package-store@14.2.4
2224
+ - @pnpm/server@13.0.6
2225
+ - @pnpm/client@7.2.6
2226
+
2227
+ ## 4.3.9
2228
+
2229
+ ### Patch Changes
2230
+
2231
+ - @pnpm/client@7.2.5
2232
+ - @pnpm/package-store@14.2.3
2233
+ - @pnpm/server@13.0.5
2234
+ - @pnpm/config@15.10.5
2235
+
2236
+ ## 4.3.8
2237
+
2238
+ ### Patch Changes
2239
+
2240
+ - @pnpm/config@15.10.4
2241
+
2242
+ ## 4.3.7
2243
+
2244
+ ### Patch Changes
2245
+
2246
+ - @pnpm/client@7.2.4
2247
+ - @pnpm/package-store@14.2.3
2248
+ - @pnpm/server@13.0.5
2249
+ - @pnpm/config@15.10.3
2250
+
2251
+ ## 4.3.6
2252
+
2253
+ ### Patch Changes
2254
+
2255
+ - @pnpm/client@7.2.3
2256
+ - @pnpm/package-store@14.2.3
2257
+ - @pnpm/server@13.0.5
2258
+ - @pnpm/config@15.10.2
2259
+
2260
+ ## 4.3.5
2261
+
2262
+ ### Patch Changes
2263
+
2264
+ - 17e69e18b: `pnpm store prune` should remove all cached metadata.
2265
+ - Updated dependencies [17e69e18b]
2266
+ - @pnpm/package-store@14.2.3
2267
+ - @pnpm/server@13.0.5
2268
+ - @pnpm/client@7.2.2
2269
+ - @pnpm/config@15.10.1
2270
+
2271
+ ## 4.3.4
2272
+
2273
+ ### Patch Changes
2274
+
2275
+ - Updated dependencies [2aa22e4b1]
2276
+ - @pnpm/config@15.10.0
2277
+
2278
+ ## 4.3.3
2279
+
2280
+ ### Patch Changes
2281
+
2282
+ - @pnpm/config@15.9.4
2283
+
2284
+ ## 4.3.2
2285
+
2286
+ ### Patch Changes
2287
+
2288
+ - @pnpm/package-store@14.2.2
2289
+ - @pnpm/server@13.0.5
2290
+ - @pnpm/config@15.9.3
2291
+
2292
+ ## 4.3.1
2293
+
2294
+ ### Patch Changes
2295
+
2296
+ - Updated dependencies [dbac0ca01]
2297
+ - @pnpm/package-store@14.2.1
2298
+ - @pnpm/server@13.0.5
2299
+ - @pnpm/client@7.2.1
2300
+ - @pnpm/config@15.9.2
2301
+
2302
+ ## 4.3.0
2303
+
2304
+ ### Minor Changes
2305
+
2306
+ - 23984abd1: Add hook for adding custom fetchers.
2307
+
2308
+ ### Patch Changes
2309
+
2310
+ - Updated dependencies [23984abd1]
2311
+ - @pnpm/client@7.2.0
2312
+ - @pnpm/package-store@14.2.0
2313
+ - @pnpm/server@13.0.5
2314
+ - @pnpm/config@15.9.1
2315
+
2316
+ ## 4.2.1
2317
+
2318
+ ### Patch Changes
2319
+
2320
+ - @pnpm/package-store@14.1.1
2321
+ - @pnpm/server@13.0.4
2322
+ - @pnpm/client@7.1.14
2323
+ - @pnpm/config@15.9.0
2324
+
2325
+ ## 4.2.0
2326
+
2327
+ ### Minor Changes
2328
+
2329
+ - 65c4260de: Support a new hook for passing a custom package importer to the store controller.
2330
+
2331
+ ### Patch Changes
2332
+
2333
+ - Updated dependencies [39c040127]
2334
+ - Updated dependencies [43cd6aaca]
2335
+ - Updated dependencies [8103f92bd]
2336
+ - Updated dependencies [65c4260de]
2337
+ - Updated dependencies [29a81598a]
2338
+ - @pnpm/server@13.0.4
2339
+ - @pnpm/config@15.9.0
2340
+ - @pnpm/package-store@14.1.0
2341
+ - @pnpm/client@7.1.13
2342
+
2343
+ ## 4.1.26
2344
+
2345
+ ### Patch Changes
2346
+
2347
+ - Updated dependencies [34121d753]
2348
+ - @pnpm/config@15.8.1
2349
+ - @pnpm/cli-meta@3.0.6
2350
+ - @pnpm/package-store@14.0.7
2351
+ - @pnpm/server@13.0.3
2352
+ - @pnpm/client@7.1.12
2353
+
2354
+ ## 4.1.25
2355
+
2356
+ ### Patch Changes
2357
+
2358
+ - Updated dependencies [cac34ad69]
2359
+ - Updated dependencies [99019e071]
2360
+ - @pnpm/config@15.8.0
2361
+ - @pnpm/package-store@14.0.6
2362
+ - @pnpm/server@13.0.2
2363
+
2364
+ ## 4.1.24
2365
+
2366
+ ### Patch Changes
2367
+
2368
+ - @pnpm/config@15.7.1
2369
+ - @pnpm/package-store@14.0.5
2370
+
2371
+ ## 4.1.23
2372
+
2373
+ ### Patch Changes
2374
+
2375
+ - Updated dependencies [4fa1091c8]
2376
+ - @pnpm/config@15.7.0
2377
+ - @pnpm/client@7.1.11
2378
+ - @pnpm/package-store@14.0.5
2379
+ - @pnpm/server@13.0.2
2380
+
2381
+ ## 4.1.22
2382
+
2383
+ ### Patch Changes
2384
+
2385
+ - Updated dependencies [7334b347b]
2386
+ - @pnpm/config@15.6.1
2387
+
2388
+ ## 4.1.21
2389
+
2390
+ ### Patch Changes
2391
+
2392
+ - Updated dependencies [28f000509]
2393
+ - Updated dependencies [406656f80]
2394
+ - @pnpm/config@15.6.0
2395
+ - @pnpm/client@7.1.10
2396
+ - @pnpm/server@13.0.2
2397
+ - @pnpm/package-store@14.0.5
2398
+
2399
+ ## 4.1.20
2400
+
2401
+ ### Patch Changes
2402
+
2403
+ - @pnpm/config@15.5.2
2404
+
2405
+ ## 4.1.19
2406
+
2407
+ ### Patch Changes
2408
+
2409
+ - @pnpm/package-store@14.0.5
2410
+ - @pnpm/server@13.0.1
2411
+
2412
+ ## 4.1.18
2413
+
2414
+ ### Patch Changes
2415
+
2416
+ - @pnpm/client@7.1.9
2417
+ - @pnpm/package-store@14.0.4
2418
+ - @pnpm/server@13.0.1
2419
+
2420
+ ## 4.1.17
2421
+
2422
+ ### Patch Changes
2423
+
2424
+ - Updated dependencies [5f643f23b]
2425
+ - @pnpm/config@15.5.1
2426
+ - @pnpm/package-store@14.0.4
2427
+ - @pnpm/client@7.1.8
2428
+ - @pnpm/server@13.0.1
2429
+
2430
+ ## 4.1.16
2431
+
2432
+ ### Patch Changes
2433
+
2434
+ - @pnpm/package-store@14.0.3
2435
+ - @pnpm/server@13.0.1
2436
+
2437
+ ## 4.1.15
2438
+
2439
+ ### Patch Changes
2440
+
2441
+ - @pnpm/package-store@14.0.2
2442
+ - @pnpm/server@13.0.1
2443
+
2444
+ ## 4.1.14
2445
+
2446
+ ### Patch Changes
2447
+
2448
+ - Updated dependencies [f48d46ef6]
2449
+ - @pnpm/config@15.5.0
2450
+
2451
+ ## 4.1.13
2452
+
2453
+ ### Patch Changes
2454
+
2455
+ - @pnpm/cli-meta@3.0.5
2456
+ - @pnpm/config@15.4.1
2457
+ - @pnpm/package-store@14.0.1
2458
+ - @pnpm/server@13.0.1
2459
+ - @pnpm/client@7.1.7
2460
+
2461
+ ## 4.1.12
2462
+
2463
+ ### Patch Changes
2464
+
2465
+ - Updated dependencies [2a34b21ce]
2466
+ - Updated dependencies [47b5e45dd]
2467
+ - @pnpm/package-store@14.0.0
2468
+ - @pnpm/server@13.0.0
2469
+ - @pnpm/config@15.4.0
2470
+ - @pnpm/cli-meta@3.0.4
2471
+ - @pnpm/client@7.1.6
2472
+
2473
+ ## 4.1.11
2474
+
2475
+ ### Patch Changes
2476
+
2477
+ - Updated dependencies [56cf04cb3]
2478
+ - @pnpm/config@15.3.0
2479
+ - @pnpm/cli-meta@3.0.3
2480
+ - @pnpm/package-store@13.0.8
2481
+ - @pnpm/server@12.0.5
2482
+ - @pnpm/client@7.1.5
2483
+
2484
+ ## 4.1.10
2485
+
2486
+ ### Patch Changes
2487
+
2488
+ - Updated dependencies [8c8156165]
2489
+ - Updated dependencies [25798aad1]
2490
+ - @pnpm/server@12.0.4
2491
+ - @pnpm/config@15.2.1
2492
+
2493
+ ## 4.1.9
2494
+
2495
+ ### Patch Changes
2496
+
2497
+ - Updated dependencies [bc80631d3]
2498
+ - Updated dependencies [d5730ba81]
2499
+ - @pnpm/config@15.2.0
2500
+ - @pnpm/cli-meta@3.0.2
2501
+ - @pnpm/package-store@13.0.7
2502
+ - @pnpm/server@12.0.3
2503
+ - @pnpm/client@7.1.4
2504
+
2505
+ ## 4.1.8
2506
+
2507
+ ### Patch Changes
2508
+
2509
+ - @pnpm/package-store@13.0.6
2510
+ - @pnpm/server@12.0.2
2511
+ - @pnpm/client@7.1.3
2512
+ - @pnpm/config@15.1.4
2513
+
2514
+ ## 4.1.7
2515
+
2516
+ ### Patch Changes
2517
+
2518
+ - Updated dependencies [ae2f845c5]
2519
+ - @pnpm/config@15.1.4
2520
+
2521
+ ## 4.1.6
2522
+
2523
+ ### Patch Changes
2524
+
2525
+ - Updated dependencies [05159665d]
2526
+ - @pnpm/config@15.1.3
2527
+
2528
+ ## 4.1.5
2529
+
2530
+ ### Patch Changes
2531
+
2532
+ - Updated dependencies [af22c6c4f]
2533
+ - @pnpm/config@15.1.2
2534
+ - @pnpm/package-store@13.0.5
2535
+ - @pnpm/server@12.0.1
2536
+ - @pnpm/client@7.1.2
2537
+
2538
+ ## 4.1.4
2539
+
2540
+ ### Patch Changes
2541
+
2542
+ - @pnpm/package-store@13.0.4
2543
+ - @pnpm/server@12.0.1
2544
+
2545
+ ## 4.1.3
2546
+
2547
+ ### Patch Changes
2548
+
2549
+ - @pnpm/package-store@13.0.3
2550
+ - @pnpm/server@12.0.1
2551
+ - @pnpm/config@15.1.1
2552
+
2553
+ ## 4.1.2
2554
+
2555
+ ### Patch Changes
2556
+
2557
+ - @pnpm/package-store@13.0.2
2558
+ - @pnpm/cli-meta@3.0.1
2559
+ - @pnpm/config@15.1.1
2560
+ - @pnpm/server@12.0.1
2561
+ - @pnpm/client@7.1.1
2562
+
2563
+ ## 4.1.1
2564
+
2565
+ ### Patch Changes
2566
+
2567
+ - Updated dependencies [e05dcc48a]
2568
+ - @pnpm/config@15.1.0
2569
+
2570
+ ## 4.1.0
2571
+
2572
+ ### Minor Changes
2573
+
2574
+ - c6463b9fd: New setting added: `git-shallow-hosts`. When cloning repositories from "shallow-hosts", pnpm will use shallow cloning to fetch only the needed commit, not all the history [#4548](https://github.com/pnpm/pnpm/pull/4548).
2575
+
2576
+ ### Patch Changes
2577
+
2578
+ - Updated dependencies [cdeb65203]
2579
+ - Updated dependencies [8dac029ef]
2580
+ - Updated dependencies [72b79f55a]
2581
+ - Updated dependencies [546e644e9]
2582
+ - Updated dependencies [c6463b9fd]
2583
+ - Updated dependencies [4bed585e2]
2584
+ - Updated dependencies [8fa95fd86]
2585
+ - @pnpm/store-path@6.0.0
2586
+ - @pnpm/config@15.0.0
2587
+ - @pnpm/client@7.1.0
2588
+ - @pnpm/package-store@13.0.1
2589
+ - @pnpm/server@12.0.0
2590
+ - @pnpm/error@3.0.1
2591
+
2592
+ ## 4.0.0
2593
+
2594
+ ### Major Changes
2595
+
2596
+ - 542014839: Node.js 12 is not supported.
2597
+
2598
+ ### Patch Changes
2599
+
2600
+ - Updated dependencies [516859178]
2601
+ - Updated dependencies [73d71a2d5]
2602
+ - Updated dependencies [fa656992c]
2603
+ - Updated dependencies [542014839]
2604
+ - Updated dependencies [585e9ca9e]
2605
+ - @pnpm/config@14.0.0
2606
+ - @pnpm/cli-meta@3.0.0
2607
+ - @pnpm/client@7.0.0
2608
+ - @pnpm/error@3.0.0
2609
+ - @pnpm/package-store@13.0.0
2610
+ - @pnpm/server@12.0.0
2611
+
2612
+ ## 3.2.10
2613
+
2614
+ ### Patch Changes
2615
+
2616
+ - Updated dependencies [70ba51da9]
2617
+ - @pnpm/error@2.1.0
2618
+ - @pnpm/config@13.13.2
2619
+ - @pnpm/package-store@12.1.12
2620
+ - @pnpm/server@11.0.19
2621
+ - @pnpm/client@6.1.3
2622
+
2623
+ ## 3.2.9
2624
+
2625
+ ### Patch Changes
2626
+
2627
+ - @pnpm/package-store@12.1.11
2628
+ - @pnpm/server@11.0.18
2629
+ - @pnpm/cli-meta@2.0.2
2630
+ - @pnpm/config@13.13.1
2631
+ - @pnpm/client@6.1.2
2632
+
2633
+ ## 3.2.8
2634
+
2635
+ ### Patch Changes
2636
+
2637
+ - Updated dependencies [fa4f9133b]
2638
+ - @pnpm/package-store@12.1.10
2639
+ - @pnpm/server@11.0.17
2640
+
2641
+ ## 3.2.7
2642
+
2643
+ ### Patch Changes
2644
+
2645
+ - Updated dependencies [50e347d23]
2646
+ - @pnpm/package-store@12.1.9
2647
+ - @pnpm/server@11.0.17
2648
+
2649
+ ## 3.2.6
2650
+
2651
+ ### Patch Changes
2652
+
2653
+ - Updated dependencies [334e5340a]
2654
+ - @pnpm/config@13.13.0
2655
+
2656
+ ## 3.2.5
2657
+
2658
+ ### Patch Changes
2659
+
2660
+ - Updated dependencies [b7566b979]
2661
+ - @pnpm/config@13.12.0
2662
+
2663
+ ## 3.2.4
2664
+
2665
+ ### Patch Changes
2666
+
2667
+ - Updated dependencies [fff0e4493]
2668
+ - @pnpm/config@13.11.0
2669
+
2670
+ ## 3.2.3
2671
+
2672
+ ### Patch Changes
2673
+
2674
+ - Updated dependencies [e76151f66]
2675
+ - @pnpm/config@13.10.0
2676
+ - @pnpm/client@6.1.1
2677
+ - @pnpm/cli-meta@2.0.1
2678
+ - @pnpm/package-store@12.1.8
2679
+ - @pnpm/server@11.0.17
2680
+
2681
+ ## 3.2.2
2682
+
2683
+ ### Patch Changes
2684
+
2685
+ - @pnpm/package-store@12.1.7
2686
+ - @pnpm/server@11.0.16
2687
+
2688
+ ## 3.2.1
2689
+
2690
+ ### Patch Changes
2691
+
2692
+ - Updated dependencies [8fe8f5e55]
2693
+ - @pnpm/config@13.9.0
2694
+ - @pnpm/package-store@12.1.6
2695
+
2696
+ ## 3.2.0
2697
+
2698
+ ### Minor Changes
2699
+
2700
+ - a6cf11cb7: New optional setting added: userConfig. userConfig may contain token helpers.
2701
+
2702
+ ### Patch Changes
2703
+
2704
+ - Updated dependencies [a6cf11cb7]
2705
+ - Updated dependencies [732d4962f]
2706
+ - Updated dependencies [a6cf11cb7]
2707
+ - @pnpm/client@6.1.0
2708
+ - @pnpm/config@13.8.0
2709
+ - @pnpm/package-store@12.1.6
2710
+ - @pnpm/server@11.0.16
2711
+
2712
+ ## 3.1.17
2713
+
2714
+ ### Patch Changes
2715
+
2716
+ - @pnpm/cli-meta@2.0.0
2717
+ - @pnpm/config@13.7.2
2718
+ - @pnpm/package-store@12.1.6
2719
+ - @pnpm/server@11.0.16
2720
+ - @pnpm/client@6.0.11
2721
+
2722
+ ## 3.1.16
2723
+
2724
+ ### Patch Changes
2725
+
2726
+ - @pnpm/cli-meta@2.0.0
2727
+ - @pnpm/config@13.7.1
2728
+ - @pnpm/package-store@12.1.5
2729
+ - @pnpm/server@11.0.15
2730
+ - @pnpm/client@6.0.10
2731
+
2732
+ ## 3.1.15
2733
+
2734
+ ### Patch Changes
2735
+
2736
+ - Updated dependencies [30bfca967]
2737
+ - Updated dependencies [927c4a089]
2738
+ - Updated dependencies [10a4bd4db]
2739
+ - Updated dependencies [d00e1fc6a]
2740
+ - @pnpm/config@13.7.0
2741
+ - @pnpm/package-store@12.1.4
2742
+ - @pnpm/server@11.0.14
2743
+ - @pnpm/cli-meta@2.0.0
2744
+ - @pnpm/client@6.0.9
2745
+
2746
+ ## 3.1.14
2747
+
2748
+ ### Patch Changes
2749
+
2750
+ - @pnpm/client@6.0.8
2751
+ - @pnpm/package-store@12.1.3
2752
+ - @pnpm/server@11.0.13
2753
+
2754
+ ## 3.1.13
2755
+
2756
+ ### Patch Changes
2757
+
2758
+ - Updated dependencies [46aaf7108]
2759
+ - @pnpm/config@13.6.1
2760
+ - @pnpm/client@6.0.7
2761
+ - @pnpm/server@11.0.13
2762
+ - @pnpm/package-store@12.1.3
2763
+
2764
+ ## 3.1.12
2765
+
2766
+ ### Patch Changes
2767
+
2768
+ - Updated dependencies [8a99a01ff]
2769
+ - @pnpm/config@13.6.0
2770
+
2771
+ ## 3.1.11
2772
+
2773
+ ### Patch Changes
2774
+
2775
+ - @pnpm/client@6.0.6
2776
+ - @pnpm/package-store@12.1.3
2777
+ - @pnpm/server@11.0.12
2778
+
2779
+ ## 3.1.10
2780
+
2781
+ ### Patch Changes
2782
+
2783
+ - Updated dependencies [a7ff2d5ce]
2784
+ - @pnpm/config@13.5.1
2785
+ - @pnpm/package-store@12.1.3
2786
+ - @pnpm/server@11.0.12
2787
+
2788
+ ## 3.1.9
2789
+
2790
+ ### Patch Changes
2791
+
2792
+ - Updated dependencies [002778559]
2793
+ - @pnpm/config@13.5.0
2794
+ - @pnpm/client@6.0.5
2795
+ - @pnpm/server@11.0.12
2796
+ - @pnpm/package-store@12.1.2
2797
+
2798
+ ## 3.1.8
2799
+
2800
+ ### Patch Changes
2801
+
2802
+ - @pnpm/client@6.0.4
2803
+ - @pnpm/package-store@12.1.2
2804
+ - @pnpm/server@11.0.11
2805
+
2806
+ ## 3.1.7
2807
+
2808
+ ### Patch Changes
2809
+
2810
+ - @pnpm/client@6.0.3
2811
+ - @pnpm/package-store@12.1.2
2812
+ - @pnpm/server@11.0.11
2813
+
2814
+ ## 3.1.6
2815
+
2816
+ ### Patch Changes
2817
+
2818
+ - 1647d8e2f: When the store location is a relative location, pick the store location relative to the workspace root directory location [#3976](https://github.com/pnpm/pnpm/issues/3976).
2819
+ - @pnpm/package-store@12.1.2
2820
+ - @pnpm/server@11.0.11
2821
+
2822
+ ## 3.1.5
2823
+
2824
+ ### Patch Changes
2825
+
2826
+ - @pnpm/client@6.0.2
2827
+ - @pnpm/config@13.4.2
2828
+ - @pnpm/cli-meta@2.0.0
2829
+ - @pnpm/package-store@12.1.1
2830
+ - @pnpm/server@11.0.11
2831
+
2832
+ ## 3.1.4
2833
+
2834
+ ### Patch Changes
2835
+
2836
+ - @pnpm/client@6.0.1
2837
+ - @pnpm/package-store@12.1.0
2838
+ - @pnpm/server@11.0.10
2839
+
2840
+ ## 3.1.3
2841
+
2842
+ ### Patch Changes
2843
+
2844
+ - Updated dependencies [4ab87844a]
2845
+ - Updated dependencies [4ab87844a]
2846
+ - Updated dependencies [4ab87844a]
2847
+ - @pnpm/package-store@12.1.0
2848
+ - @pnpm/client@6.0.0
2849
+ - @pnpm/cli-meta@2.0.0
2850
+ - @pnpm/config@13.4.1
2851
+ - @pnpm/server@11.0.10
2852
+
2853
+ ## 3.1.2
2854
+
2855
+ ### Patch Changes
2856
+
2857
+ - @pnpm/client@5.0.10
2858
+ - @pnpm/server@11.0.9
2859
+ - @pnpm/package-store@12.0.15
2860
+
2861
+ ## 3.1.1
2862
+
2863
+ ### Patch Changes
2864
+
2865
+ - Updated dependencies [b6d74c545]
2866
+ - @pnpm/config@13.4.0
2867
+ - @pnpm/client@5.0.9
2868
+ - @pnpm/package-store@12.0.15
2869
+ - @pnpm/server@11.0.8
2870
+
2871
+ ## 3.1.0
2872
+
2873
+ ### Minor Changes
2874
+
2875
+ - bd7bcdbe8: Make the maximum amount of sockets configurable through the `maxSockets` option.
2876
+
2877
+ ### Patch Changes
2878
+
2879
+ - Updated dependencies [bd7bcdbe8]
2880
+ - @pnpm/config@13.3.0
2881
+ - @pnpm/client@5.0.8
2882
+ - @pnpm/server@11.0.8
2883
+ - @pnpm/package-store@12.0.15
2884
+
2885
+ ## 3.0.20
2886
+
2887
+ ### Patch Changes
2888
+
2889
+ - Updated dependencies [5ee3b2dc7]
2890
+ - @pnpm/config@13.2.0
2891
+
2892
+ ## 3.0.19
2893
+
2894
+ ### Patch Changes
2895
+
2896
+ - Updated dependencies [4027a3c69]
2897
+ - @pnpm/config@13.1.0
2898
+
2899
+ ## 3.0.18
2900
+
2901
+ ### Patch Changes
2902
+
2903
+ - @pnpm/client@5.0.7
2904
+ - @pnpm/package-store@12.0.15
2905
+ - @pnpm/server@11.0.7
2906
+
2907
+ ## 3.0.17
2908
+
2909
+ ### Patch Changes
2910
+
2911
+ - Updated dependencies [fe5688dc0]
2912
+ - Updated dependencies [c7081cbb4]
2913
+ - Updated dependencies [c7081cbb4]
2914
+ - @pnpm/config@13.0.0
2915
+
2916
+ ## 3.0.16
2917
+
2918
+ ### Patch Changes
2919
+
2920
+ - Updated dependencies [d62259d67]
2921
+ - @pnpm/config@12.6.0
2922
+
2923
+ ## 3.0.15
2924
+
2925
+ ### Patch Changes
2926
+
2927
+ - @pnpm/client@5.0.6
2928
+ - @pnpm/package-store@12.0.15
2929
+ - @pnpm/server@11.0.7
2930
+
2931
+ ## 3.0.14
2932
+
2933
+ ### Patch Changes
2934
+
2935
+ - Updated dependencies [6681fdcbc]
2936
+ - Updated dependencies [bab172385]
2937
+ - @pnpm/config@12.5.0
2938
+ - @pnpm/server@11.0.7
2939
+ - @pnpm/package-store@12.0.15
2940
+ - @pnpm/client@5.0.5
2941
+
2942
+ ## 3.0.13
2943
+
2944
+ ### Patch Changes
2945
+
2946
+ - @pnpm/client@5.0.4
2947
+ - @pnpm/server@11.0.6
2948
+ - @pnpm/package-store@12.0.14
2949
+
2950
+ ## 3.0.12
2951
+
2952
+ ### Patch Changes
2953
+
2954
+ - Updated dependencies [ede519190]
2955
+ - @pnpm/config@12.4.9
2956
+
2957
+ ## 3.0.11
2958
+
2959
+ ### Patch Changes
2960
+
2961
+ - @pnpm/config@12.4.8
2962
+
2963
+ ## 3.0.10
2964
+
2965
+ ### Patch Changes
2966
+
2967
+ - @pnpm/client@5.0.3
2968
+ - @pnpm/package-store@12.0.14
2969
+ - @pnpm/server@11.0.5
2970
+
2971
+ ## 3.0.9
2972
+
2973
+ ### Patch Changes
2974
+
2975
+ - Updated dependencies [655af55ba]
2976
+ - @pnpm/config@12.4.7
2977
+ - @pnpm/package-store@12.0.14
2978
+ - @pnpm/server@11.0.5
2979
+
2980
+ ## 3.0.8
2981
+
2982
+ ### Patch Changes
2983
+
2984
+ - @pnpm/package-store@12.0.13
2985
+ - @pnpm/server@11.0.5
2986
+
2987
+ ## 3.0.7
2988
+
2989
+ ### Patch Changes
2990
+
2991
+ - @pnpm/client@5.0.2
2992
+ - @pnpm/package-store@12.0.12
2993
+ - @pnpm/server@11.0.5
2994
+
2995
+ ## 3.0.6
2996
+
2997
+ ### Patch Changes
2998
+
2999
+ - Updated dependencies [3fb74c618]
3000
+ - @pnpm/config@12.4.6
3001
+
3002
+ ## 3.0.5
3003
+
3004
+ ### Patch Changes
3005
+
3006
+ - Updated dependencies [051296a16]
3007
+ - @pnpm/config@12.4.5
3008
+
3009
+ ## 3.0.4
3010
+
3011
+ ### Patch Changes
3012
+
3013
+ - Updated dependencies [af8b5716e]
3014
+ - @pnpm/config@12.4.4
3015
+
3016
+ ## 3.0.3
3017
+
3018
+ ### Patch Changes
3019
+
3020
+ - @pnpm/cli-meta@2.0.0
3021
+ - @pnpm/config@12.4.3
3022
+ - @pnpm/package-store@12.0.12
3023
+ - @pnpm/server@11.0.5
3024
+ - @pnpm/client@5.0.1
3025
+
3026
+ ## 3.0.2
3027
+
3028
+ ### Patch Changes
3029
+
3030
+ - Updated dependencies [73c1f802e]
3031
+ - @pnpm/config@12.4.2
3032
+
3033
+ ## 3.0.1
3034
+
3035
+ ### Patch Changes
3036
+
3037
+ - Updated dependencies [2264bfdf4]
3038
+ - @pnpm/config@12.4.1
3039
+
3040
+ ## 3.0.0
3041
+
3042
+ ### Major Changes
3043
+
3044
+ - 691f64713: New required option added: cacheDir.
3045
+
3046
+ ### Patch Changes
3047
+
3048
+ - Updated dependencies [25f6968d4]
3049
+ - Updated dependencies [691f64713]
3050
+ - Updated dependencies [691f64713]
3051
+ - Updated dependencies [5aaf3e3fa]
3052
+ - @pnpm/config@12.4.0
3053
+ - @pnpm/client@5.0.0
3054
+ - @pnpm/package-store@12.0.11
3055
+ - @pnpm/server@11.0.4
3056
+
3057
+ ## 2.1.11
3058
+
3059
+ ### Patch Changes
3060
+
3061
+ - @pnpm/cli-meta@2.0.0
3062
+ - @pnpm/config@12.3.3
3063
+ - @pnpm/package-store@12.0.11
3064
+ - @pnpm/server@11.0.4
3065
+ - @pnpm/client@4.0.2
3066
+
3067
+ ## 2.1.10
3068
+
3069
+ ### Patch Changes
3070
+
3071
+ - @pnpm/package-store@12.0.10
3072
+ - @pnpm/server@11.0.3
3073
+
3074
+ ## 2.1.9
3075
+
3076
+ ### Patch Changes
3077
+
3078
+ - @pnpm/client@4.0.1
3079
+ - @pnpm/package-store@12.0.9
3080
+ - @pnpm/server@11.0.3
3081
+
3082
+ ## 2.1.8
3083
+
3084
+ ### Patch Changes
3085
+
3086
+ - Updated dependencies [eeff424bd]
3087
+ - @pnpm/client@4.0.0
3088
+ - @pnpm/server@11.0.3
3089
+ - @pnpm/package-store@12.0.9
3090
+ - @pnpm/cli-meta@2.0.0
3091
+ - @pnpm/config@12.3.2
3092
+
3093
+ ## 2.1.7
3094
+
3095
+ ### Patch Changes
3096
+
3097
+ - Updated dependencies [a1a03d145]
3098
+ - @pnpm/config@12.3.1
3099
+ - @pnpm/package-store@12.0.8
3100
+ - @pnpm/server@11.0.2
3101
+ - @pnpm/client@3.1.6
3102
+
3103
+ ## 2.1.6
3104
+
3105
+ ### Patch Changes
3106
+
3107
+ - @pnpm/client@3.1.5
3108
+ - @pnpm/package-store@12.0.7
3109
+ - @pnpm/server@11.0.2
3110
+
3111
+ ## 2.1.5
3112
+
3113
+ ### Patch Changes
3114
+
3115
+ - Updated dependencies [84ec82e05]
3116
+ - Updated dependencies [c2a71e4fd]
3117
+ - Updated dependencies [84ec82e05]
3118
+ - @pnpm/config@12.3.0
3119
+
3120
+ ## 2.1.4
3121
+
3122
+ ### Patch Changes
3123
+
3124
+ - @pnpm/package-store@12.0.7
3125
+ - @pnpm/server@11.0.2
3126
+ - @pnpm/client@3.1.4
3127
+
3128
+ ## 2.1.3
3129
+
3130
+ ### Patch Changes
3131
+
3132
+ - @pnpm/package-store@12.0.6
3133
+ - @pnpm/server@11.0.2
3134
+ - @pnpm/client@3.1.3
3135
+ - @pnpm/config@12.2.0
3136
+
3137
+ ## 2.1.2
3138
+
3139
+ ### Patch Changes
3140
+
3141
+ - Updated dependencies [3b147ced9]
3142
+ - @pnpm/package-store@12.0.5
3143
+ - @pnpm/client@3.1.2
3144
+ - @pnpm/server@11.0.2
3145
+
3146
+ ## 2.1.1
3147
+
3148
+ ### Patch Changes
3149
+
3150
+ - @pnpm/client@3.1.1
3151
+ - @pnpm/package-store@12.0.4
3152
+ - @pnpm/server@11.0.2
3153
+ - @pnpm/config@12.2.0
3154
+
3155
+ ## 2.1.0
3156
+
3157
+ ### Minor Changes
3158
+
3159
+ - 05baaa6e7: Add new config setting: `fetch-timeout`.
3160
+
3161
+ ### Patch Changes
3162
+
3163
+ - Updated dependencies [05baaa6e7]
3164
+ - Updated dependencies [dfdf669e6]
3165
+ - Updated dependencies [05baaa6e7]
3166
+ - @pnpm/config@12.2.0
3167
+ - @pnpm/client@3.1.0
3168
+ - @pnpm/server@11.0.1
3169
+ - @pnpm/package-store@12.0.3
3170
+ - @pnpm/cli-meta@2.0.0
3171
+
3172
+ ## 2.0.3
3173
+
3174
+ ### Patch Changes
3175
+
3176
+ - Updated dependencies [ba5231ccf]
3177
+ - @pnpm/config@12.1.0
3178
+
3179
+ ## 2.0.2
3180
+
3181
+ ### Patch Changes
3182
+
3183
+ - Updated dependencies [6f198457d]
3184
+ - Updated dependencies [e3d9b3215]
3185
+ - @pnpm/package-store@12.0.2
3186
+ - @pnpm/server@11.0.0
3187
+ - @pnpm/client@3.0.1
3188
+ - @pnpm/config@12.0.0
3189
+
3190
+ ## 2.0.1
3191
+
3192
+ ### Patch Changes
3193
+
3194
+ - @pnpm/package-store@12.0.1
3195
+ - @pnpm/server@11.0.0
3196
+
3197
+ ## 2.0.0
3198
+
3199
+ ### Minor Changes
3200
+
3201
+ - 97b986fbc: Node.js 10 support is dropped. At least Node.js 12.17 is required for the package to work.
3202
+
3203
+ ### Patch Changes
3204
+
3205
+ - 7adc6e875: Update dependencies.
3206
+ - Updated dependencies [97b986fbc]
3207
+ - Updated dependencies [78470a32d]
3208
+ - Updated dependencies [aed712455]
3209
+ - Updated dependencies [83645c8ed]
3210
+ - Updated dependencies [aed712455]
3211
+ - @pnpm/cli-meta@2.0.0
3212
+ - @pnpm/client@3.0.0
3213
+ - @pnpm/config@12.0.0
3214
+ - @pnpm/error@2.0.0
3215
+ - @pnpm/package-store@12.0.0
3216
+ - @pnpm/server@11.0.0
3217
+
3218
+ ## 1.0.4
3219
+
3220
+ ### Patch Changes
3221
+
3222
+ - Updated dependencies [4f1ce907a]
3223
+ - @pnpm/config@11.14.2
3224
+
3225
+ ## 1.0.3
3226
+
3227
+ ### Patch Changes
3228
+
3229
+ - Updated dependencies [4b3852c39]
3230
+ - @pnpm/config@11.14.1
3231
+ - @pnpm/package-store@11.0.3
3232
+ - @pnpm/server@10.0.1
3233
+
3234
+ ## 1.0.2
3235
+
3236
+ ### Patch Changes
3237
+
3238
+ - @pnpm/client@2.0.24
3239
+ - @pnpm/server@10.0.1
3240
+ - @pnpm/package-store@11.0.2
3241
+
3242
+ ## 1.0.1
3243
+
3244
+ ### Patch Changes
3245
+
3246
+ - Updated dependencies [632352f26]
3247
+ - @pnpm/package-store@11.0.1
3248
+ - @pnpm/server@10.0.0
3249
+
3250
+ ## 1.0.0
3251
+
3252
+ ### Major Changes
3253
+
3254
+ - 8d1dfa89c: Breaking changes to the store controller API.
3255
+
3256
+ The options to `requestPackage()` and `fetchPackage()` changed.
3257
+
3258
+ ### Patch Changes
3259
+
3260
+ - Updated dependencies [8d1dfa89c]
3261
+ - @pnpm/package-store@11.0.0
3262
+ - @pnpm/server@10.0.0
3263
+ - @pnpm/client@2.0.23
3264
+ - @pnpm/config@11.14.0
3265
+
3266
+ ## 0.3.64
3267
+
3268
+ ### Patch Changes
3269
+
3270
+ - 27a40321c: Update dependencies.
3271
+ - @pnpm/client@2.0.22
3272
+ - @pnpm/package-store@10.1.18
3273
+ - @pnpm/server@9.0.7
3274
+
3275
+ ## 0.3.63
3276
+
3277
+ ### Patch Changes
3278
+
3279
+ - Updated dependencies [cb040ae18]
3280
+ - @pnpm/config@11.14.0
3281
+
3282
+ ## 0.3.62
3283
+
3284
+ ### Patch Changes
3285
+
3286
+ - Updated dependencies [c4cc62506]
3287
+ - @pnpm/config@11.13.0
3288
+ - @pnpm/client@2.0.21
3289
+ - @pnpm/package-store@10.1.17
3290
+ - @pnpm/server@9.0.7
3291
+
3292
+ ## 0.3.61
3293
+
3294
+ ### Patch Changes
3295
+
3296
+ - Updated dependencies [bff84dbca]
3297
+ - @pnpm/config@11.12.1
3298
+
3299
+ ## 0.3.60
3300
+
3301
+ ### Patch Changes
3302
+
3303
+ - 43de80034: Don't fail when the code is executed through piping to Node's stdin.
3304
+ - Updated dependencies [43de80034]
3305
+ - @pnpm/cli-meta@1.0.2
3306
+
3307
+ ## 0.3.59
3308
+
3309
+ ### Patch Changes
3310
+
3311
+ - Updated dependencies [548f28df9]
3312
+ - @pnpm/config@11.12.0
3313
+ - @pnpm/cli-meta@1.0.1
3314
+ - @pnpm/package-store@10.1.16
3315
+ - @pnpm/server@9.0.7
3316
+ - @pnpm/client@2.0.20
3317
+
3318
+ ## 0.3.58
3319
+
3320
+ ### Patch Changes
3321
+
3322
+ - @pnpm/config@11.11.1
3323
+
3324
+ ## 0.3.57
3325
+
3326
+ ### Patch Changes
3327
+
3328
+ - Updated dependencies [f40bc5927]
3329
+ - @pnpm/config@11.11.0
3330
+
3331
+ ## 0.3.56
3332
+
3333
+ ### Patch Changes
3334
+
3335
+ - Updated dependencies [425c7547d]
3336
+ - @pnpm/config@11.10.2
3337
+ - @pnpm/client@2.0.19
3338
+ - @pnpm/package-store@10.1.15
3339
+ - @pnpm/server@9.0.6
3340
+
3341
+ ## 0.3.55
3342
+
3343
+ ### Patch Changes
3344
+
3345
+ - Updated dependencies [ea09da716]
3346
+ - @pnpm/config@11.10.1
3347
+
3348
+ ## 0.3.54
3349
+
3350
+ ### Patch Changes
3351
+
3352
+ - Updated dependencies [a8656b42f]
3353
+ - @pnpm/config@11.10.0
3354
+
3355
+ ## 0.3.53
3356
+
3357
+ ### Patch Changes
3358
+
3359
+ - Updated dependencies [041537bc3]
3360
+ - @pnpm/config@11.9.1
3361
+
3362
+ ## 0.3.52
3363
+
3364
+ ### Patch Changes
3365
+
3366
+ - @pnpm/client@2.0.18
3367
+ - @pnpm/package-store@10.1.14
3368
+ - @pnpm/server@9.0.6
3369
+
3370
+ ## 0.3.51
3371
+
3372
+ ### Patch Changes
3373
+
3374
+ - dc5a0a102: The maximum number of allowed connections increased to 3 times the number of network concurrency. This should fix the socket timeout issues that sometimes happen.
3375
+ - @pnpm/client@2.0.17
3376
+ - @pnpm/server@9.0.6
3377
+ - @pnpm/package-store@10.1.13
3378
+
3379
+ ## 0.3.50
3380
+
3381
+ ### Patch Changes
3382
+
3383
+ - @pnpm/client@2.0.16
3384
+ - @pnpm/server@9.0.5
3385
+ - @pnpm/package-store@10.1.12
3386
+
3387
+ ## 0.3.49
3388
+
3389
+ ### Patch Changes
3390
+
3391
+ - Updated dependencies [8698a7060]
3392
+ - @pnpm/config@11.9.0
3393
+ - @pnpm/package-store@10.1.11
3394
+ - @pnpm/server@9.0.4
3395
+ - @pnpm/client@2.0.15
3396
+
3397
+ ## 0.3.48
3398
+
3399
+ ### Patch Changes
3400
+
3401
+ - Updated dependencies [fcc1c7100]
3402
+ - @pnpm/config@11.8.0
3403
+ - @pnpm/client@2.0.14
3404
+ - @pnpm/package-store@10.1.10
3405
+ - @pnpm/server@9.0.3
3406
+
3407
+ ## 0.3.47
3408
+
3409
+ ### Patch Changes
3410
+
3411
+ - Updated dependencies [0c5f1bcc9]
3412
+ - @pnpm/error@1.4.0
3413
+ - @pnpm/client@2.0.13
3414
+ - @pnpm/config@11.7.2
3415
+ - @pnpm/package-store@10.1.9
3416
+ - @pnpm/server@9.0.3
3417
+
3418
+ ## 0.3.46
3419
+
3420
+ ### Patch Changes
3421
+
3422
+ - Updated dependencies [09492b7b4]
3423
+ - @pnpm/package-store@10.1.8
3424
+ - @pnpm/server@9.0.3
3425
+ - @pnpm/client@2.0.12
3426
+
3427
+ ## 0.3.45
3428
+
3429
+ ### Patch Changes
3430
+
3431
+ - @pnpm/client@2.0.11
3432
+ - @pnpm/package-store@10.1.7
3433
+ - @pnpm/server@9.0.3
3434
+
3435
+ ## 0.3.44
3436
+
3437
+ ### Patch Changes
3438
+
3439
+ - Updated dependencies [01aecf038]
3440
+ - @pnpm/package-store@10.1.6
3441
+ - @pnpm/server@9.0.3
3442
+ - @pnpm/client@2.0.10
3443
+
3444
+ ## 0.3.43
3445
+
3446
+ ### Patch Changes
3447
+
3448
+ - @pnpm/cli-meta@1.0.1
3449
+ - @pnpm/config@11.7.1
3450
+ - @pnpm/package-store@10.1.5
3451
+ - @pnpm/server@9.0.3
3452
+ - @pnpm/client@2.0.9
3453
+
3454
+ ## 0.3.42
3455
+
3456
+ ### Patch Changes
3457
+
3458
+ - Updated dependencies [50b360ec1]
3459
+ - @pnpm/config@11.7.0
3460
+
3461
+ ## 0.3.41
3462
+
3463
+ ### Patch Changes
3464
+
3465
+ - @pnpm/cli-meta@1.0.1
3466
+ - @pnpm/config@11.6.1
3467
+ - @pnpm/package-store@10.1.4
3468
+ - @pnpm/server@9.0.2
3469
+ - @pnpm/client@2.0.8
3470
+
3471
+ ## 0.3.40
3472
+
3473
+ ### Patch Changes
3474
+
3475
+ - Updated dependencies [f591fdeeb]
3476
+ - Updated dependencies [3a83db407]
3477
+ - @pnpm/config@11.6.0
3478
+ - @pnpm/client@2.0.7
3479
+ - @pnpm/package-store@10.1.3
3480
+ - @pnpm/server@9.0.1
3481
+
3482
+ ## 0.3.39
3483
+
3484
+ ### Patch Changes
3485
+
3486
+ - @pnpm/client@2.0.6
3487
+ - @pnpm/package-store@10.1.2
3488
+ - @pnpm/server@9.0.1
3489
+
3490
+ ## 0.3.38
3491
+
3492
+ ### Patch Changes
3493
+
3494
+ - Updated dependencies [74914c178]
3495
+ - @pnpm/config@11.5.0
3496
+
3497
+ ## 0.3.37
3498
+
3499
+ ### Patch Changes
3500
+
3501
+ - @pnpm/client@2.0.5
3502
+ - @pnpm/package-store@10.1.1
3503
+ - @pnpm/server@9.0.1
3504
+
3505
+ ## 0.3.36
3506
+
3507
+ ### Patch Changes
3508
+
3509
+ - Updated dependencies [23cf3c88b]
3510
+ - @pnpm/config@11.4.0
3511
+
3512
+ ## 0.3.35
3513
+
3514
+ ### Patch Changes
3515
+
3516
+ - Updated dependencies [0a6544043]
3517
+ - @pnpm/package-store@10.1.0
3518
+ - @pnpm/server@9.0.1
3519
+ - @pnpm/client@2.0.4
3520
+
3521
+ ## 0.3.34
3522
+
3523
+ ### Patch Changes
3524
+
3525
+ - Updated dependencies [d94b19b39]
3526
+ - @pnpm/package-store@10.0.2
3527
+ - @pnpm/server@9.0.0
3528
+
3529
+ ## 0.3.33
3530
+
3531
+ ### Patch Changes
3532
+
3533
+ - Updated dependencies [7f74cd173]
3534
+ - Updated dependencies [767212f4e]
3535
+ - Updated dependencies [092f8dd83]
3536
+ - @pnpm/package-store@10.0.1
3537
+ - @pnpm/config@11.3.0
3538
+ - @pnpm/server@9.0.0
3539
+
3540
+ ## 0.3.32
3541
+
3542
+ ### Patch Changes
3543
+
3544
+ - Updated dependencies [86cd72de3]
3545
+ - @pnpm/package-store@10.0.0
3546
+ - @pnpm/server@9.0.0
3547
+ - @pnpm/client@2.0.3
3548
+
3549
+ ## 0.3.31
3550
+
3551
+ ### Patch Changes
3552
+
3553
+ - Updated dependencies [6457562c4]
3554
+ - Updated dependencies [6457562c4]
3555
+ - @pnpm/package-store@9.1.8
3556
+ - @pnpm/server@8.0.9
3557
+ - @pnpm/client@2.0.2
3558
+
3559
+ ## 0.3.30
3560
+
3561
+ ### Patch Changes
3562
+
3563
+ - @pnpm/package-store@9.1.7
3564
+ - @pnpm/server@8.0.8
3565
+
3566
+ ## 0.3.29
3567
+
3568
+ ### Patch Changes
3569
+
3570
+ - Updated dependencies [75a36deba]
3571
+ - Updated dependencies [9f1a29ff9]
3572
+ - @pnpm/error@1.3.1
3573
+ - @pnpm/config@11.2.7
3574
+ - @pnpm/client@2.0.1
3575
+ - @pnpm/package-store@9.1.6
3576
+ - @pnpm/server@8.0.8
3577
+
3578
+ ## 0.3.28
3579
+
3580
+ ### Patch Changes
3581
+
3582
+ - Updated dependencies [ac0d3e122]
3583
+ - @pnpm/config@11.2.6
3584
+
3585
+ ## 0.3.27
3586
+
3587
+ ### Patch Changes
3588
+
3589
+ - Updated dependencies [855f8b00a]
3590
+ - Updated dependencies [972864e0d]
3591
+ - Updated dependencies [a1cdae3dc]
3592
+ - @pnpm/client@2.0.0
3593
+ - @pnpm/config@11.2.5
3594
+ - @pnpm/package-store@9.1.5
3595
+ - @pnpm/server@8.0.8
3596
+
3597
+ ## 0.3.26
3598
+
3599
+ ### Patch Changes
3600
+
3601
+ - Updated dependencies [6d480dd7a]
3602
+ - @pnpm/error@1.3.0
3603
+ - @pnpm/package-store@9.1.4
3604
+ - @pnpm/config@11.2.4
3605
+ - @pnpm/client@1.0.7
3606
+ - @pnpm/server@8.0.8
3607
+
3608
+ ## 0.3.25
3609
+
3610
+ ### Patch Changes
3611
+
3612
+ - Updated dependencies [13c18e397]
3613
+ - @pnpm/config@11.2.3
3614
+
3615
+ ## 0.3.24
3616
+
3617
+ ### Patch Changes
3618
+
3619
+ - Updated dependencies [3f6d35997]
3620
+ - @pnpm/config@11.2.2
3621
+
3622
+ ## 0.3.23
3623
+
3624
+ ### Patch Changes
3625
+
3626
+ - @pnpm/client@1.0.6
3627
+ - @pnpm/package-store@9.1.3
3628
+ - @pnpm/server@8.0.7
3629
+
3630
+ ## 0.3.22
3631
+
3632
+ ### Patch Changes
3633
+
3634
+ - @pnpm/client@1.0.5
3635
+ - @pnpm/package-store@9.1.2
3636
+ - @pnpm/server@8.0.7
3637
+
3638
+ ## 0.3.21
3639
+
3640
+ ### Patch Changes
3641
+
3642
+ - Updated dependencies [a2ef8084f]
3643
+ - @pnpm/cli-meta@1.0.1
3644
+ - @pnpm/config@11.2.1
3645
+ - @pnpm/package-store@9.1.1
3646
+ - @pnpm/client@1.0.4
3647
+ - @pnpm/server@8.0.7
3648
+
3649
+ ## 0.3.20
3650
+
3651
+ ### Patch Changes
3652
+
3653
+ - Updated dependencies [ad69677a7]
3654
+ - @pnpm/config@11.2.0
3655
+
3656
+ ## 0.3.19
3657
+
3658
+ ### Patch Changes
3659
+
3660
+ - Updated dependencies [9a908bc07]
3661
+ - @pnpm/package-store@9.1.0
3662
+ - @pnpm/client@1.0.3
3663
+ - @pnpm/server@8.0.7
3664
+
3665
+ ## 0.3.18
3666
+
3667
+ ### Patch Changes
3668
+
3669
+ - 7b98d16c8: Update lru-cache to v6
3670
+ - Updated dependencies [65b4d07ca]
3671
+ - Updated dependencies [ab3b8f51d]
3672
+ - @pnpm/config@11.1.0
3673
+ - @pnpm/client@1.0.2
3674
+ - @pnpm/server@8.0.6
3675
+ - @pnpm/package-store@9.0.14
3676
+
3677
+ ## 0.3.17
3678
+
3679
+ ### Patch Changes
3680
+
3681
+ - d9310c034: Replace diable with a fork that has fewer dependencies.
3682
+ - @pnpm/client@1.0.1
3683
+ - @pnpm/package-store@9.0.13
3684
+ - @pnpm/server@8.0.5
3685
+
3686
+ ## 0.3.16
3687
+
3688
+ ### Patch Changes
3689
+
3690
+ - @pnpm/config@11.0.1
3691
+
3692
+ ## 0.3.15
3693
+
3694
+ ### Patch Changes
3695
+
3696
+ - Updated dependencies [71aeb9a38]
3697
+ - Updated dependencies [71aeb9a38]
3698
+ - Updated dependencies [915828b46]
3699
+ - @pnpm/config@11.0.0
3700
+ - @pnpm/client@1.0.0
3701
+ - @pnpm/server@8.0.5
3702
+ - @pnpm/package-store@9.0.12
3703
+
3704
+ ## 0.3.14
3705
+
3706
+ ### Patch Changes
3707
+
3708
+ - @pnpm/default-fetcher@6.0.9
3709
+ - @pnpm/package-store@9.0.11
3710
+ - @pnpm/server@8.0.4
3711
+
3712
+ ## 0.3.13
3713
+
3714
+ ### Patch Changes
3715
+
3716
+ - @pnpm/config@10.0.1
3717
+
3718
+ ## 0.3.12
3719
+
3720
+ ### Patch Changes
3721
+
3722
+ - Updated dependencies [db17f6f7b]
3723
+ - Updated dependencies [1146b76d2]
3724
+ - @pnpm/config@10.0.0
3725
+ - @pnpm/cli-meta@1.0.0
3726
+ - @pnpm/package-store@9.0.10
3727
+ - @pnpm/server@8.0.4
3728
+ - @pnpm/default-fetcher@6.0.8
3729
+ - @pnpm/default-resolver@9.0.3
3730
+
3731
+ ## 0.3.11
3732
+
3733
+ ### Patch Changes
3734
+
3735
+ - Updated dependencies [1adacd41e]
3736
+ - @pnpm/package-store@9.0.9
3737
+ - @pnpm/server@8.0.3
3738
+
3739
+ ## 0.3.10
3740
+
3741
+ ### Patch Changes
3742
+
3743
+ - @pnpm/default-resolver@9.0.2
3744
+ - @pnpm/default-fetcher@6.0.7
3745
+ - @pnpm/package-store@9.0.8
3746
+ - @pnpm/server@8.0.3
3747
+
3748
+ ## 0.3.9
3749
+
3750
+ ### Patch Changes
3751
+
3752
+ - Updated dependencies [71a8c8ce3]
3753
+ - @pnpm/config@9.2.0
3754
+ - @pnpm/cli-meta@1.0.0
3755
+ - @pnpm/package-store@9.0.7
3756
+ - @pnpm/server@8.0.3
3757
+ - @pnpm/default-fetcher@6.0.6
3758
+ - @pnpm/default-resolver@9.0.1
3759
+
3760
+ ## 0.3.8
3761
+
3762
+ ### Patch Changes
3763
+
3764
+ - @pnpm/package-store@9.0.6
3765
+ - @pnpm/default-fetcher@6.0.5
3766
+ - @pnpm/server@8.0.2
3767
+
3768
+ ## 0.3.7
3769
+
3770
+ ### Patch Changes
3771
+
3772
+ - Updated dependencies [41d92948b]
3773
+ - @pnpm/default-resolver@9.0.0
3774
+ - @pnpm/package-store@9.0.5
3775
+ - @pnpm/server@8.0.2
3776
+
3777
+ ## 0.3.6
3778
+
3779
+ ### Patch Changes
3780
+
3781
+ - Updated dependencies [d3ddd023c]
3782
+ - @pnpm/package-store@9.0.4
3783
+ - @pnpm/server@8.0.2
3784
+ - @pnpm/default-resolver@8.0.2
3785
+ - @pnpm/default-fetcher@6.0.4
3786
+
3787
+ ## 0.3.5
3788
+
3789
+ ### Patch Changes
3790
+
3791
+ - @pnpm/package-store@9.0.3
3792
+ - @pnpm/server@8.0.1
3793
+
3794
+ ## 0.3.4
3795
+
3796
+ ### Patch Changes
3797
+
3798
+ - @pnpm/default-resolver@8.0.1
3799
+ - @pnpm/package-store@9.0.2
3800
+ - @pnpm/server@8.0.1
3801
+ - @pnpm/default-fetcher@6.0.3
3802
+
3803
+ ## 0.3.3
3804
+
3805
+ ### Patch Changes
3806
+
3807
+ - Updated dependencies [1dcfecb36]
3808
+ - @pnpm/server@8.0.1
3809
+
3810
+ ## 0.3.2
3811
+
3812
+ ### Patch Changes
3813
+
3814
+ - Updated dependencies [ffddf34a8]
3815
+ - Updated dependencies [429c5a560]
3816
+ - @pnpm/config@9.1.0
3817
+ - @pnpm/package-store@9.0.1
3818
+ - @pnpm/default-fetcher@6.0.2
3819
+ - @pnpm/server@8.0.0
3820
+
3821
+ ## 0.3.1
3822
+
3823
+ ### Patch Changes
3824
+
3825
+ - @pnpm/default-fetcher@6.0.1
3826
+
3827
+ ## 0.3.0
3828
+
3829
+ ### Minor Changes
3830
+
3831
+ - 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.
3832
+ - b6a82072e: Using a content-addressable filesystem for storing packages.
3833
+ - 45fdcfde2: Locking is removed.
3834
+
3835
+ ### Patch Changes
3836
+
3837
+ - Updated dependencies [b5f66c0f2]
3838
+ - Updated dependencies [242cf8737]
3839
+ - Updated dependencies [cbc2192f1]
3840
+ - Updated dependencies [f516d266c]
3841
+ - Updated dependencies [ecf2c6b7d]
3842
+ - Updated dependencies [da091c711]
3843
+ - Updated dependencies [a7d20d927]
3844
+ - Updated dependencies [e11019b89]
3845
+ - Updated dependencies [802d145fc]
3846
+ - Updated dependencies [b6a82072e]
3847
+ - Updated dependencies [802d145fc]
3848
+ - Updated dependencies [c207d994f]
3849
+ - Updated dependencies [45fdcfde2]
3850
+ - Updated dependencies [a5febb913]
3851
+ - Updated dependencies [a5febb913]
3852
+ - Updated dependencies [919103471]
3853
+ - @pnpm/package-store@9.0.0
3854
+ - @pnpm/server@8.0.0
3855
+ - @pnpm/config@9.0.0
3856
+ - @pnpm/default-fetcher@6.0.0
3857
+ - @pnpm/cli-meta@1.0.0
3858
+ - @pnpm/default-resolver@7.4.10
3859
+ - @pnpm/error@1.2.1
3860
+
3861
+ ## 0.3.0-alpha.5
3862
+
3863
+ ### Minor Changes
3864
+
3865
+ - 45fdcfde2: Locking is removed.
3866
+
3867
+ ### Patch Changes
3868
+
3869
+ - Updated dependencies [242cf8737]
3870
+ - Updated dependencies [a7d20d927]
3871
+ - Updated dependencies [45fdcfde2]
3872
+ - Updated dependencies [a5febb913]
3873
+ - Updated dependencies [a5febb913]
3874
+ - @pnpm/config@9.0.0-alpha.2
3875
+ - @pnpm/package-store@9.0.0-alpha.5
3876
+ - @pnpm/server@8.0.0-alpha.5
3877
+ - @pnpm/default-fetcher@5.1.19-alpha.5
3878
+
3879
+ ## 0.3.0-alpha.4
3880
+
3881
+ ### Minor Changes
3882
+
3883
+ - 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.
3884
+
3885
+ ### Patch Changes
3886
+
3887
+ - Updated dependencies [ecf2c6b7]
3888
+ - Updated dependencies [da091c71]
3889
+ - @pnpm/package-store@9.0.0-alpha.4
3890
+ - @pnpm/server@8.0.0-alpha.4
3891
+ - @pnpm/default-fetcher@5.1.19-alpha.4
3892
+ - @pnpm/cli-meta@1.0.0-alpha.0
3893
+ - @pnpm/config@8.3.1-alpha.1
3894
+ - @pnpm/default-resolver@7.4.10-alpha.2
3895
+
3896
+ ## 0.3.0-alpha.3
3897
+
3898
+ ### Patch Changes
3899
+
3900
+ - Updated dependencies [b5f66c0f2]
3901
+ - @pnpm/package-store@9.0.0-alpha.3
3902
+ - @pnpm/server@8.0.0-alpha.3
3903
+ - @pnpm/config@8.3.1-alpha.0
3904
+ - @pnpm/default-resolver@7.4.10-alpha.1
3905
+ - @pnpm/default-fetcher@5.1.19-alpha.3
3906
+
3907
+ ## 0.2.32-alpha.2
3908
+
3909
+ ### Patch Changes
3910
+
3911
+ - Updated dependencies [c207d994f]
3912
+ - Updated dependencies [919103471]
3913
+ - @pnpm/package-store@9.0.0-alpha.2
3914
+ - @pnpm/server@8.0.0-alpha.2
3915
+ - @pnpm/default-fetcher@5.1.19-alpha.2
3916
+ - @pnpm/default-resolver@7.4.10-alpha.0
3917
+
3918
+ ## 0.3.0-alpha.1
3919
+
3920
+ ### Patch Changes
3921
+
3922
+ - Updated dependencies [4f62d0383]
3923
+ - @pnpm/package-store@9.0.0-alpha.1
3924
+ - @pnpm/server@7.0.5-alpha.1
3925
+ - @pnpm/default-fetcher@5.1.19-alpha.1
3926
+
3927
+ ## 0.3.0-alpha.0
3928
+
3929
+ ### Minor Changes
3930
+
3931
+ - 91c4b5954: Using a content-addressable filesystem for storing packages.
3932
+
3933
+ ### Patch Changes
3934
+
3935
+ - Updated dependencies [91c4b5954]
3936
+ - @pnpm/default-fetcher@6.0.0-alpha.0
3937
+ - @pnpm/package-store@9.0.0-alpha.0
3938
+ - @pnpm/server@8.0.0-alpha.0
3939
+
3940
+ ## 0.2.31
3941
+
3942
+ ### Patch Changes
3943
+
3944
+ - 907c63a48: Update `@pnpm/store-path`.
3945
+ - 907c63a48: Dependencies updated.
3946
+ - 907c63a48: Use `fs.mkdir` instead of `make-dir`.
3947
+ - Updated dependencies [907c63a48]
3948
+ - Updated dependencies [907c63a48]
3949
+ - @pnpm/package-store@8.1.0
3950
+ - @pnpm/server@7.0.4
3951
+ - @pnpm/default-fetcher@5.1.18
3952
+ - @pnpm/default-resolver@7.4.9