@pnpm/resolving.git-resolver 1100.1.7 → 1100.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +995 -0
  2. package/package.json +7 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,995 @@
1
+ # @pnpm/git-resolver
2
+
3
+ ## 1100.1.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies:
8
+ - @pnpm/network.fetch@1100.1.5
9
+ - @pnpm/resolving.resolver-base@1100.5.2
10
+
11
+ ## 1100.1.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [dcabb78]
16
+ - @pnpm/resolving.resolver-base@1100.5.1
17
+
18
+ ## 1100.1.7
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [bae694f]
23
+ - Updated dependencies [05b95ab]
24
+ - Updated dependencies [852d537]
25
+ - @pnpm/resolving.resolver-base@1100.5.0
26
+ - @pnpm/network.fetch@1100.1.4
27
+ - @pnpm/error@1100.0.1
28
+
29
+ ## 1100.1.6
30
+
31
+ ### Patch Changes
32
+
33
+ - a31faa7: Updated dependency ranges. Notably:
34
+
35
+ - `@pnpm/logger` peer dependency range moved to `^1100.0.0`.
36
+ - `msgpackr` 1.11.8 → 2.0.4 (store index files remain byte-compatible in both directions).
37
+ - `open` ^7.4.2 → ^11.0.0, `memoize` ^10 → ^11, `cli-truncate` ^5 → ^6, `pidtree` ^0.6 → ^1.
38
+ - `@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.
39
+
40
+ - Updated dependencies [a31faa7]
41
+ - @pnpm/network.fetch@1100.1.3
42
+ - @pnpm/resolving.resolver-base@1100.4.2
43
+
44
+ ## 1100.1.5
45
+
46
+ ### Patch Changes
47
+
48
+ - @pnpm/network.fetch@1100.1.2
49
+
50
+ ## 1100.1.4
51
+
52
+ ### Patch Changes
53
+
54
+ - @pnpm/network.fetch@1100.1.1
55
+ - @pnpm/resolving.resolver-base@1100.4.1
56
+
57
+ ## 1100.1.3
58
+
59
+ ### Patch Changes
60
+
61
+ - Updated dependencies [60a1eec]
62
+ - Updated dependencies [6d17b66]
63
+ - @pnpm/network.fetch@1100.1.0
64
+ - @pnpm/resolving.resolver-base@1100.4.0
65
+
66
+ ## 1100.1.2
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [b1fa2d5]
71
+ - @pnpm/network.fetch@1100.0.8
72
+
73
+ ## 1100.1.1
74
+
75
+ ### Patch Changes
76
+
77
+ - @pnpm/network.fetch@1100.0.7
78
+ - @pnpm/resolving.resolver-base@1100.3.1
79
+
80
+ ## 1100.1.0
81
+
82
+ ### Minor Changes
83
+
84
+ - 1627943: `pnpm outdated` and `pnpm update --interactive` now report Node.js, Deno, and Bun runtimes installed as project dependencies (`runtime:` specifiers). Previously these were silently skipped because the npm specifier parser did not understand the `runtime:` protocol, so runtime versions never appeared in the outdated table or the interactive update picker.
85
+
86
+ Internally, the outdated check is now resolver-driven: `@pnpm/resolving.resolver-base` defines a `ResolveLatestFunction` shape (with `LatestQuery` input — `{ wantedDependency, compatible? }` — and `LatestInfo` result — `{ latestManifest? }`), and every protocol resolver (npm, jsr, named-registry, git, tarball, local, node/bun/deno runtimes) exports its own `resolveLatest*` function alongside its `resolve*`. `@pnpm/resolving.default-resolver` composes them into a single dispatcher, exposed through `@pnpm/installing.client` as `createResolver(...).resolveLatest`.
87
+
88
+ Each resolver decides whether it owns the dep and what "latest" means for its protocol; the outdated command derives `current` / `wanted` display values from the lockfile snapshot (`pkgSnapshot.version` for semver protocols, raw ref for URL-shaped ones) and uses raw ref equality for the "lockfile changed" check, so protocol knowledge stays inside each resolver instead of the command.
89
+
90
+ ### Patch Changes
91
+
92
+ - Updated dependencies [1627943]
93
+ - @pnpm/resolving.resolver-base@1100.3.0
94
+ - @pnpm/network.fetch@1100.0.6
95
+
96
+ ## 1100.0.8
97
+
98
+ ### Patch Changes
99
+
100
+ - Updated dependencies [4195766]
101
+ - Updated dependencies [31538bf]
102
+ - @pnpm/resolving.resolver-base@1100.2.0
103
+ - @pnpm/network.fetch@1100.0.5
104
+
105
+ ## 1100.0.7
106
+
107
+ ### Patch Changes
108
+
109
+ - Updated dependencies [18a464f]
110
+ - @pnpm/network.fetch@1100.0.4
111
+
112
+ ## 1100.0.6
113
+
114
+ ### Patch Changes
115
+
116
+ - Updated dependencies [20e7aff]
117
+ - @pnpm/network.fetch@1100.0.3
118
+ - @pnpm/resolving.resolver-base@1100.1.3
119
+
120
+ ## 1100.0.5
121
+
122
+ ### Patch Changes
123
+
124
+ - a57f7bd: Fixed installation of GitLab-hosted dependencies. pnpm now downloads the tarball from `https://gitlab.com/<user>/<project>/-/archive/<sha>/<project>-<sha>.tar.gz` instead of the GitLab API endpoint that contained an encoded slash (`%2F`) between user and project. The encoded slash both triggered `406 Not Acceptable` responses from GitLab and produced virtual store directory names that Node refused to import (`ERR_INVALID_MODULE_SPECIFIER`) [#11533](https://github.com/pnpm/pnpm/issues/11533).
125
+
126
+ ## 1100.0.4
127
+
128
+ ### Patch Changes
129
+
130
+ - 27425d7: Pin the integrity of git-hosted tarballs (codeload.github.com, gitlab.com, bitbucket.org) in the lockfile so that subsequent installs detect a tampered or substituted tarball and refuse to install it. Previously the lockfile only stored the tarball URL for git dependencies, so a compromised git host or a man-in-the-middle could serve arbitrary code on later installs without lockfile changes.
131
+
132
+ A new `gitHosted: true` field is recorded on git-hosted tarball resolutions in the lockfile, letting every reader/writer route them by a single typed check instead of pattern-matching the tarball URL in each call site. Lockfiles written by older pnpm versions are enriched on load (URL fallback) so the field can be relied on uniformly across the codebase.
133
+
134
+ - Updated dependencies [27425d7]
135
+ - @pnpm/resolving.resolver-base@1100.1.2
136
+
137
+ ## 1100.0.3
138
+
139
+ ### Patch Changes
140
+
141
+ - 184ce26: Fix the package name in README.md.
142
+ - Updated dependencies [184ce26]
143
+ - @pnpm/resolving.resolver-base@1100.1.1
144
+ - @pnpm/network.fetch@1100.0.2
145
+
146
+ ## 1100.0.2
147
+
148
+ ### Patch Changes
149
+
150
+ - Updated dependencies [72c1e05]
151
+ - @pnpm/resolving.resolver-base@1100.1.0
152
+
153
+ ## 1100.0.1
154
+
155
+ ### Patch Changes
156
+
157
+ - @pnpm/network.fetch@1100.0.1
158
+ - @pnpm/resolving.resolver-base@1100.0.1
159
+
160
+ ## 1002.0.0
161
+
162
+ ### Major Changes
163
+
164
+ - 491a84f: This package is now pure ESM.
165
+ - 7d2fd48: Node.js v18, 19, 20, and 21 support discontinued.
166
+
167
+ ### Minor Changes
168
+
169
+ - ec7c5d7: Support plain `http://` and `https://` URLs ending with `.git` as git repository dependencies.
170
+
171
+ Previously, URLs like `https://gitea.example.org/user/repo.git#commit` were not recognized as git repositories because they lacked the `git+` prefix (e.g., `git+https://`). This caused issues when installing dependencies from self-hosted git servers like Gitea or Forgejo that don't provide tarball downloads.
172
+
173
+ Changes:
174
+
175
+ - The git resolver now runs before the tarball resolver, ensuring git URLs are handled by the correct resolver
176
+ - The git resolver now recognizes plain `http://` and `https://` URLs ending in `.git` as git repositories
177
+ - Removed the `isRepository` check from the tarball resolver since it's no longer needed with the new resolver order
178
+
179
+ Fixes #10468
180
+
181
+ ### Patch Changes
182
+
183
+ - 01760da: Fix installation of Git dependencies using annotated tags [#10335](https://github.com/pnpm/pnpm/issues/10335).
184
+
185
+ Previously, pnpm would store the annotated tag object's SHA in the lockfile instead of the actual commit SHA. This caused `ERR_PNPM_GIT_CHECKOUT_FAILED` errors because the checked-out commit hash didn't match the stored tag object hash.
186
+
187
+ - c5fbdde: Always resolve git references to full commits and ensure `HEAD` points to the commit after checkout [#10310](https://github.com/pnpm/pnpm/pull/10310).
188
+ - Updated dependencies [facdd71]
189
+ - Updated dependencies [9b0a460]
190
+ - Updated dependencies [491a84f]
191
+ - Updated dependencies [0dfa8b8]
192
+ - Updated dependencies [7d2fd48]
193
+ - Updated dependencies [50fbeca]
194
+ - Updated dependencies [bb8baa7]
195
+ - Updated dependencies [6c480a4]
196
+ - Updated dependencies [10bc391]
197
+ - Updated dependencies [38b8e35]
198
+ - Updated dependencies [831f574]
199
+ - Updated dependencies [9d3f00b]
200
+ - Updated dependencies [6b3d87a]
201
+ - @pnpm/resolving.resolver-base@1006.0.0
202
+ - @pnpm/error@1001.0.0
203
+ - @pnpm/network.fetch@1001.0.0
204
+
205
+ ## 1001.1.5
206
+
207
+ ### Patch Changes
208
+
209
+ - Updated dependencies [7c1382f]
210
+ - @pnpm/resolver-base@1005.1.0
211
+ - @pnpm/fetch@1000.2.6
212
+
213
+ ## 1001.1.4
214
+
215
+ ### Patch Changes
216
+
217
+ - @pnpm/fetch@1000.2.5
218
+ - @pnpm/resolver-base@1005.0.1
219
+
220
+ ## 1001.1.3
221
+
222
+ ### Patch Changes
223
+
224
+ - Updated dependencies [87d3aa8]
225
+ - @pnpm/fetch@1000.2.4
226
+
227
+ ## 1001.1.2
228
+
229
+ ### Patch Changes
230
+
231
+ - Updated dependencies [86b33e9]
232
+ - Updated dependencies [d1edf73]
233
+ - Updated dependencies [f91922c]
234
+ - @pnpm/resolver-base@1005.0.0
235
+
236
+ ## 1001.1.1
237
+
238
+ ### Patch Changes
239
+
240
+ - Updated dependencies [1a07b8f]
241
+ - @pnpm/resolver-base@1004.1.0
242
+ - @pnpm/fetch@1000.2.3
243
+
244
+ ## 1001.1.0
245
+
246
+ ### Minor Changes
247
+
248
+ - 2721291: Create different resolver result types which provide more information.
249
+
250
+ ### Patch Changes
251
+
252
+ - Updated dependencies [2721291]
253
+ - Updated dependencies [6acf819]
254
+ - @pnpm/resolver-base@1004.0.0
255
+
256
+ ## 1001.0.2
257
+
258
+ ### Patch Changes
259
+
260
+ - 5055399: Fixed the problem of path loss caused by parsing URL address. Fixes a regression shipped in pnpm v10.11 via [#9502](https://github.com/pnpm/pnpm/pull/9502).
261
+
262
+ ## 1001.0.1
263
+
264
+ ### Patch Changes
265
+
266
+ - 6b6ccf9: Remove `url.parse` usage to fix warning on Node.js 24 [#9492](https://github.com/pnpm/pnpm/issues/9492).
267
+ - Updated dependencies [09cf46f]
268
+ - @pnpm/fetch@1000.2.2
269
+ - @pnpm/resolver-base@1003.0.1
270
+
271
+ ## 1001.0.0
272
+
273
+ ### Major Changes
274
+
275
+ - 8a9f3a4: `pref` renamed to `bareSpecifier`.
276
+ - 5b73df1: Renamed `normalizedPref` to `specifiers`.
277
+
278
+ ### Patch Changes
279
+
280
+ - Updated dependencies [8a9f3a4]
281
+ - Updated dependencies [5b73df1]
282
+ - Updated dependencies [9c3dd03]
283
+ - @pnpm/resolver-base@1003.0.0
284
+ - @pnpm/fetch@1000.2.1
285
+
286
+ ## 1000.0.11
287
+
288
+ ### Patch Changes
289
+
290
+ - Updated dependencies [81f441c]
291
+ - @pnpm/resolver-base@1002.0.0
292
+
293
+ ## 1000.0.10
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [72cff38]
298
+ - Updated dependencies [750ae7d]
299
+ - @pnpm/resolver-base@1001.0.0
300
+ - @pnpm/fetch@1000.2.0
301
+
302
+ ## 1000.0.9
303
+
304
+ ### Patch Changes
305
+
306
+ - @pnpm/fetch@1000.1.6
307
+ - @pnpm/resolver-base@1000.2.1
308
+
309
+ ## 1000.0.8
310
+
311
+ ### Patch Changes
312
+
313
+ - Updated dependencies [3d52365]
314
+ - @pnpm/resolver-base@1000.2.0
315
+
316
+ ## 1000.0.7
317
+
318
+ ### Patch Changes
319
+
320
+ - @pnpm/fetch@1000.1.5
321
+ - @pnpm/resolver-base@1000.1.4
322
+
323
+ ## 1000.0.6
324
+
325
+ ### Patch Changes
326
+
327
+ - @pnpm/fetch@1000.1.4
328
+ - @pnpm/resolver-base@1000.1.3
329
+
330
+ ## 1000.0.5
331
+
332
+ ### Patch Changes
333
+
334
+ - d6a4ff1: Proxy settings should be respected, when resolving Git-hosted dependencies [#6530](https://github.com/pnpm/pnpm/issues/6530).
335
+
336
+ ## 1000.0.4
337
+
338
+ ### Patch Changes
339
+
340
+ - @pnpm/fetch@1000.1.3
341
+ - @pnpm/resolver-base@1000.1.2
342
+
343
+ ## 1000.0.3
344
+
345
+ ### Patch Changes
346
+
347
+ - @pnpm/fetch@1000.1.2
348
+ - @pnpm/resolver-base@1000.1.1
349
+
350
+ ## 1000.0.2
351
+
352
+ ### Patch Changes
353
+
354
+ - b100962: Do not fall back to SSH, when resolving a git-hosted package if `git ls-remote` works via HTTPS [#8906](https://github.com/pnpm/pnpm/pull/8906).
355
+ - @pnpm/fetch@1000.1.1
356
+
357
+ ## 1000.0.1
358
+
359
+ ### Patch Changes
360
+
361
+ - Updated dependencies [6483b64]
362
+ - Updated dependencies [b0f3c71]
363
+ - @pnpm/resolver-base@1000.1.0
364
+ - @pnpm/fetch@1000.1.0
365
+
366
+ ## 9.0.8
367
+
368
+ ### Patch Changes
369
+
370
+ - @pnpm/fetch@8.0.7
371
+ - @pnpm/resolver-base@13.0.4
372
+
373
+ ## 9.0.7
374
+
375
+ ### Patch Changes
376
+
377
+ - @pnpm/fetch@8.0.6
378
+ - @pnpm/resolver-base@13.0.3
379
+
380
+ ## 9.0.6
381
+
382
+ ### Patch Changes
383
+
384
+ - @pnpm/fetch@8.0.5
385
+ - @pnpm/resolver-base@13.0.2
386
+
387
+ ## 9.0.5
388
+
389
+ ### Patch Changes
390
+
391
+ - @pnpm/fetch@8.0.4
392
+ - @pnpm/resolver-base@13.0.1
393
+
394
+ ## 9.0.4
395
+
396
+ ### Patch Changes
397
+
398
+ - Updated dependencies [dd00eeb]
399
+ - @pnpm/resolver-base@13.0.0
400
+ - @pnpm/fetch@8.0.3
401
+
402
+ ## 9.0.3
403
+
404
+ ### Patch Changes
405
+
406
+ - @pnpm/fetch@8.0.2
407
+ - @pnpm/resolver-base@12.0.2
408
+
409
+ ## 9.0.2
410
+
411
+ ### Patch Changes
412
+
413
+ - @pnpm/fetch@8.0.1
414
+ - @pnpm/resolver-base@12.0.1
415
+
416
+ ## 9.0.1
417
+
418
+ ### Patch Changes
419
+
420
+ - c969f37: Lockfiles that have git-hosted dependencies specified should be correctly converted to the new lockfile format [#7990](https://github.com/pnpm/pnpm/issues/7990).
421
+
422
+ ## 9.0.0
423
+
424
+ ### Major Changes
425
+
426
+ - 43cdd87: Node.js v16 support dropped. Use at least Node.js v18.12.
427
+
428
+ ### Minor Changes
429
+
430
+ - b13d2dc: It is now possible to install only a subdirectory from a Git repository.
431
+
432
+ For example, `pnpm add github:user/repo#path:packages/foo` will add a dependency from the `packages/foo` subdirectory.
433
+
434
+ This new parameter may be combined with other supported parameters separated by `&`. For instance, the next command will install the same package from the `dev` branch: `pnpm add github:user/repo#dev&path:packages/bar`.
435
+
436
+ Related issue: [#4765](https://github.com/pnpm/pnpm/issues/4765).
437
+ Related PR: [#7487](https://github.com/pnpm/pnpm/pull/7487).
438
+
439
+ ### Patch Changes
440
+
441
+ - 985381c: Install gitlab-hosted packages correctly, when they are specified by commit or branch [#7603](https://github.com/pnpm/pnpm/issues/7603).
442
+ - Updated dependencies [7733f3a]
443
+ - Updated dependencies [43cdd87]
444
+ - Updated dependencies [b13d2dc]
445
+ - @pnpm/fetch@8.0.0
446
+ - @pnpm/resolver-base@12.0.0
447
+
448
+ ## 8.0.12
449
+
450
+ ### Patch Changes
451
+
452
+ - Updated dependencies [31054a63e]
453
+ - @pnpm/resolver-base@11.1.0
454
+
455
+ ## 8.0.11
456
+
457
+ ### Patch Changes
458
+
459
+ - @pnpm/resolver-base@11.0.2
460
+ - @pnpm/fetch@7.0.7
461
+
462
+ ## 8.0.10
463
+
464
+ ### Patch Changes
465
+
466
+ - @pnpm/resolver-base@11.0.1
467
+ - @pnpm/fetch@7.0.6
468
+
469
+ ## 8.0.9
470
+
471
+ ### Patch Changes
472
+
473
+ - Updated dependencies [4c2450208]
474
+ - @pnpm/resolver-base@11.0.0
475
+
476
+ ## 8.0.8
477
+
478
+ ### Patch Changes
479
+
480
+ - @pnpm/resolver-base@10.0.4
481
+ - @pnpm/fetch@7.0.5
482
+
483
+ ## 8.0.7
484
+
485
+ ### Patch Changes
486
+
487
+ - @pnpm/resolver-base@10.0.3
488
+ - @pnpm/fetch@7.0.4
489
+
490
+ ## 8.0.6
491
+
492
+ ### Patch Changes
493
+
494
+ - 22bbe9255: Pass the right scheme to `git ls-remote` in order to prevent a fallback to `git+ssh` that would result in a 'host key verification failed' issue [#6806](https://github.com/pnpm/pnpm/issues/6806)
495
+
496
+ ## 8.0.5
497
+
498
+ ### Patch Changes
499
+
500
+ - de9b6c20d: Temporarily revert the fix to [#6805](https://github.com/pnpm/pnpm/issues/6805) to fix the regression it caused [#6827](https://github.com/pnpm/pnpm/issues/6827).
501
+
502
+ ## 8.0.4
503
+
504
+ ### Patch Changes
505
+
506
+ - 6fe0b60e6: Fixed a bug in which pnpm passed the wrong scheme to `git ls-remote`, causing a fallback to `git+ssh` and resulting in a 'host key verification failed' issue [#6805](https://github.com/pnpm/pnpm/issues/6805)
507
+ - @pnpm/resolver-base@10.0.2
508
+ - @pnpm/fetch@7.0.3
509
+
510
+ ## 8.0.3
511
+
512
+ ### Patch Changes
513
+
514
+ - @pnpm/resolver-base@10.0.1
515
+ - @pnpm/fetch@7.0.2
516
+
517
+ ## 8.0.2
518
+
519
+ ### Patch Changes
520
+
521
+ - Updated dependencies [8228c2cb1]
522
+ - @pnpm/fetch@7.0.1
523
+
524
+ ## 8.0.1
525
+
526
+ ### Patch Changes
527
+
528
+ - c0760128d: bump semver to 7.4.0
529
+
530
+ ## 8.0.0
531
+
532
+ ### Major Changes
533
+
534
+ - eceaa8b8b: Node.js 14 support dropped.
535
+
536
+ ### Patch Changes
537
+
538
+ - 28796377c: Fix git-hosted dependencies referenced via `git+ssh` that use semver selectors [#6239](https://github.com/pnpm/pnpm/pull/6239).
539
+ - Updated dependencies [eceaa8b8b]
540
+ - @pnpm/resolver-base@10.0.0
541
+ - @pnpm/fetch@7.0.0
542
+
543
+ ## 7.0.7
544
+
545
+ ### Patch Changes
546
+
547
+ - Updated dependencies [673e23060]
548
+ - Updated dependencies [9fa6c7404]
549
+ - @pnpm/fetch@6.0.6
550
+
551
+ ## 7.0.6
552
+
553
+ ### Patch Changes
554
+
555
+ - Updated dependencies [029143cff]
556
+ - Updated dependencies [029143cff]
557
+ - @pnpm/resolver-base@9.2.0
558
+
559
+ ## 7.0.5
560
+
561
+ ### Patch Changes
562
+
563
+ - @pnpm/resolver-base@9.1.5
564
+ - @pnpm/fetch@6.0.5
565
+
566
+ ## 7.0.4
567
+
568
+ ### Patch Changes
569
+
570
+ - Updated dependencies [a9d59d8bc]
571
+ - @pnpm/fetch@6.0.4
572
+
573
+ ## 7.0.3
574
+
575
+ ### Patch Changes
576
+
577
+ - @pnpm/resolver-base@9.1.4
578
+ - @pnpm/fetch@6.0.3
579
+
580
+ ## 7.0.2
581
+
582
+ ### Patch Changes
583
+
584
+ - @pnpm/fetch@6.0.2
585
+
586
+ ## 7.0.1
587
+
588
+ ### Patch Changes
589
+
590
+ - @pnpm/resolver-base@9.1.3
591
+ - @pnpm/fetch@6.0.1
592
+
593
+ ## 7.0.0
594
+
595
+ ### Major Changes
596
+
597
+ - 043d988fc: Breaking change to the API. Defaul export is not used.
598
+ - f884689e0: Require `@pnpm/logger` v5.
599
+
600
+ ### Patch Changes
601
+
602
+ - Updated dependencies [043d988fc]
603
+ - Updated dependencies [f884689e0]
604
+ - @pnpm/fetch@6.0.0
605
+
606
+ ## 6.1.7
607
+
608
+ ### Patch Changes
609
+
610
+ - @pnpm/fetch@5.0.10
611
+
612
+ ## 6.1.6
613
+
614
+ ### Patch Changes
615
+
616
+ - @pnpm/resolver-base@9.1.2
617
+ - @pnpm/fetch@5.0.9
618
+
619
+ ## 6.1.5
620
+
621
+ ### Patch Changes
622
+
623
+ - @pnpm/resolver-base@9.1.1
624
+ - @pnpm/fetch@5.0.8
625
+
626
+ ## 6.1.4
627
+
628
+ ### Patch Changes
629
+
630
+ - Updated dependencies [23984abd1]
631
+ - @pnpm/resolver-base@9.1.0
632
+
633
+ ## 6.1.3
634
+
635
+ ### Patch Changes
636
+
637
+ - 39c040127: upgrade various dependencies
638
+
639
+ ## 6.1.2
640
+
641
+ ### Patch Changes
642
+
643
+ - @pnpm/resolver-base@9.0.6
644
+ - @pnpm/fetch@5.0.7
645
+
646
+ ## 6.1.1
647
+
648
+ ### Patch Changes
649
+
650
+ - Updated dependencies [e018a8b14]
651
+ - @pnpm/fetch@5.0.6
652
+
653
+ ## 6.1.0
654
+
655
+ ### Minor Changes
656
+
657
+ - 449ccef09: Add `refs/` to git resolution prefixes
658
+
659
+ ## 6.0.6
660
+
661
+ ### Patch Changes
662
+
663
+ - @pnpm/resolver-base@9.0.5
664
+ - @pnpm/fetch@5.0.5
665
+
666
+ ## 6.0.5
667
+
668
+ ### Patch Changes
669
+
670
+ - @pnpm/resolver-base@9.0.4
671
+ - @pnpm/fetch@5.0.4
672
+
673
+ ## 6.0.4
674
+
675
+ ### Patch Changes
676
+
677
+ - Updated dependencies [9d5bf09c0]
678
+ - @pnpm/fetch@5.0.3
679
+ - @pnpm/resolver-base@9.0.3
680
+
681
+ ## 6.0.3
682
+
683
+ ### Patch Changes
684
+
685
+ - @pnpm/resolver-base@9.0.2
686
+ - @pnpm/fetch@5.0.2
687
+
688
+ ## 6.0.2
689
+
690
+ ### Patch Changes
691
+
692
+ - 0fa446d10: Resolve commits from GitHub via https.
693
+
694
+ ## 6.0.1
695
+
696
+ ### Patch Changes
697
+
698
+ - @pnpm/resolver-base@9.0.1
699
+ - @pnpm/fetch@5.0.1
700
+
701
+ ## 6.0.0
702
+
703
+ ### Major Changes
704
+
705
+ - 542014839: Node.js 12 is not supported.
706
+
707
+ ### Patch Changes
708
+
709
+ - Updated dependencies [542014839]
710
+ - @pnpm/fetch@5.0.0
711
+ - @pnpm/resolver-base@9.0.0
712
+
713
+ ## 5.1.17
714
+
715
+ ### Patch Changes
716
+
717
+ - @pnpm/resolver-base@8.1.6
718
+ - @pnpm/fetch@4.2.5
719
+
720
+ ## 5.1.16
721
+
722
+ ### Patch Changes
723
+
724
+ - @pnpm/resolver-base@8.1.5
725
+ - @pnpm/fetch@4.2.4
726
+
727
+ ## 5.1.15
728
+
729
+ ### Patch Changes
730
+
731
+ - @pnpm/resolver-base@8.1.4
732
+ - @pnpm/fetch@4.2.3
733
+
734
+ ## 5.1.14
735
+
736
+ ### Patch Changes
737
+
738
+ - @pnpm/resolver-base@8.1.3
739
+ - @pnpm/fetch@4.2.2
740
+
741
+ ## 5.1.13
742
+
743
+ ### Patch Changes
744
+
745
+ - c94104472: Don't make unnecessary retries when fetching Git-hosted packages [#2731](https://github.com/pnpm/pnpm/pull/2731).
746
+ - @pnpm/fetch@4.2.1
747
+ - @pnpm/resolver-base@8.1.2
748
+
749
+ ## 5.1.12
750
+
751
+ ### Patch Changes
752
+
753
+ - Updated dependencies [f1c194ded]
754
+ - @pnpm/fetch@4.2.0
755
+
756
+ ## 5.1.11
757
+
758
+ ### Patch Changes
759
+
760
+ - Updated dependencies [12ee3c144]
761
+ - @pnpm/fetch@4.1.6
762
+
763
+ ## 5.1.10
764
+
765
+ ### Patch Changes
766
+
767
+ - @pnpm/resolver-base@8.1.1
768
+ - @pnpm/fetch@4.1.5
769
+
770
+ ## 5.1.9
771
+
772
+ ### Patch Changes
773
+
774
+ - 7da65bd7a: Don't break URLs with ports.
775
+
776
+ ## 5.1.8
777
+
778
+ ### Patch Changes
779
+
780
+ - Updated dependencies [4ab87844a]
781
+ - @pnpm/resolver-base@8.1.0
782
+ - @pnpm/fetch@4.1.4
783
+
784
+ ## 5.1.7
785
+
786
+ ### Patch Changes
787
+
788
+ - Updated dependencies [782ef2490]
789
+ - @pnpm/fetch@4.1.3
790
+
791
+ ## 5.1.6
792
+
793
+ ### Patch Changes
794
+
795
+ - 930e104da: Git URLs containing a colon should work.
796
+ - @pnpm/fetch@4.1.2
797
+
798
+ ## 5.1.5
799
+
800
+ ### Patch Changes
801
+
802
+ - 04b7f6086: Use safe-execa instead of execa to prevent binary planting attacks on Windows.
803
+
804
+ ## 5.1.4
805
+
806
+ ### Patch Changes
807
+
808
+ - Updated dependencies [bab172385]
809
+ - @pnpm/fetch@4.1.1
810
+
811
+ ## 5.1.3
812
+
813
+ ### Patch Changes
814
+
815
+ - Updated dependencies [eadf0e505]
816
+ - @pnpm/fetch@4.1.0
817
+
818
+ ## 5.1.2
819
+
820
+ ### Patch Changes
821
+
822
+ - @pnpm/resolver-base@8.0.4
823
+ - @pnpm/fetch@4.0.2
824
+
825
+ ## 5.1.1
826
+
827
+ ### Patch Changes
828
+
829
+ - @pnpm/resolver-base@8.0.3
830
+ - @pnpm/fetch@4.0.1
831
+
832
+ ## 5.1.0
833
+
834
+ ### Minor Changes
835
+
836
+ - 69ffc4099: It should be possible to install a Git-hosted dependency that names the default branch not "master".
837
+
838
+ ## 5.0.2
839
+
840
+ ### Patch Changes
841
+
842
+ - Updated dependencies [e7d9cd187]
843
+ - Updated dependencies [eeff424bd]
844
+ - @pnpm/fetch@4.0.0
845
+ - @pnpm/resolver-base@8.0.2
846
+
847
+ ## 5.0.1
848
+
849
+ ### Patch Changes
850
+
851
+ - Updated dependencies [05baaa6e7]
852
+ - @pnpm/fetch@3.1.0
853
+ - @pnpm/resolver-base@8.0.1
854
+
855
+ ## 5.0.0
856
+
857
+ ### Major Changes
858
+
859
+ - 97b986fbc: Node.js 10 support is dropped. At least Node.js 12.17 is required for the package to work.
860
+
861
+ ### Patch Changes
862
+
863
+ - Updated dependencies [97b986fbc]
864
+ - @pnpm/fetch@3.0.0
865
+ - @pnpm/resolver-base@8.0.0
866
+
867
+ ## 4.1.12
868
+
869
+ ### Patch Changes
870
+
871
+ - @pnpm/fetch@2.1.11
872
+
873
+ ## 4.1.11
874
+
875
+ ### Patch Changes
876
+
877
+ - @pnpm/resolver-base@7.1.1
878
+ - @pnpm/fetch@2.1.10
879
+
880
+ ## 4.1.10
881
+
882
+ ### Patch Changes
883
+
884
+ - 32c9ef4be: execa updated to v5.
885
+
886
+ ## 4.1.9
887
+
888
+ ### Patch Changes
889
+
890
+ - @pnpm/fetch@2.1.9
891
+
892
+ ## 4.1.8
893
+
894
+ ### Patch Changes
895
+
896
+ - Updated dependencies [263f5d813]
897
+ - @pnpm/fetch@2.1.8
898
+
899
+ ## 4.1.7
900
+
901
+ ### Patch Changes
902
+
903
+ - Updated dependencies [8698a7060]
904
+ - @pnpm/resolver-base@7.1.0
905
+
906
+ ## 4.1.6
907
+
908
+ ### Patch Changes
909
+
910
+ - @pnpm/resolver-base@7.0.5
911
+ - @pnpm/fetch@2.1.7
912
+
913
+ ## 4.1.5
914
+
915
+ ### Patch Changes
916
+
917
+ - @pnpm/resolver-base@7.0.4
918
+ - @pnpm/fetch@2.1.6
919
+
920
+ ## 4.1.4
921
+
922
+ ### Patch Changes
923
+
924
+ - @pnpm/fetch@2.1.5
925
+
926
+ ## 4.1.3
927
+
928
+ ### Patch Changes
929
+
930
+ - Updated dependencies [3981f5558]
931
+ - @pnpm/fetch@2.1.4
932
+
933
+ ## 4.1.2
934
+
935
+ ### Patch Changes
936
+
937
+ - @pnpm/fetch@2.1.3
938
+
939
+ ## 4.1.1
940
+
941
+ ### Patch Changes
942
+
943
+ - @pnpm/fetch@2.1.2
944
+
945
+ ## 4.1.0
946
+
947
+ ### Minor Changes
948
+
949
+ - 2ebcfc38a: Installation of private Git-hosted repositories via HTTPS, using an auth token.
950
+
951
+ ### Patch Changes
952
+
953
+ - 7b98d16c8: Update lru-cache to v6
954
+ - @pnpm/fetch@2.1.1
955
+
956
+ ## 4.0.16
957
+
958
+ ### Patch Changes
959
+
960
+ - Updated dependencies [71aeb9a38]
961
+ - @pnpm/fetch@2.1.0
962
+
963
+ ## 4.0.15
964
+
965
+ ### Patch Changes
966
+
967
+ - @pnpm/resolver-base@7.0.3
968
+ - @pnpm/fetch@2.0.2
969
+
970
+ ## 4.0.14
971
+
972
+ ### Patch Changes
973
+
974
+ - @pnpm/resolver-base@7.0.2
975
+ - @pnpm/fetch@2.0.1
976
+
977
+ ## 4.0.13
978
+
979
+ ### Patch Changes
980
+
981
+ - Updated dependencies [2ebb7af33]
982
+ - @pnpm/fetch@2.0.0
983
+
984
+ ## 4.0.12
985
+
986
+ ### Patch Changes
987
+
988
+ - @pnpm/fetch@1.0.4
989
+ - @pnpm/resolver-base@7.0.1
990
+
991
+ ## 4.0.12-alpha.0
992
+
993
+ ### Patch Changes
994
+
995
+ - @pnpm/resolver-base@7.0.1-alpha.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/resolving.git-resolver",
3
- "version": "1100.1.7",
3
+ "version": "1100.1.9",
4
4
  "description": "Resolver for git-hosted packages",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -29,20 +29,20 @@
29
29
  "!*.map"
30
30
  ],
31
31
  "dependencies": {
32
+ "@pnpm/error": "1100.0.1",
33
+ "@pnpm/network.fetch": "1100.1.5",
34
+ "@pnpm/resolving.resolver-base": "1100.5.2",
32
35
  "graceful-git": "^5.0.0",
33
36
  "hosted-git-info": "npm:@pnpm/hosted-git-info@1.0.0",
34
- "semver": "^7.8.4",
35
- "@pnpm/error": "1100.0.1",
36
- "@pnpm/resolving.resolver-base": "1100.5.0",
37
- "@pnpm/network.fetch": "1100.1.4"
37
+ "semver": "^7.8.4"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@jest/globals": "30.4.1",
41
+ "@pnpm/resolving.git-resolver": "1100.1.9",
41
42
  "@types/hosted-git-info": "^3.0.5",
42
43
  "@types/is-windows": "^1.0.2",
43
44
  "@types/semver": "7.7.1",
44
- "is-windows": "^1.0.2",
45
- "@pnpm/resolving.git-resolver": "1100.1.7"
45
+ "is-windows": "^1.0.2"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=22.13"