@mutmutco/cli 3.109.0 → 3.110.0

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/dist/main.cjs +12 -8
  2. package/package.json +1 -1
package/dist/main.cjs CHANGED
@@ -15618,10 +15618,10 @@ var rollout_plan_default = {
15618
15618
  note: "The v4.0.0 stamp happens at cut time (D6e #4463); until then the candidate is the origin/development head artifacts (built cli/dist + npm pack), identity proven by dist content hash (D6a)."
15619
15619
  },
15620
15620
  baseline: {
15621
- version: "3.109.0",
15622
- tag: "v3.109.0",
15623
- commit: "4a40e7482c59",
15624
- npm: "@mutmutco/cli@3.109.0"
15621
+ version: "3.110.0",
15622
+ tag: "v3.110.0",
15623
+ commit: "6417e1ccdaf4",
15624
+ npm: "@mutmutco/cli@3.110.0"
15625
15625
  },
15626
15626
  exitCriterion: "fleet-n-of-n",
15627
15627
  hubOnlyShortcut: "forbidden",
@@ -15638,14 +15638,14 @@ var rollout_plan_default = {
15638
15638
  repo: "mutmutco/mmi-hub",
15639
15639
  role: "canary",
15640
15640
  schedule: "train",
15641
- v3Target: "v3.109.0"
15641
+ v3Target: "v3.110.0"
15642
15642
  }
15643
15643
  ],
15644
15644
  rollbackTrigger: "Any red inside the post-cut soak window: `devops train gate` FAIL attributable to the v4 doors, Hub endpoint health probe failure, a v3 client refused while the compat window must still admit it (SUPPORTED_MINOR_WINDOW=2, MIN_CLIENT_VERSION 0.0.0 \u2014 D6a), or npm consumer install/doctor failure on the v4 dist.",
15645
15645
  rollback: {
15646
15646
  independent: true,
15647
- mechanism: "npm dist-tag latest -> 3.109.0 and redeploy the Hub Lambda from tag v3.109.0 (4a40e7482c59); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15648
- v3Target: "v3.109.0 (@mutmutco/cli@3.109.0, tag commit 4a40e7482c59 \u2014 the preserved latest-v3 distribution, D6b)"
15647
+ mechanism: "npm dist-tag latest -> 3.110.0 and redeploy the Hub Lambda from tag v3.110.0 (6417e1ccdaf4); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15648
+ v3Target: "v3.110.0 (@mutmutco/cli@3.110.0, tag commit 6417e1ccdaf4 \u2014 the preserved latest-v3 distribution, D6b)"
15649
15649
  }
15650
15650
  },
15651
15651
  {
@@ -22388,6 +22388,7 @@ var WRITE_PROBE_CONCURRENCY = 8;
22388
22388
  var CLAIM_CONCURRENCY = 5;
22389
22389
  var BOARD_ACTIVE_READ_MAX_PAGES = 100;
22390
22390
  var BOARD_PROJECTION_STALE_MS = 24 * 60 * 6e4;
22391
+ var BOARD_PROJECTION_RECONCILE_STALE_MS = 3 * 60 * 6e4;
22391
22392
  var BOARD_PROJECTION_TIMEOUT_MS = 8e3;
22392
22393
  var execFileP4 = (file, args, options = {}) => (
22393
22394
  // encoding 'utf8' guarantees string output at runtime; the cast pins the type (promisify's
@@ -22836,7 +22837,10 @@ function projectionFreshness(row, now) {
22836
22837
  projectedAgeMs,
22837
22838
  sourceTimestamp: row.watermark.sourceTimestamp,
22838
22839
  sourceAgeMs,
22839
- health: row.watermark.health === "stale" || sourceAgeMs > BOARD_PROJECTION_STALE_MS ? "stale" : "fresh"
22840
+ // #4774: health must agree with BOTH ages a caller can see on the source line — a projection whose
22841
+ // rebuild (projectedAt) went stale is exactly as unreliable as one whose source events did, even
22842
+ // while recent webhook activity keeps sourceAgeMs looking fresh.
22843
+ health: row.watermark.health === "stale" || sourceAgeMs > BOARD_PROJECTION_STALE_MS || projectedAgeMs > BOARD_PROJECTION_RECONCILE_STALE_MS ? "stale" : "fresh"
22840
22844
  };
22841
22845
  }
22842
22846
  function renderBoardSource(report) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "3.109.0",
3
+ "version": "3.110.0",
4
4
  "description": "MMI Future CLI — the org dev toolbox and shared cross-IDE engine for every registry-declared MMI coding surface.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",