@mutmutco/cli 4.3.13 → 4.3.14
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.
- package/dist/main.cjs +20 -9
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -15476,10 +15476,10 @@ var rollout_plan_default = {
|
|
|
15476
15476
|
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)."
|
|
15477
15477
|
},
|
|
15478
15478
|
baseline: {
|
|
15479
|
-
version: "4.3.
|
|
15480
|
-
tag: "v4.3.
|
|
15481
|
-
commit: "
|
|
15482
|
-
npm: "@mutmutco/cli@4.3.
|
|
15479
|
+
version: "4.3.14",
|
|
15480
|
+
tag: "v4.3.14",
|
|
15481
|
+
commit: "1382ade8602e",
|
|
15482
|
+
npm: "@mutmutco/cli@4.3.14"
|
|
15483
15483
|
},
|
|
15484
15484
|
exitCriterion: "fleet-n-of-n",
|
|
15485
15485
|
hubOnlyShortcut: "forbidden",
|
|
@@ -15496,14 +15496,14 @@ var rollout_plan_default = {
|
|
|
15496
15496
|
repo: "mutmutco/mmi-hub",
|
|
15497
15497
|
role: "canary",
|
|
15498
15498
|
schedule: "train",
|
|
15499
|
-
v3Target: "v4.3.
|
|
15499
|
+
v3Target: "v4.3.14"
|
|
15500
15500
|
}
|
|
15501
15501
|
],
|
|
15502
15502
|
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.",
|
|
15503
15503
|
rollback: {
|
|
15504
15504
|
independent: true,
|
|
15505
|
-
mechanism: "npm dist-tag latest -> 4.3.
|
|
15506
|
-
v3Target: "v4.3.
|
|
15505
|
+
mechanism: "npm dist-tag latest -> 4.3.14 and redeploy the Hub Lambda from tag v4.3.14 (1382ade8602e); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
15506
|
+
v3Target: "v4.3.14 (@mutmutco/cli@4.3.14, tag commit 1382ade8602e \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
15507
15507
|
}
|
|
15508
15508
|
},
|
|
15509
15509
|
{
|
|
@@ -37734,8 +37734,19 @@ async function prCreateClaimRefusal(body, repoOption, deps = {}) {
|
|
|
37734
37734
|
if (!contest.contested) continue;
|
|
37735
37735
|
const ref = `${repo}#${number}`;
|
|
37736
37736
|
const commentsPath = `repos/${repo}/issues/${number}/comments`;
|
|
37737
|
-
const
|
|
37738
|
-
|
|
37737
|
+
const now = deps.now ?? Date.now;
|
|
37738
|
+
const postedMs = contest.marker ? Date.parse(contest.marker.ts) : NaN;
|
|
37739
|
+
const posted = contest.marker && Number.isFinite(postedMs) ? `, posted ${contest.marker.ts} (${formatClaimAge(now() - postedMs)} old)` : "";
|
|
37740
|
+
const kinds = contest.live.length ? contest.unverifiable.length ? "live and unreadable" : "live" : "unreadable";
|
|
37741
|
+
const why = [
|
|
37742
|
+
contest.live.join("; "),
|
|
37743
|
+
contest.unverifiable.length ? `liveness could not be fully verified (failed to read: ${contest.unverifiable.join(", ")})` : ""
|
|
37744
|
+
].filter(Boolean).join("; ");
|
|
37745
|
+
if (!contest.marker && !contest.unverifiable.includes("comments")) {
|
|
37746
|
+
return `pr create: REFUSED \u2014 ${ref} carries no claim marker (its claim-marker comments were read from ${commentsPath} and name no holder) and shows ${kinds} work evidence (${why}); if this work is yours, \`mmi-cli oracle board claim ${ref} --force\` re-stamps your lane's marker and clears the refusal (move it to In Progress first if it sits In Review), or drop the closing line before creating this PR`;
|
|
37747
|
+
}
|
|
37748
|
+
const holder = contest.marker ? `lane ${describeClaimMarker(contest.marker)} (claim marker read from ${commentsPath}${posted})` : `an unreadable lane (its claim-marker comments could not be read${throttledPaths.has(commentsPath) ? " \u2014 GitHub rate-limited the read (HTTP 403) and the bounded reset-aware retry could not clear it" : ""}; the holder may be this very lane)`;
|
|
37749
|
+
return `pr create: REFUSED \u2014 ${ref} is held by ${holder} with ${kinds} work evidence (${why}); run \`mmi-cli oracle board claim ${ref} --force\` (move it to In Progress first if it sits In Review) or drop the closing line before creating this PR`;
|
|
37739
37750
|
}
|
|
37740
37751
|
return void 0;
|
|
37741
37752
|
}
|
package/package.json
CHANGED