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