@mutmutco/cli 4.3.46 → 4.3.47

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 +8 -8
  2. package/package.json +1 -1
package/dist/main.cjs CHANGED
@@ -15858,10 +15858,10 @@ var rollout_plan_default = {
15858
15858
  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)."
15859
15859
  },
15860
15860
  baseline: {
15861
- version: "4.3.46",
15862
- tag: "v4.3.46",
15863
- commit: "75ec957e96b9",
15864
- npm: "@mutmutco/cli@4.3.46"
15861
+ version: "4.3.47",
15862
+ tag: "v4.3.47",
15863
+ commit: "9c81f5030532",
15864
+ npm: "@mutmutco/cli@4.3.47"
15865
15865
  },
15866
15866
  exitCriterion: "fleet-n-of-n",
15867
15867
  hubOnlyShortcut: "forbidden",
@@ -15878,14 +15878,14 @@ var rollout_plan_default = {
15878
15878
  repo: "mutmutco/mmi-hub",
15879
15879
  role: "canary",
15880
15880
  schedule: "train",
15881
- v3Target: "v4.3.46"
15881
+ v3Target: "v4.3.47"
15882
15882
  }
15883
15883
  ],
15884
15884
  rollbackTrigger: "Any red inside the post-contract soak window: `devops train gate` FAIL attributable to the v4 doors, Hub endpoint health probe failure, a pre-v4 client admitted instead of receiving actionable HTTP 426, or npm consumer install/doctor failure on the v4-only dist.",
15885
15885
  rollback: {
15886
15886
  independent: true,
15887
- mechanism: "npm dist-tag latest -> 4.3.46 and redeploy the Hub Lambda from tag v4.3.46 (75ec957e96b9); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15888
- v3Target: "v4.3.46 (@mutmutco/cli@4.3.46, tag commit 75ec957e96b9 \u2014 last known-good release carrying the repo-index v4-only contract)"
15887
+ mechanism: "npm dist-tag latest -> 4.3.47 and redeploy the Hub Lambda from tag v4.3.47 (9c81f5030532); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15888
+ v3Target: "v4.3.47 (@mutmutco/cli@4.3.47, tag commit 9c81f5030532 \u2014 last known-good release carrying the repo-index v4-only contract)"
15889
15889
  }
15890
15890
  },
15891
15891
  {
@@ -21869,7 +21869,7 @@ async function runTrainDoctor(input) {
21869
21869
  const tip = await git3(["rev-parse", "--verify", "--quiet", `refs/remotes/origin/${startBranch}`]);
21870
21870
  const checkRuns = JSON.parse(await train.run("gh", ["api", `repos/${repo}/commits/${tip}/check-runs`, "--jq", TRAIN_CHECK_RUNS_JQ]));
21871
21871
  const statuses = JSON.parse(await train.run("gh", ["api", `repos/${repo}/commits/${tip}/status`, "--jq", TRAIN_COMMIT_STATUS_JQ]));
21872
- const observed = required.filter((c) => checkRuns.some((r) => r.name === c) || statuses.some((s) => s.context === c));
21872
+ const observed = required.filter((c) => checkRuns.some((r) => r.name === c && !(r.status === "completed" && (r.conclusion === "skipped" || r.conclusion === "neutral"))) || statuses.some((s) => s.context === c));
21873
21873
  const red = observed.filter((c) => resolveContextState(c, checkRuns, statuses) === "failed");
21874
21874
  const inFlight = observed.filter((c) => resolveContextState(c, checkRuns, statuses) === "pending");
21875
21875
  const at = `${startBranch}@${tip.slice(0, 12)}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "4.3.46",
3
+ "version": "4.3.47",
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",