@pnpm/installing.env-installer 1102.0.4 → 1102.0.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 +891 -0
- package/package.json +16 -16
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,891 @@
|
|
|
1
|
+
# @pnpm/config.deps-installer
|
|
2
|
+
|
|
3
|
+
## 1102.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3c6718b]
|
|
8
|
+
- Updated dependencies [252f15e]
|
|
9
|
+
- @pnpm/installing.deps-resolver@1100.2.8
|
|
10
|
+
- @pnpm/lockfile.utils@1100.1.2
|
|
11
|
+
- @pnpm/store.controller@1102.0.4
|
|
12
|
+
- @pnpm/deps.graph-hasher@1100.2.9
|
|
13
|
+
- @pnpm/lockfile.fs@1100.1.10
|
|
14
|
+
|
|
15
|
+
## 1102.0.4
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 51300fd: Fixed a path traversal vulnerability where a dependency whose manifest `name` was a scoped path traversal (e.g. `@x/../../../<path>`) could be written outside `node_modules` to an attacker-controlled location during `pnpm install`, even with `--ignore-scripts`. The isolated linker now validates the package name before using it as a directory name, matching the existing protection in the hoisted linker.
|
|
20
|
+
- Updated dependencies [3067e4f]
|
|
21
|
+
- Updated dependencies [51300fd]
|
|
22
|
+
- Updated dependencies [f8058eb]
|
|
23
|
+
- Updated dependencies [51300fd]
|
|
24
|
+
- Updated dependencies [14332f0]
|
|
25
|
+
- Updated dependencies [fecfe83]
|
|
26
|
+
- @pnpm/resolving.npm-resolver@1102.1.2
|
|
27
|
+
- @pnpm/deps.graph-hasher@1100.2.8
|
|
28
|
+
- @pnpm/lockfile.fs@1100.1.9
|
|
29
|
+
- @pnpm/installing.deps-resolver@1100.2.7
|
|
30
|
+
- @pnpm/store.controller@1102.0.3
|
|
31
|
+
|
|
32
|
+
## 1102.0.3
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [25c7388]
|
|
37
|
+
- Updated dependencies [99982b9]
|
|
38
|
+
- Updated dependencies [11a7fdd]
|
|
39
|
+
- Updated dependencies [dcabb78]
|
|
40
|
+
- Updated dependencies [dcabb78]
|
|
41
|
+
- Updated dependencies [a6c4d5f]
|
|
42
|
+
- @pnpm/resolving.npm-resolver@1102.1.1
|
|
43
|
+
- @pnpm/installing.deps-resolver@1100.2.6
|
|
44
|
+
- @pnpm/store.controller-types@1100.1.7
|
|
45
|
+
- @pnpm/deps.graph-hasher@1100.2.7
|
|
46
|
+
- @pnpm/lockfile.types@1100.0.13
|
|
47
|
+
- @pnpm/lockfile.utils@1100.1.1
|
|
48
|
+
- @pnpm/store.controller@1102.0.3
|
|
49
|
+
- @pnpm/lockfile.fs@1100.1.8
|
|
50
|
+
- @pnpm/lockfile.pruner@1100.0.13
|
|
51
|
+
- @pnpm/worker@1100.2.3
|
|
52
|
+
- @pnpm/config.writer@1100.0.15
|
|
53
|
+
|
|
54
|
+
## 1102.0.2
|
|
55
|
+
|
|
56
|
+
### Patch Changes
|
|
57
|
+
|
|
58
|
+
- a84d2a1: Add `@pnpm/resolving.tarball-url`, which builds and recognizes the canonical npm tarball URL of a package. It vendors `getNpmTarballUrl` (previously the external `get-npm-tarball-url` package) and adds `isCanonicalRegistryTarballUrl`, the predicate the lockfile writer uses to decide whether a tarball URL is derivable from name+version+registry (and can therefore be omitted from `pnpm-lock.yaml`).
|
|
59
|
+
|
|
60
|
+
Exposing `isCanonicalRegistryTarballUrl` lets a custom resolver (pnpmfile `resolvers`) fronting a proxy that serves tarballs on a non-canonical path (e.g. an ephemeral `localhost:<port>`) rewrite the resolved tarball to the canonical form, so nothing host-specific is persisted to the lockfile. Previously this logic was private to `@pnpm/lockfile.utils`.
|
|
61
|
+
|
|
62
|
+
Two correctness fixes are included while consolidating the logic: the scoped-package unescape now handles uppercase `%2F` as well as `%2f` (percent-encoding is case-insensitive), and protocol-insensitive comparison strips only a leading `http(s)://` scheme instead of splitting on the first `://` (which could truncate URLs containing a later `://`).
|
|
63
|
+
|
|
64
|
+
- Updated dependencies [bae694f]
|
|
65
|
+
- Updated dependencies [1cbb5f2]
|
|
66
|
+
- Updated dependencies [05b95ab]
|
|
67
|
+
- Updated dependencies [322f88f]
|
|
68
|
+
- Updated dependencies [fa7004b]
|
|
69
|
+
- Updated dependencies [a84d2a1]
|
|
70
|
+
- Updated dependencies [852d537]
|
|
71
|
+
- @pnpm/resolving.npm-resolver@1102.1.0
|
|
72
|
+
- @pnpm/installing.deps-resolver@1100.2.5
|
|
73
|
+
- @pnpm/store.controller-types@1100.1.6
|
|
74
|
+
- @pnpm/lockfile.utils@1100.1.0
|
|
75
|
+
- @pnpm/network.fetch@1100.1.4
|
|
76
|
+
- @pnpm/resolving.tarball-url@1100.0.0
|
|
77
|
+
- @pnpm/error@1100.0.1
|
|
78
|
+
- @pnpm/config.writer@1100.0.14
|
|
79
|
+
- @pnpm/deps.graph-hasher@1100.2.6
|
|
80
|
+
- @pnpm/lockfile.types@1100.0.12
|
|
81
|
+
- @pnpm/store.controller@1102.0.2
|
|
82
|
+
- @pnpm/lockfile.fs@1100.1.7
|
|
83
|
+
- @pnpm/config.package-is-installable@1100.0.12
|
|
84
|
+
- @pnpm/network.auth-header@1101.1.3
|
|
85
|
+
- @pnpm/pkg-manifest.reader@1100.0.9
|
|
86
|
+
- @pnpm/worker@1100.2.2
|
|
87
|
+
- @pnpm/lockfile.pruner@1100.0.12
|
|
88
|
+
|
|
89
|
+
## 1102.0.1
|
|
90
|
+
|
|
91
|
+
### Patch Changes
|
|
92
|
+
|
|
93
|
+
- bee4bf4: Security: validate config dependency names and versions from the env lockfile (`pnpm-lock.yaml`) before using them to build filesystem paths. A committed lockfile with a traversal-shaped `configDependencies` name (such as `../../PWNED`) or version (such as `../../../PWNED`) could previously cause `pnpm install` to create symlinks or write package files outside `node_modules/.pnpm-config` and the store. Names must now be valid npm package names and versions must be exact semver versions; the same validation is applied to optional subdependencies of config dependencies, and to the legacy workspace-manifest format before any lockfile is written. See [GHSA-qrv3-253h-g69c](https://github.com/pnpm/pnpm/security/advisories/GHSA-qrv3-253h-g69c).
|
|
94
|
+
- Updated dependencies [29ab905]
|
|
95
|
+
- Updated dependencies [96bdd57]
|
|
96
|
+
- Updated dependencies [61969fb]
|
|
97
|
+
- Updated dependencies [5c12968]
|
|
98
|
+
- Updated dependencies [531f2a3]
|
|
99
|
+
- Updated dependencies [fe66535]
|
|
100
|
+
- Updated dependencies [817f99d]
|
|
101
|
+
- @pnpm/resolving.npm-resolver@1102.0.1
|
|
102
|
+
- @pnpm/installing.deps-resolver@1100.2.4
|
|
103
|
+
- @pnpm/lockfile.fs@1100.1.6
|
|
104
|
+
- @pnpm/store.controller@1102.0.1
|
|
105
|
+
- @pnpm/worker@1100.2.1
|
|
106
|
+
|
|
107
|
+
## 1102.0.0
|
|
108
|
+
|
|
109
|
+
### Patch Changes
|
|
110
|
+
|
|
111
|
+
- a31faa7: Updated dependency ranges. Notably:
|
|
112
|
+
|
|
113
|
+
- `@pnpm/logger` peer dependency range moved to `^1100.0.0`.
|
|
114
|
+
- `msgpackr` 1.11.8 → 2.0.4 (store index files remain byte-compatible in both directions).
|
|
115
|
+
- `open` ^7.4.2 → ^11.0.0, `memoize` ^10 → ^11, `cli-truncate` ^5 → ^6, `pidtree` ^0.6 → ^1.
|
|
116
|
+
- `@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.
|
|
117
|
+
|
|
118
|
+
- Updated dependencies [f648e9b]
|
|
119
|
+
- Updated dependencies [9b35a60]
|
|
120
|
+
- Updated dependencies [61810aa]
|
|
121
|
+
- Updated dependencies [f20ad8f]
|
|
122
|
+
- Updated dependencies [3a27141]
|
|
123
|
+
- Updated dependencies [681b593]
|
|
124
|
+
- Updated dependencies [d50d691]
|
|
125
|
+
- Updated dependencies [1310ab5]
|
|
126
|
+
- Updated dependencies [a31faa7]
|
|
127
|
+
- @pnpm/installing.deps-resolver@1100.2.3
|
|
128
|
+
- @pnpm/store.controller@1102.0.0
|
|
129
|
+
- @pnpm/resolving.npm-resolver@1102.0.0
|
|
130
|
+
- @pnpm/worker@1100.2.0
|
|
131
|
+
- @pnpm/lockfile.utils@1100.0.13
|
|
132
|
+
- @pnpm/network.auth-header@1101.1.2
|
|
133
|
+
- @pnpm/types@1101.3.2
|
|
134
|
+
- @pnpm/lockfile.fs@1100.1.5
|
|
135
|
+
- @pnpm/config.package-is-installable@1100.0.11
|
|
136
|
+
- @pnpm/core-loggers@1100.2.1
|
|
137
|
+
- @pnpm/network.fetch@1100.1.3
|
|
138
|
+
- @pnpm/deps.graph-hasher@1100.2.5
|
|
139
|
+
- @pnpm/config.pick-registry-for-package@1100.0.9
|
|
140
|
+
- @pnpm/config.writer@1100.0.13
|
|
141
|
+
- @pnpm/lockfile.pruner@1100.0.11
|
|
142
|
+
- @pnpm/lockfile.types@1100.0.11
|
|
143
|
+
- @pnpm/pkg-manifest.reader@1100.0.8
|
|
144
|
+
- @pnpm/store.controller-types@1100.1.5
|
|
145
|
+
|
|
146
|
+
## 1101.1.8
|
|
147
|
+
|
|
148
|
+
### Patch Changes
|
|
149
|
+
|
|
150
|
+
- Updated dependencies [f11b4fc]
|
|
151
|
+
- Updated dependencies [52be454]
|
|
152
|
+
- @pnpm/core-loggers@1100.2.0
|
|
153
|
+
- @pnpm/config.package-is-installable@1100.0.10
|
|
154
|
+
- @pnpm/installing.deps-resolver@1100.2.2
|
|
155
|
+
- @pnpm/network.fetch@1100.1.2
|
|
156
|
+
- @pnpm/resolving.npm-resolver@1101.5.2
|
|
157
|
+
- @pnpm/store.controller@1101.0.13
|
|
158
|
+
- @pnpm/worker@1100.1.11
|
|
159
|
+
|
|
160
|
+
## 1101.1.7
|
|
161
|
+
|
|
162
|
+
### Patch Changes
|
|
163
|
+
|
|
164
|
+
- Updated dependencies [089484a]
|
|
165
|
+
- Updated dependencies [29a496a]
|
|
166
|
+
- Updated dependencies [bf1b731]
|
|
167
|
+
- @pnpm/worker@1100.1.10
|
|
168
|
+
- @pnpm/installing.deps-resolver@1100.2.1
|
|
169
|
+
- @pnpm/deps.graph-hasher@1100.2.4
|
|
170
|
+
- @pnpm/types@1101.3.1
|
|
171
|
+
- @pnpm/config.package-is-installable@1100.0.9
|
|
172
|
+
- @pnpm/config.pick-registry-for-package@1100.0.8
|
|
173
|
+
- @pnpm/config.writer@1100.0.12
|
|
174
|
+
- @pnpm/core-loggers@1100.1.4
|
|
175
|
+
- @pnpm/lockfile.fs@1100.1.4
|
|
176
|
+
- @pnpm/lockfile.pruner@1100.0.10
|
|
177
|
+
- @pnpm/lockfile.types@1100.0.10
|
|
178
|
+
- @pnpm/lockfile.utils@1100.0.12
|
|
179
|
+
- @pnpm/network.auth-header@1101.1.1
|
|
180
|
+
- @pnpm/network.fetch@1100.1.1
|
|
181
|
+
- @pnpm/pkg-manifest.reader@1100.0.7
|
|
182
|
+
- @pnpm/resolving.npm-resolver@1101.5.1
|
|
183
|
+
- @pnpm/store.controller@1101.0.12
|
|
184
|
+
- @pnpm/store.controller-types@1100.1.4
|
|
185
|
+
|
|
186
|
+
## 1101.1.6
|
|
187
|
+
|
|
188
|
+
### Patch Changes
|
|
189
|
+
|
|
190
|
+
- Updated dependencies [60a1eec]
|
|
191
|
+
- Updated dependencies [5192edf]
|
|
192
|
+
- Updated dependencies [3b76b8e]
|
|
193
|
+
- Updated dependencies [1c73e83]
|
|
194
|
+
- Updated dependencies [a017bf3]
|
|
195
|
+
- Updated dependencies [722b9cd]
|
|
196
|
+
- Updated dependencies [6d17b66]
|
|
197
|
+
- @pnpm/network.fetch@1100.1.0
|
|
198
|
+
- @pnpm/network.auth-header@1101.1.0
|
|
199
|
+
- @pnpm/worker@1100.1.9
|
|
200
|
+
- @pnpm/installing.deps-resolver@1100.2.0
|
|
201
|
+
- @pnpm/types@1101.3.0
|
|
202
|
+
- @pnpm/resolving.npm-resolver@1101.5.0
|
|
203
|
+
- @pnpm/config.package-is-installable@1100.0.8
|
|
204
|
+
- @pnpm/config.pick-registry-for-package@1100.0.7
|
|
205
|
+
- @pnpm/config.writer@1100.0.11
|
|
206
|
+
- @pnpm/core-loggers@1100.1.3
|
|
207
|
+
- @pnpm/deps.graph-hasher@1100.2.3
|
|
208
|
+
- @pnpm/lockfile.fs@1100.1.3
|
|
209
|
+
- @pnpm/lockfile.pruner@1100.0.9
|
|
210
|
+
- @pnpm/lockfile.types@1100.0.9
|
|
211
|
+
- @pnpm/lockfile.utils@1100.0.11
|
|
212
|
+
- @pnpm/pkg-manifest.reader@1100.0.6
|
|
213
|
+
- @pnpm/store.controller@1101.0.11
|
|
214
|
+
- @pnpm/store.controller-types@1100.1.3
|
|
215
|
+
|
|
216
|
+
## 1101.1.5
|
|
217
|
+
|
|
218
|
+
### Patch Changes
|
|
219
|
+
|
|
220
|
+
- Updated dependencies [6f382f4]
|
|
221
|
+
- Updated dependencies [122ab0a]
|
|
222
|
+
- Updated dependencies [1db05c6]
|
|
223
|
+
- @pnpm/installing.deps-resolver@1100.1.6
|
|
224
|
+
|
|
225
|
+
## 1101.1.4
|
|
226
|
+
|
|
227
|
+
### Patch Changes
|
|
228
|
+
|
|
229
|
+
- Updated dependencies [39101f5]
|
|
230
|
+
- Updated dependencies [b1fa2d5]
|
|
231
|
+
- Updated dependencies [6235428]
|
|
232
|
+
- Updated dependencies [1e9ab29]
|
|
233
|
+
- @pnpm/installing.deps-resolver@1100.1.5
|
|
234
|
+
- @pnpm/network.fetch@1100.0.8
|
|
235
|
+
- @pnpm/resolving.npm-resolver@1101.4.0
|
|
236
|
+
- @pnpm/store.controller@1101.0.10
|
|
237
|
+
|
|
238
|
+
## 1101.1.3
|
|
239
|
+
|
|
240
|
+
### Patch Changes
|
|
241
|
+
|
|
242
|
+
- Updated dependencies [a23956e]
|
|
243
|
+
- Updated dependencies [aa6149d]
|
|
244
|
+
- Updated dependencies [ad84fff]
|
|
245
|
+
- Updated dependencies [e55f4b5]
|
|
246
|
+
- Updated dependencies [35d2355]
|
|
247
|
+
- Updated dependencies [0721d64]
|
|
248
|
+
- @pnpm/network.auth-header@1101.0.0
|
|
249
|
+
- @pnpm/worker@1100.1.8
|
|
250
|
+
- @pnpm/installing.deps-resolver@1100.1.4
|
|
251
|
+
- @pnpm/lockfile.utils@1100.0.10
|
|
252
|
+
- @pnpm/types@1101.2.0
|
|
253
|
+
- @pnpm/resolving.npm-resolver@1101.3.3
|
|
254
|
+
- @pnpm/deps.graph-hasher@1100.2.2
|
|
255
|
+
- @pnpm/lockfile.fs@1100.1.2
|
|
256
|
+
- @pnpm/config.package-is-installable@1100.0.7
|
|
257
|
+
- @pnpm/config.pick-registry-for-package@1100.0.6
|
|
258
|
+
- @pnpm/config.writer@1100.0.10
|
|
259
|
+
- @pnpm/core-loggers@1100.1.2
|
|
260
|
+
- @pnpm/lockfile.pruner@1100.0.8
|
|
261
|
+
- @pnpm/lockfile.types@1100.0.8
|
|
262
|
+
- @pnpm/network.fetch@1100.0.7
|
|
263
|
+
- @pnpm/pkg-manifest.reader@1100.0.5
|
|
264
|
+
- @pnpm/store.controller@1101.0.9
|
|
265
|
+
- @pnpm/store.controller-types@1100.1.2
|
|
266
|
+
|
|
267
|
+
## 1101.1.2
|
|
268
|
+
|
|
269
|
+
### Patch Changes
|
|
270
|
+
|
|
271
|
+
- 155af87: Fixed `pnpm add --config` leaving orphan entries in `pnpm-lock.env.yaml` (the optional subdependencies of the previously resolved version of the updated config dependency).
|
|
272
|
+
- Updated dependencies [3422cec]
|
|
273
|
+
- Updated dependencies [e0bd879]
|
|
274
|
+
- Updated dependencies [212315d]
|
|
275
|
+
- @pnpm/installing.deps-resolver@1100.1.3
|
|
276
|
+
- @pnpm/resolving.npm-resolver@1101.3.2
|
|
277
|
+
- @pnpm/store.controller@1101.0.8
|
|
278
|
+
|
|
279
|
+
## 1101.1.1
|
|
280
|
+
|
|
281
|
+
### Patch Changes
|
|
282
|
+
|
|
283
|
+
- 2061c55: Mark optional subdependency snapshots of config dependencies with `optional: true` in the env lockfile, matching how optional dependencies are recorded elsewhere in `pnpm-lock.yaml`. Previously, snapshots for the platform-specific subdeps pulled in via a config dep's `optionalDependencies` were written as empty objects, which was inconsistent with the rest of the lockfile and made it look like those non-host platform variants were required.
|
|
284
|
+
- e5e7b72: Don't print "Installing config dependencies..." when config dependencies are already installed and nothing needs to be fetched, re-linked, or removed.
|
|
285
|
+
- Updated dependencies [097983f]
|
|
286
|
+
- @pnpm/config.pick-registry-for-package@1100.0.5
|
|
287
|
+
- @pnpm/resolving.npm-resolver@1101.3.1
|
|
288
|
+
- @pnpm/installing.deps-resolver@1100.1.2
|
|
289
|
+
- @pnpm/store.controller@1101.0.8
|
|
290
|
+
|
|
291
|
+
## 1101.1.0
|
|
292
|
+
|
|
293
|
+
### Minor Changes
|
|
294
|
+
|
|
295
|
+
- c8d8fde: `configDependencies` now resolve and install one level of `optionalDependencies` declared by the config dependency, with `os`/`cpu`/`libc` platform filtering applied at install time. This unlocks the esbuild/swc-style pattern where a package ships platform-specific binaries via `optionalDependencies` — a config dependency can now do the same and have the matching binary symlinked next to it in the global virtual store, so `require('pkg-platform-arch')` from inside the config dependency resolves correctly.
|
|
296
|
+
|
|
297
|
+
The env lockfile records all platform variants regardless of host platform, so it remains portable across machines. Each entry in a config dependency's `optionalDependencies` must declare an exact version — ranges and tags are rejected to keep installs reproducible.
|
|
298
|
+
|
|
299
|
+
### Patch Changes
|
|
300
|
+
|
|
301
|
+
- Updated dependencies [9cb48bb]
|
|
302
|
+
- Updated dependencies [3a54205]
|
|
303
|
+
- Updated dependencies [1627943]
|
|
304
|
+
- Updated dependencies [64afc92]
|
|
305
|
+
- @pnpm/lockfile.fs@1100.1.1
|
|
306
|
+
- @pnpm/resolving.npm-resolver@1101.3.0
|
|
307
|
+
- @pnpm/types@1101.1.1
|
|
308
|
+
- @pnpm/installing.deps-resolver@1100.1.1
|
|
309
|
+
- @pnpm/store.controller@1101.0.8
|
|
310
|
+
- @pnpm/deps.graph-hasher@1100.2.1
|
|
311
|
+
- @pnpm/lockfile.types@1100.0.7
|
|
312
|
+
- @pnpm/lockfile.utils@1100.0.9
|
|
313
|
+
- @pnpm/store.controller-types@1100.1.1
|
|
314
|
+
- @pnpm/config.package-is-installable@1100.0.6
|
|
315
|
+
- @pnpm/config.pick-registry-for-package@1100.0.4
|
|
316
|
+
- @pnpm/config.writer@1100.0.9
|
|
317
|
+
- @pnpm/core-loggers@1100.1.1
|
|
318
|
+
- @pnpm/lockfile.pruner@1100.0.7
|
|
319
|
+
- @pnpm/network.auth-header@1100.0.3
|
|
320
|
+
- @pnpm/network.fetch@1100.0.6
|
|
321
|
+
- @pnpm/pkg-manifest.reader@1100.0.4
|
|
322
|
+
- @pnpm/worker@1100.1.7
|
|
323
|
+
|
|
324
|
+
## 1101.0.10
|
|
325
|
+
|
|
326
|
+
### Patch Changes
|
|
327
|
+
|
|
328
|
+
- Updated dependencies [963861c]
|
|
329
|
+
- Updated dependencies [4195766]
|
|
330
|
+
- Updated dependencies [31538bf]
|
|
331
|
+
- Updated dependencies [b6e2c8c]
|
|
332
|
+
- Updated dependencies [6e93f35]
|
|
333
|
+
- Updated dependencies [3ddde2b]
|
|
334
|
+
- Updated dependencies [5dc8be8]
|
|
335
|
+
- Updated dependencies [4a79336]
|
|
336
|
+
- Updated dependencies [2a9bd89]
|
|
337
|
+
- @pnpm/resolving.npm-resolver@1101.2.0
|
|
338
|
+
- @pnpm/store.controller-types@1100.1.0
|
|
339
|
+
- @pnpm/installing.deps-resolver@1100.1.0
|
|
340
|
+
- @pnpm/lockfile.fs@1100.1.0
|
|
341
|
+
- @pnpm/deps.graph-hasher@1100.2.0
|
|
342
|
+
- @pnpm/core-loggers@1100.1.0
|
|
343
|
+
- @pnpm/lockfile.types@1100.0.6
|
|
344
|
+
- @pnpm/lockfile.utils@1100.0.8
|
|
345
|
+
- @pnpm/store.controller@1101.0.7
|
|
346
|
+
- @pnpm/network.fetch@1100.0.5
|
|
347
|
+
- @pnpm/lockfile.pruner@1100.0.6
|
|
348
|
+
- @pnpm/worker@1100.1.6
|
|
349
|
+
- @pnpm/config.writer@1100.0.8
|
|
350
|
+
|
|
351
|
+
## 1101.0.9
|
|
352
|
+
|
|
353
|
+
### Patch Changes
|
|
354
|
+
|
|
355
|
+
- Updated dependencies [50b33c1]
|
|
356
|
+
- Updated dependencies [18a464f]
|
|
357
|
+
- Updated dependencies [e526f89]
|
|
358
|
+
- Updated dependencies [180aee9]
|
|
359
|
+
- Updated dependencies [c2c2890]
|
|
360
|
+
- @pnpm/resolving.npm-resolver@1101.1.1
|
|
361
|
+
- @pnpm/network.fetch@1100.0.4
|
|
362
|
+
- @pnpm/lockfile.fs@1100.0.8
|
|
363
|
+
- @pnpm/installing.deps-resolver@1100.0.10
|
|
364
|
+
- @pnpm/store.controller-types@1100.0.7
|
|
365
|
+
- @pnpm/store.controller@1101.0.6
|
|
366
|
+
- @pnpm/worker@1100.1.5
|
|
367
|
+
|
|
368
|
+
## 1101.0.8
|
|
369
|
+
|
|
370
|
+
### Patch Changes
|
|
371
|
+
|
|
372
|
+
- Updated dependencies [20e7aff]
|
|
373
|
+
- Updated dependencies [b61e268]
|
|
374
|
+
- @pnpm/network.fetch@1100.0.3
|
|
375
|
+
- @pnpm/resolving.npm-resolver@1101.1.0
|
|
376
|
+
- @pnpm/types@1101.1.0
|
|
377
|
+
- @pnpm/installing.deps-resolver@1100.0.9
|
|
378
|
+
- @pnpm/config.pick-registry-for-package@1100.0.3
|
|
379
|
+
- @pnpm/config.writer@1100.0.7
|
|
380
|
+
- @pnpm/core-loggers@1100.0.2
|
|
381
|
+
- @pnpm/deps.graph-hasher@1100.1.5
|
|
382
|
+
- @pnpm/lockfile.fs@1100.0.7
|
|
383
|
+
- @pnpm/lockfile.pruner@1100.0.5
|
|
384
|
+
- @pnpm/lockfile.types@1100.0.5
|
|
385
|
+
- @pnpm/lockfile.utils@1100.0.7
|
|
386
|
+
- @pnpm/network.auth-header@1100.0.2
|
|
387
|
+
- @pnpm/pkg-manifest.reader@1100.0.3
|
|
388
|
+
- @pnpm/store.controller@1101.0.5
|
|
389
|
+
- @pnpm/store.controller-types@1100.0.6
|
|
390
|
+
- @pnpm/worker@1100.1.4
|
|
391
|
+
|
|
392
|
+
## 1101.0.7
|
|
393
|
+
|
|
394
|
+
### Patch Changes
|
|
395
|
+
|
|
396
|
+
- Updated dependencies [15e9e35]
|
|
397
|
+
- @pnpm/resolving.npm-resolver@1101.0.3
|
|
398
|
+
- @pnpm/store.controller@1101.0.4
|
|
399
|
+
- @pnpm/worker@1100.1.3
|
|
400
|
+
- @pnpm/installing.deps-resolver@1100.0.8
|
|
401
|
+
|
|
402
|
+
## 1101.0.6
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- Updated dependencies [cfa271b]
|
|
407
|
+
- @pnpm/lockfile.utils@1100.0.6
|
|
408
|
+
- @pnpm/deps.graph-hasher@1100.1.4
|
|
409
|
+
- @pnpm/installing.deps-resolver@1100.0.7
|
|
410
|
+
- @pnpm/lockfile.fs@1100.0.6
|
|
411
|
+
- @pnpm/store.controller@1101.0.3
|
|
412
|
+
|
|
413
|
+
## 1101.0.5
|
|
414
|
+
|
|
415
|
+
### Patch Changes
|
|
416
|
+
|
|
417
|
+
- Updated dependencies [27425d7]
|
|
418
|
+
- @pnpm/lockfile.fs@1100.0.5
|
|
419
|
+
- @pnpm/lockfile.types@1100.0.4
|
|
420
|
+
- @pnpm/lockfile.utils@1100.0.5
|
|
421
|
+
- @pnpm/installing.deps-resolver@1100.0.6
|
|
422
|
+
- @pnpm/store.controller@1101.0.3
|
|
423
|
+
- @pnpm/deps.graph-hasher@1100.1.3
|
|
424
|
+
- @pnpm/lockfile.pruner@1100.0.4
|
|
425
|
+
- @pnpm/resolving.npm-resolver@1101.0.2
|
|
426
|
+
- @pnpm/store.controller-types@1100.0.5
|
|
427
|
+
- @pnpm/config.writer@1100.0.6
|
|
428
|
+
- @pnpm/worker@1100.1.2
|
|
429
|
+
|
|
430
|
+
## 1101.0.4
|
|
431
|
+
|
|
432
|
+
### Patch Changes
|
|
433
|
+
|
|
434
|
+
- @pnpm/config.writer@1100.0.5
|
|
435
|
+
- @pnpm/store.controller@1101.0.2
|
|
436
|
+
|
|
437
|
+
## 1101.0.3
|
|
438
|
+
|
|
439
|
+
### Patch Changes
|
|
440
|
+
|
|
441
|
+
- Updated dependencies [184ce26]
|
|
442
|
+
- Updated dependencies [6b891a5]
|
|
443
|
+
- @pnpm/resolving.parse-wanted-dependency@1100.0.1
|
|
444
|
+
- @pnpm/config.pick-registry-for-package@1100.0.2
|
|
445
|
+
- @pnpm/resolving.npm-resolver@1101.0.1
|
|
446
|
+
- @pnpm/store.controller-types@1100.0.4
|
|
447
|
+
- @pnpm/fs.read-modules-dir@1100.0.1
|
|
448
|
+
- @pnpm/pkg-manifest.reader@1100.0.2
|
|
449
|
+
- @pnpm/deps.graph-hasher@1100.1.2
|
|
450
|
+
- @pnpm/store.controller@1101.0.2
|
|
451
|
+
- @pnpm/config.writer@1100.0.4
|
|
452
|
+
- @pnpm/network.fetch@1100.0.2
|
|
453
|
+
- @pnpm/lockfile.utils@1100.0.4
|
|
454
|
+
- @pnpm/worker@1100.1.1
|
|
455
|
+
- @pnpm/installing.deps-resolver@1100.0.5
|
|
456
|
+
- @pnpm/lockfile.types@1100.0.3
|
|
457
|
+
- @pnpm/lockfile.fs@1100.0.4
|
|
458
|
+
- @pnpm/lockfile.pruner@1100.0.3
|
|
459
|
+
|
|
460
|
+
## 1101.0.2
|
|
461
|
+
|
|
462
|
+
### Patch Changes
|
|
463
|
+
|
|
464
|
+
- @pnpm/store.controller@1101.0.1
|
|
465
|
+
|
|
466
|
+
## 1101.0.1
|
|
467
|
+
|
|
468
|
+
### Patch Changes
|
|
469
|
+
|
|
470
|
+
- @pnpm/config.writer@1100.0.3
|
|
471
|
+
- @pnpm/store.controller@1101.0.0
|
|
472
|
+
|
|
473
|
+
## 1101.0.0
|
|
474
|
+
|
|
475
|
+
### Patch Changes
|
|
476
|
+
|
|
477
|
+
- Updated dependencies [421317c]
|
|
478
|
+
- @pnpm/worker@1100.1.0
|
|
479
|
+
- @pnpm/store.controller@1101.0.0
|
|
480
|
+
- @pnpm/store.controller-types@1100.0.3
|
|
481
|
+
- @pnpm/resolving.npm-resolver@1101.0.0
|
|
482
|
+
- @pnpm/installing.deps-resolver@1100.0.4
|
|
483
|
+
- @pnpm/lockfile.utils@1100.0.3
|
|
484
|
+
- @pnpm/deps.graph-hasher@1100.1.1
|
|
485
|
+
- @pnpm/lockfile.fs@1100.0.3
|
|
486
|
+
|
|
487
|
+
## 1100.1.1
|
|
488
|
+
|
|
489
|
+
### Patch Changes
|
|
490
|
+
|
|
491
|
+
- Updated dependencies [c86c423]
|
|
492
|
+
- Updated dependencies [72c1e05]
|
|
493
|
+
- Updated dependencies [9e0833c]
|
|
494
|
+
- @pnpm/installing.deps-resolver@1100.0.3
|
|
495
|
+
- @pnpm/deps.graph-hasher@1100.1.0
|
|
496
|
+
- @pnpm/resolving.npm-resolver@1100.1.0
|
|
497
|
+
- @pnpm/lockfile.types@1100.0.2
|
|
498
|
+
- @pnpm/lockfile.utils@1100.0.2
|
|
499
|
+
- @pnpm/store.controller@1100.0.2
|
|
500
|
+
- @pnpm/store.controller-types@1100.0.2
|
|
501
|
+
- @pnpm/lockfile.fs@1100.0.2
|
|
502
|
+
- @pnpm/lockfile.pruner@1100.0.2
|
|
503
|
+
- @pnpm/worker@1100.0.2
|
|
504
|
+
- @pnpm/config.writer@1100.0.2
|
|
505
|
+
|
|
506
|
+
## 1100.1.0
|
|
507
|
+
|
|
508
|
+
### Minor Changes
|
|
509
|
+
|
|
510
|
+
- ea2a7fb: When pnpm is declared via the `packageManager` field in `package.json`, its resolution info is no longer written to `pnpm-lock.yaml` — unless the pinned pnpm version is v12 or newer. The `packageManagerDependencies` section is still populated (and reused across runs) when pnpm is declared via `devEngines.packageManager`. This makes the transition from pnpm v10 to v11 quieter by avoiding unnecessary lockfile churn for projects that pin an older pnpm in the legacy `packageManager` field.
|
|
511
|
+
|
|
512
|
+
### Patch Changes
|
|
513
|
+
|
|
514
|
+
- @pnpm/installing.deps-resolver@1100.0.2
|
|
515
|
+
- @pnpm/store.controller@1100.0.1
|
|
516
|
+
|
|
517
|
+
## 1100.0.1
|
|
518
|
+
|
|
519
|
+
### Patch Changes
|
|
520
|
+
|
|
521
|
+
- Updated dependencies [ff28085]
|
|
522
|
+
- @pnpm/types@1101.0.0
|
|
523
|
+
- @pnpm/config.pick-registry-for-package@1100.0.1
|
|
524
|
+
- @pnpm/config.writer@1100.0.1
|
|
525
|
+
- @pnpm/core-loggers@1100.0.1
|
|
526
|
+
- @pnpm/deps.graph-hasher@1100.0.1
|
|
527
|
+
- @pnpm/installing.deps-resolver@1100.0.1
|
|
528
|
+
- @pnpm/lockfile.fs@1100.0.1
|
|
529
|
+
- @pnpm/lockfile.pruner@1100.0.1
|
|
530
|
+
- @pnpm/lockfile.types@1100.0.1
|
|
531
|
+
- @pnpm/lockfile.utils@1100.0.1
|
|
532
|
+
- @pnpm/network.auth-header@1100.0.1
|
|
533
|
+
- @pnpm/network.fetch@1100.0.1
|
|
534
|
+
- @pnpm/pkg-manifest.reader@1100.0.1
|
|
535
|
+
- @pnpm/resolving.npm-resolver@1100.0.1
|
|
536
|
+
- @pnpm/store.controller@1100.0.1
|
|
537
|
+
- @pnpm/store.controller-types@1100.0.1
|
|
538
|
+
- @pnpm/worker@1100.0.1
|
|
539
|
+
|
|
540
|
+
## 1001.0.0
|
|
541
|
+
|
|
542
|
+
### Major Changes
|
|
543
|
+
|
|
544
|
+
- 491a84f: This package is now pure ESM.
|
|
545
|
+
- 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
|
|
546
|
+
|
|
547
|
+
### Minor Changes
|
|
548
|
+
|
|
549
|
+
- 821b36a: Config dependencies are now installed into the global virtual store (`{storeDir}/links/`) and symlinked into `node_modules/.pnpm-config/`. This allows config dependencies to be shared across projects that use the same store, avoiding redundant fetches and imports.
|
|
550
|
+
- a8f016c: Store config dependency and package manager integrity info in `pnpm-lock.yaml` instead of inlining it in `pnpm-workspace.yaml`. The workspace manifest now contains only clean version specifiers for `configDependencies`, while the resolved versions, integrity hashes, and tarball URLs are recorded in the lockfile as a separate YAML document. The env lockfile section also stores `packageManagerDependencies` resolved during version switching and self-update. Projects using the old inline-hash format are automatically migrated on install.
|
|
551
|
+
- cc1b8e3: Fixed installation of config dependencies from private registries.
|
|
552
|
+
|
|
553
|
+
Added support for object type in `configDependencies` when the tarball URL returned from package metadata differs from the computed URL [#10431](https://github.com/pnpm/pnpm/pull/10431).
|
|
554
|
+
|
|
555
|
+
- d8be970: Throws `FROZEN_LOCKFILE_WITH_OUTDATED_LOCKFILE` when attempting to install configuration dependencies with `--frozen-lockfile` active and the env lockfile is missing or out-of-date. Previously, the operation would silently rewrite the workspace file or resolve in-memory.
|
|
556
|
+
- 4a36b9a: Refactor workspace domains: rename `project-finder` to `projects-reader`, merge `filter-packages-from-dir` into `filter-workspace-packages`, and rename it to `projects-filter`. Also, move and rename `config/deps-installer` to `installing/env-installer`.
|
|
557
|
+
|
|
558
|
+
### Patch Changes
|
|
559
|
+
|
|
560
|
+
- Updated dependencies [5f73b0f]
|
|
561
|
+
- Updated dependencies [7721d2e]
|
|
562
|
+
- Updated dependencies [ae8b816]
|
|
563
|
+
- Updated dependencies [f98a2db]
|
|
564
|
+
- Updated dependencies [facdd71]
|
|
565
|
+
- Updated dependencies [e2e0a32]
|
|
566
|
+
- Updated dependencies [c55c614]
|
|
567
|
+
- Updated dependencies [a297ebc]
|
|
568
|
+
- Updated dependencies [76718b3]
|
|
569
|
+
- Updated dependencies [a8f016c]
|
|
570
|
+
- Updated dependencies [cc1b8e3]
|
|
571
|
+
- Updated dependencies [5a0ed1d]
|
|
572
|
+
- Updated dependencies [7cec347]
|
|
573
|
+
- Updated dependencies [606f53e]
|
|
574
|
+
- Updated dependencies [831f574]
|
|
575
|
+
- Updated dependencies [0e9c559]
|
|
576
|
+
- Updated dependencies [e46a652]
|
|
577
|
+
- Updated dependencies [cd743ef]
|
|
578
|
+
- Updated dependencies [19f36cf]
|
|
579
|
+
- Updated dependencies [491a84f]
|
|
580
|
+
- Updated dependencies [94571fb]
|
|
581
|
+
- Updated dependencies [fb8962f]
|
|
582
|
+
- Updated dependencies [54c4fc4]
|
|
583
|
+
- Updated dependencies [e73da5e]
|
|
584
|
+
- Updated dependencies [61cad0c]
|
|
585
|
+
- Updated dependencies [b1ad9c7]
|
|
586
|
+
- Updated dependencies [50fbeca]
|
|
587
|
+
- Updated dependencies [2fc9139]
|
|
588
|
+
- Updated dependencies [19f36cf]
|
|
589
|
+
- Updated dependencies [0dfa8b8]
|
|
590
|
+
- Updated dependencies [121f64a]
|
|
591
|
+
- Updated dependencies [9eddabb]
|
|
592
|
+
- Updated dependencies [075aa99]
|
|
593
|
+
- Updated dependencies [c4045fc]
|
|
594
|
+
- Updated dependencies [143ca78]
|
|
595
|
+
- Updated dependencies [ba065f6]
|
|
596
|
+
- Updated dependencies [3bf5e21]
|
|
597
|
+
- Updated dependencies [6f361aa]
|
|
598
|
+
- Updated dependencies [0625e20]
|
|
599
|
+
- Updated dependencies [938ea1f]
|
|
600
|
+
- Updated dependencies [83fe533]
|
|
601
|
+
- Updated dependencies [2cb0657]
|
|
602
|
+
- Updated dependencies [bb8baa7]
|
|
603
|
+
- Updated dependencies [ee9fe58]
|
|
604
|
+
- Updated dependencies [d458ab3]
|
|
605
|
+
- Updated dependencies [021f70d]
|
|
606
|
+
- Updated dependencies [7d2fd48]
|
|
607
|
+
- Updated dependencies [9eddabb]
|
|
608
|
+
- Updated dependencies [144ce0e]
|
|
609
|
+
- Updated dependencies [efb48dc]
|
|
610
|
+
- Updated dependencies [56a59df]
|
|
611
|
+
- Updated dependencies [780af09]
|
|
612
|
+
- Updated dependencies [50fbeca]
|
|
613
|
+
- Updated dependencies [bb8baa7]
|
|
614
|
+
- Updated dependencies [cb367b9]
|
|
615
|
+
- Updated dependencies [7b1c189]
|
|
616
|
+
- Updated dependencies [6c480a4]
|
|
617
|
+
- Updated dependencies [8ffb1a7]
|
|
618
|
+
- Updated dependencies [cee1f58]
|
|
619
|
+
- Updated dependencies [05fb1ae]
|
|
620
|
+
- Updated dependencies [71de2b3]
|
|
621
|
+
- Updated dependencies [4893853]
|
|
622
|
+
- Updated dependencies [10bc391]
|
|
623
|
+
- Updated dependencies [ba70035]
|
|
624
|
+
- Updated dependencies [3585d9a]
|
|
625
|
+
- Updated dependencies [38b8e35]
|
|
626
|
+
- Updated dependencies [394d88c]
|
|
627
|
+
- Updated dependencies [b7f0f21]
|
|
628
|
+
- Updated dependencies [1e6de25]
|
|
629
|
+
- Updated dependencies [831f574]
|
|
630
|
+
- Updated dependencies [2df8b71]
|
|
631
|
+
- Updated dependencies [2f98ec8]
|
|
632
|
+
- Updated dependencies [15549a9]
|
|
633
|
+
- Updated dependencies [cc7c0d2]
|
|
634
|
+
- Updated dependencies [4f3ad23]
|
|
635
|
+
- Updated dependencies [09bb8db]
|
|
636
|
+
- Updated dependencies [9d3f00b]
|
|
637
|
+
- Updated dependencies [6557dc0]
|
|
638
|
+
- Updated dependencies [98a0410]
|
|
639
|
+
- Updated dependencies [efb48dc]
|
|
640
|
+
- Updated dependencies [6b3d87a]
|
|
641
|
+
- @pnpm/installing.deps-resolver@1009.0.0
|
|
642
|
+
- @pnpm/deps.graph-hasher@1003.0.0
|
|
643
|
+
- @pnpm/config.writer@1001.0.0
|
|
644
|
+
- @pnpm/store.controller-types@1005.0.0
|
|
645
|
+
- @pnpm/resolving.npm-resolver@1005.0.0
|
|
646
|
+
- @pnpm/worker@1001.0.0
|
|
647
|
+
- @pnpm/store.controller@1005.0.0
|
|
648
|
+
- @pnpm/constants@1002.0.0
|
|
649
|
+
- @pnpm/types@1001.0.0
|
|
650
|
+
- @pnpm/lockfile.fs@1002.0.0
|
|
651
|
+
- @pnpm/lockfile.types@1003.0.0
|
|
652
|
+
- @pnpm/lockfile.utils@1004.0.0
|
|
653
|
+
- @pnpm/config.pick-registry-for-package@1001.0.0
|
|
654
|
+
- @pnpm/resolving.parse-wanted-dependency@1002.0.0
|
|
655
|
+
- @pnpm/pkg-manifest.reader@1001.0.0
|
|
656
|
+
- @pnpm/core-loggers@1002.0.0
|
|
657
|
+
- @pnpm/fs.read-modules-dir@1001.0.0
|
|
658
|
+
- @pnpm/network.auth-header@1001.0.0
|
|
659
|
+
- @pnpm/lockfile.pruner@1002.0.0
|
|
660
|
+
- @pnpm/error@1001.0.0
|
|
661
|
+
- @pnpm/network.fetch@1001.0.0
|
|
662
|
+
|
|
663
|
+
## 1000.0.19
|
|
664
|
+
|
|
665
|
+
### Patch Changes
|
|
666
|
+
|
|
667
|
+
- Updated dependencies [6c3dcb8]
|
|
668
|
+
- @pnpm/npm-resolver@1004.4.1
|
|
669
|
+
- @pnpm/package-store@1004.0.0
|
|
670
|
+
|
|
671
|
+
## 1000.0.18
|
|
672
|
+
|
|
673
|
+
### Patch Changes
|
|
674
|
+
|
|
675
|
+
- Updated dependencies [7c1382f]
|
|
676
|
+
- Updated dependencies [7c1382f]
|
|
677
|
+
- Updated dependencies [dee39ec]
|
|
678
|
+
- @pnpm/types@1000.9.0
|
|
679
|
+
- @pnpm/npm-resolver@1004.4.0
|
|
680
|
+
- @pnpm/package-store@1004.0.0
|
|
681
|
+
- @pnpm/config.config-writer@1000.0.14
|
|
682
|
+
- @pnpm/pick-registry-for-package@1000.0.11
|
|
683
|
+
- @pnpm/fetch@1000.2.6
|
|
684
|
+
- @pnpm/core-loggers@1001.0.4
|
|
685
|
+
- @pnpm/read-package-json@1000.1.2
|
|
686
|
+
|
|
687
|
+
## 1000.0.17
|
|
688
|
+
|
|
689
|
+
### Patch Changes
|
|
690
|
+
|
|
691
|
+
- @pnpm/package-store@1003.0.0
|
|
692
|
+
|
|
693
|
+
## 1000.0.16
|
|
694
|
+
|
|
695
|
+
### Patch Changes
|
|
696
|
+
|
|
697
|
+
- Updated dependencies [fb4da0c]
|
|
698
|
+
- @pnpm/npm-resolver@1004.3.0
|
|
699
|
+
- @pnpm/package-store@1002.0.12
|
|
700
|
+
- @pnpm/config.config-writer@1000.0.13
|
|
701
|
+
|
|
702
|
+
## 1000.0.15
|
|
703
|
+
|
|
704
|
+
### Patch Changes
|
|
705
|
+
|
|
706
|
+
- Updated dependencies [baf8bf6]
|
|
707
|
+
- Updated dependencies [702ddb9]
|
|
708
|
+
- @pnpm/npm-resolver@1004.2.3
|
|
709
|
+
- @pnpm/package-store@1002.0.11
|
|
710
|
+
|
|
711
|
+
## 1000.0.14
|
|
712
|
+
|
|
713
|
+
### Patch Changes
|
|
714
|
+
|
|
715
|
+
- Updated dependencies [121b44e]
|
|
716
|
+
- Updated dependencies [02f8b69]
|
|
717
|
+
- @pnpm/npm-resolver@1004.2.2
|
|
718
|
+
- @pnpm/package-store@1002.0.11
|
|
719
|
+
|
|
720
|
+
## 1000.0.13
|
|
721
|
+
|
|
722
|
+
### Patch Changes
|
|
723
|
+
|
|
724
|
+
- @pnpm/error@1000.0.5
|
|
725
|
+
- @pnpm/npm-resolver@1004.2.1
|
|
726
|
+
- @pnpm/network.auth-header@1000.0.6
|
|
727
|
+
- @pnpm/read-package-json@1000.1.1
|
|
728
|
+
- @pnpm/config.config-writer@1000.0.12
|
|
729
|
+
- @pnpm/package-store@1002.0.11
|
|
730
|
+
|
|
731
|
+
## 1000.0.12
|
|
732
|
+
|
|
733
|
+
### Patch Changes
|
|
734
|
+
|
|
735
|
+
- Updated dependencies [e792927]
|
|
736
|
+
- Updated dependencies [38e2599]
|
|
737
|
+
- Updated dependencies [e792927]
|
|
738
|
+
- @pnpm/read-package-json@1000.1.0
|
|
739
|
+
- @pnpm/npm-resolver@1004.2.0
|
|
740
|
+
- @pnpm/types@1000.8.0
|
|
741
|
+
- @pnpm/config.config-writer@1000.0.11
|
|
742
|
+
- @pnpm/pick-registry-for-package@1000.0.10
|
|
743
|
+
- @pnpm/fetch@1000.2.5
|
|
744
|
+
- @pnpm/core-loggers@1001.0.3
|
|
745
|
+
- @pnpm/package-store@1002.0.10
|
|
746
|
+
|
|
747
|
+
## 1000.0.11
|
|
748
|
+
|
|
749
|
+
### Patch Changes
|
|
750
|
+
|
|
751
|
+
- Updated dependencies [87d3aa8]
|
|
752
|
+
- @pnpm/fetch@1000.2.4
|
|
753
|
+
- @pnpm/config.config-writer@1000.0.10
|
|
754
|
+
- @pnpm/npm-resolver@1004.1.3
|
|
755
|
+
- @pnpm/package-store@1002.0.9
|
|
756
|
+
|
|
757
|
+
## 1000.0.10
|
|
758
|
+
|
|
759
|
+
### Patch Changes
|
|
760
|
+
|
|
761
|
+
- Updated dependencies [adb097c]
|
|
762
|
+
- @pnpm/read-package-json@1000.0.11
|
|
763
|
+
- @pnpm/error@1000.0.4
|
|
764
|
+
- @pnpm/npm-resolver@1004.1.3
|
|
765
|
+
- @pnpm/config.config-writer@1000.0.9
|
|
766
|
+
- @pnpm/package-store@1002.0.9
|
|
767
|
+
- @pnpm/network.auth-header@1000.0.5
|
|
768
|
+
|
|
769
|
+
## 1000.0.9
|
|
770
|
+
|
|
771
|
+
### Patch Changes
|
|
772
|
+
|
|
773
|
+
- Updated dependencies [1a07b8f]
|
|
774
|
+
- @pnpm/types@1000.7.0
|
|
775
|
+
- @pnpm/config.config-writer@1000.0.8
|
|
776
|
+
- @pnpm/pick-registry-for-package@1000.0.9
|
|
777
|
+
- @pnpm/fetch@1000.2.3
|
|
778
|
+
- @pnpm/core-loggers@1001.0.2
|
|
779
|
+
- @pnpm/read-package-json@1000.0.10
|
|
780
|
+
- @pnpm/npm-resolver@1004.1.2
|
|
781
|
+
- @pnpm/package-store@1002.0.8
|
|
782
|
+
- @pnpm/error@1000.0.3
|
|
783
|
+
- @pnpm/network.auth-header@1000.0.4
|
|
784
|
+
|
|
785
|
+
## 1000.0.8
|
|
786
|
+
|
|
787
|
+
### Patch Changes
|
|
788
|
+
|
|
789
|
+
- @pnpm/config.config-writer@1000.0.7
|
|
790
|
+
- @pnpm/npm-resolver@1004.1.1
|
|
791
|
+
- @pnpm/package-store@1002.0.7
|
|
792
|
+
|
|
793
|
+
## 1000.0.7
|
|
794
|
+
|
|
795
|
+
### Patch Changes
|
|
796
|
+
|
|
797
|
+
- @pnpm/package-store@1002.0.6
|
|
798
|
+
|
|
799
|
+
## 1000.0.6
|
|
800
|
+
|
|
801
|
+
### Patch Changes
|
|
802
|
+
|
|
803
|
+
- Updated dependencies [2721291]
|
|
804
|
+
- @pnpm/npm-resolver@1004.1.0
|
|
805
|
+
- @pnpm/package-store@1002.0.5
|
|
806
|
+
- @pnpm/config.config-writer@1000.0.6
|
|
807
|
+
|
|
808
|
+
## 1000.0.5
|
|
809
|
+
|
|
810
|
+
### Patch Changes
|
|
811
|
+
|
|
812
|
+
- @pnpm/package-store@1002.0.4
|
|
813
|
+
|
|
814
|
+
## 1000.0.4
|
|
815
|
+
|
|
816
|
+
### Patch Changes
|
|
817
|
+
|
|
818
|
+
- 09cf46f: Update `@pnpm/logger` in peer dependencies.
|
|
819
|
+
- Updated dependencies [51bd373]
|
|
820
|
+
- Updated dependencies [09cf46f]
|
|
821
|
+
- Updated dependencies [5ec7255]
|
|
822
|
+
- @pnpm/network.auth-header@1000.0.3
|
|
823
|
+
- @pnpm/npm-resolver@1004.0.1
|
|
824
|
+
- @pnpm/core-loggers@1001.0.1
|
|
825
|
+
- @pnpm/package-store@1002.0.3
|
|
826
|
+
- @pnpm/fetch@1000.2.2
|
|
827
|
+
- @pnpm/types@1000.6.0
|
|
828
|
+
- @pnpm/config.config-writer@1000.0.5
|
|
829
|
+
- @pnpm/pick-registry-for-package@1000.0.8
|
|
830
|
+
- @pnpm/read-package-json@1000.0.9
|
|
831
|
+
|
|
832
|
+
## 1000.0.3
|
|
833
|
+
|
|
834
|
+
### Patch Changes
|
|
835
|
+
|
|
836
|
+
- @pnpm/config.config-writer@1000.0.4
|
|
837
|
+
- @pnpm/package-store@1002.0.2
|
|
838
|
+
|
|
839
|
+
## 1000.0.2
|
|
840
|
+
|
|
841
|
+
### Patch Changes
|
|
842
|
+
|
|
843
|
+
- Updated dependencies [8a9f3a4]
|
|
844
|
+
- Updated dependencies [5b73df1]
|
|
845
|
+
- Updated dependencies [9c3dd03]
|
|
846
|
+
- Updated dependencies [5b73df1]
|
|
847
|
+
- @pnpm/parse-wanted-dependency@1001.0.0
|
|
848
|
+
- @pnpm/npm-resolver@1004.0.0
|
|
849
|
+
- @pnpm/core-loggers@1001.0.0
|
|
850
|
+
- @pnpm/logger@1001.0.0
|
|
851
|
+
- @pnpm/types@1000.5.0
|
|
852
|
+
- @pnpm/package-store@1002.0.2
|
|
853
|
+
- @pnpm/fetch@1000.2.1
|
|
854
|
+
- @pnpm/config.config-writer@1000.0.3
|
|
855
|
+
- @pnpm/pick-registry-for-package@1000.0.7
|
|
856
|
+
- @pnpm/read-package-json@1000.0.8
|
|
857
|
+
|
|
858
|
+
## 1000.0.1
|
|
859
|
+
|
|
860
|
+
### Patch Changes
|
|
861
|
+
|
|
862
|
+
- Updated dependencies [81f441c]
|
|
863
|
+
- Updated dependencies [17b7e9f]
|
|
864
|
+
- @pnpm/npm-resolver@1003.0.0
|
|
865
|
+
- @pnpm/config.config-writer@1000.0.2
|
|
866
|
+
- @pnpm/package-store@1002.0.1
|
|
867
|
+
|
|
868
|
+
## 1000.0.0
|
|
869
|
+
|
|
870
|
+
### Major Changes
|
|
871
|
+
|
|
872
|
+
- 1413c25: Initial release.
|
|
873
|
+
|
|
874
|
+
### Minor Changes
|
|
875
|
+
|
|
876
|
+
- 750ae7d: Now you can use the `pnpm add` command with the `--config` flag to install new configurational dependencies [#9377](https://github.com/pnpm/pnpm/pull/9377).
|
|
877
|
+
|
|
878
|
+
### Patch Changes
|
|
879
|
+
|
|
880
|
+
- Updated dependencies [750ae7d]
|
|
881
|
+
- Updated dependencies [72cff38]
|
|
882
|
+
- Updated dependencies [750ae7d]
|
|
883
|
+
- Updated dependencies [750ae7d]
|
|
884
|
+
- @pnpm/types@1000.4.0
|
|
885
|
+
- @pnpm/npm-resolver@1002.0.0
|
|
886
|
+
- @pnpm/package-store@1002.0.0
|
|
887
|
+
- @pnpm/core-loggers@1000.2.0
|
|
888
|
+
- @pnpm/fetch@1000.2.0
|
|
889
|
+
- @pnpm/config.config-writer@1000.0.1
|
|
890
|
+
- @pnpm/pick-registry-for-package@1000.0.6
|
|
891
|
+
- @pnpm/read-package-json@1000.0.7
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/installing.env-installer",
|
|
3
|
-
"version": "1102.0.
|
|
3
|
+
"version": "1102.0.5",
|
|
4
4
|
"description": "Installer for configurational dependencies",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,32 +28,32 @@
|
|
|
28
28
|
"!*.map"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@zkochan/rimraf": "^4.0.0",
|
|
32
|
-
"semver": "^7.8.4",
|
|
33
|
-
"symlink-dir": "^10.0.1",
|
|
34
31
|
"@pnpm/config.package-is-installable": "1100.0.12",
|
|
35
32
|
"@pnpm/config.pick-registry-for-package": "1100.0.9",
|
|
36
33
|
"@pnpm/config.writer": "1100.0.15",
|
|
37
34
|
"@pnpm/constants": "1100.0.0",
|
|
38
|
-
"@pnpm/
|
|
35
|
+
"@pnpm/core-loggers": "1100.2.1",
|
|
36
|
+
"@pnpm/deps.graph-hasher": "1100.2.9",
|
|
39
37
|
"@pnpm/error": "1100.0.1",
|
|
40
38
|
"@pnpm/fs.read-modules-dir": "1100.0.1",
|
|
41
|
-
"@pnpm/core-loggers": "1100.2.1",
|
|
42
39
|
"@pnpm/fs.symlink-dependency": "1100.0.10",
|
|
43
|
-
"@pnpm/installing.deps-resolver": "1100.2.
|
|
44
|
-
"@pnpm/lockfile.fs": "1100.1.
|
|
40
|
+
"@pnpm/installing.deps-resolver": "1100.2.8",
|
|
41
|
+
"@pnpm/lockfile.fs": "1100.1.10",
|
|
45
42
|
"@pnpm/lockfile.pruner": "1100.0.13",
|
|
46
43
|
"@pnpm/lockfile.types": "1100.0.13",
|
|
47
|
-
"@pnpm/lockfile.utils": "1100.1.
|
|
44
|
+
"@pnpm/lockfile.utils": "1100.1.2",
|
|
48
45
|
"@pnpm/network.auth-header": "1101.1.3",
|
|
49
46
|
"@pnpm/network.fetch": "1100.1.4",
|
|
50
47
|
"@pnpm/pkg-manifest.reader": "1100.0.9",
|
|
51
48
|
"@pnpm/resolving.npm-resolver": "1102.1.2",
|
|
52
49
|
"@pnpm/resolving.parse-wanted-dependency": "1100.0.1",
|
|
53
50
|
"@pnpm/resolving.tarball-url": "1100.0.0",
|
|
54
|
-
"@pnpm/store.controller": "1102.0.
|
|
51
|
+
"@pnpm/store.controller": "1102.0.4",
|
|
55
52
|
"@pnpm/store.controller-types": "1100.1.7",
|
|
56
|
-
"@pnpm/types": "1101.3.2"
|
|
53
|
+
"@pnpm/types": "1101.3.2",
|
|
54
|
+
"@zkochan/rimraf": "^4.0.0",
|
|
55
|
+
"semver": "^7.8.4",
|
|
56
|
+
"symlink-dir": "^10.0.1"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"@pnpm/logger": "^1100.0.0",
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@jest/globals": "30.4.1",
|
|
64
|
+
"@pnpm/installing.env-installer": "1102.0.5",
|
|
65
|
+
"@pnpm/prepare": "1100.0.18",
|
|
66
|
+
"@pnpm/testing.registry-mock": "1100.0.8",
|
|
67
|
+
"@pnpm/testing.temp-store": "1100.1.14",
|
|
64
68
|
"@types/semver": "7.7.1",
|
|
65
69
|
"load-json-file": "^7.0.1",
|
|
66
|
-
"read-yaml-file": "^3.0.0"
|
|
67
|
-
"@pnpm/installing.env-installer": "1102.0.4",
|
|
68
|
-
"@pnpm/testing.registry-mock": "1100.0.8",
|
|
69
|
-
"@pnpm/prepare": "1100.0.18",
|
|
70
|
-
"@pnpm/testing.temp-store": "1100.1.13"
|
|
70
|
+
"read-yaml-file": "^3.0.0"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
73
|
"node": ">=22.13"
|