@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 — in Milestone 3 of
424
- #2037, once every inheriting repo's baseline has been regenerated as v2.
425
- Kept only for the duration of that migration: while it is in effect, a
426
- genuinely new v2 branch that collides on `path:kind:label` with an
427
- already-baselined branch at a different line is absorbed as "known"
428
- rather than flagged — reintroducing #2026's collision bug for exactly as
429
- long as this shim lives.
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 — in Milestone 3 of
424
- #2037, once every inheriting repo's baseline has been regenerated as v2.
425
- Kept only for the duration of that migration: while it is in effect, a
426
- genuinely new v2 branch that collides on `path:kind:label` with an
427
- already-baselined branch at a different line is absorbed as "known"
428
- rather than flagged — reintroducing #2026's collision bug for exactly as
429
- long as this shim lives.
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():
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.317.1",
3
+ "version": "0.317.2",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",