@biffo/cli 0.317.1 → 0.317.2
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.
|
@@ -420,13 +420,20 @@ def _legacy_key(k: str) -> str:
|
|
|
420
420
|
is returned unchanged (its second field is `except`/`fallback`, never a
|
|
421
421
|
digit), so this is a no-op for every baseline still in v1 form.
|
|
422
422
|
|
|
423
|
-
Retire this — and the union in `main()` that calls it —
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
423
|
+
Retire this — and the union in `main()` that calls it — once every
|
|
424
|
+
inheriting repo's baseline has been regenerated as v2. Kept only for the
|
|
425
|
+
duration of that migration: while it is in effect, a genuinely new v2
|
|
426
|
+
branch that collides on `path:kind:label` with an already-baselined
|
|
427
|
+
branch at a different line is absorbed as "known" rather than flagged —
|
|
428
|
+
reintroducing #2026's collision bug for exactly as long as this shim
|
|
429
|
+
lives.
|
|
430
|
+
|
|
431
|
+
EXPIRY: tracked by keiranholloway/biffo-template#2056 (the original
|
|
432
|
+
tracking issue, #2037, was auto-closed by the shim's own landing PR
|
|
433
|
+
before Milestones 2/3 were done — #2056 is its replacement). A repo
|
|
434
|
+
still carrying this shim after that issue closes is exposed to the
|
|
435
|
+
collision above and should be flagged by any doctor/sweep check that
|
|
436
|
+
reads this docstring — grep for "EXPIRY" in this function.
|
|
430
437
|
"""
|
|
431
438
|
parts = k.split(":", 2)
|
|
432
439
|
if len(parts) == 3 and parts[1].isdigit():
|
|
@@ -420,13 +420,20 @@ def _legacy_key(k: str) -> str:
|
|
|
420
420
|
is returned unchanged (its second field is `except`/`fallback`, never a
|
|
421
421
|
digit), so this is a no-op for every baseline still in v1 form.
|
|
422
422
|
|
|
423
|
-
Retire this — and the union in `main()` that calls it —
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
423
|
+
Retire this — and the union in `main()` that calls it — once every
|
|
424
|
+
inheriting repo's baseline has been regenerated as v2. Kept only for the
|
|
425
|
+
duration of that migration: while it is in effect, a genuinely new v2
|
|
426
|
+
branch that collides on `path:kind:label` with an already-baselined
|
|
427
|
+
branch at a different line is absorbed as "known" rather than flagged —
|
|
428
|
+
reintroducing #2026's collision bug for exactly as long as this shim
|
|
429
|
+
lives.
|
|
430
|
+
|
|
431
|
+
EXPIRY: tracked by keiranholloway/biffo-template#2056 (the original
|
|
432
|
+
tracking issue, #2037, was auto-closed by the shim's own landing PR
|
|
433
|
+
before Milestones 2/3 were done — #2056 is its replacement). A repo
|
|
434
|
+
still carrying this shim after that issue closes is exposed to the
|
|
435
|
+
collision above and should be flagged by any doctor/sweep check that
|
|
436
|
+
reads this docstring — grep for "EXPIRY" in this function.
|
|
430
437
|
"""
|
|
431
438
|
parts = k.split(":", 2)
|
|
432
439
|
if len(parts) == 3 and parts[1].isdigit():
|