@mutmutco/cli 4.0.14 → 4.0.15
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 +12 -12
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -10832,10 +10832,10 @@ var rollout_plan_default = {
|
|
|
10832
10832
|
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)."
|
|
10833
10833
|
},
|
|
10834
10834
|
baseline: {
|
|
10835
|
-
version: "4.0.
|
|
10836
|
-
tag: "v4.0.
|
|
10837
|
-
commit: "
|
|
10838
|
-
npm: "@mutmutco/cli@4.0.
|
|
10835
|
+
version: "4.0.15",
|
|
10836
|
+
tag: "v4.0.15",
|
|
10837
|
+
commit: "86f45af99b96",
|
|
10838
|
+
npm: "@mutmutco/cli@4.0.15"
|
|
10839
10839
|
},
|
|
10840
10840
|
exitCriterion: "fleet-n-of-n",
|
|
10841
10841
|
hubOnlyShortcut: "forbidden",
|
|
@@ -10852,14 +10852,14 @@ var rollout_plan_default = {
|
|
|
10852
10852
|
repo: "mutmutco/mmi-hub",
|
|
10853
10853
|
role: "canary",
|
|
10854
10854
|
schedule: "train",
|
|
10855
|
-
v3Target: "v4.0.
|
|
10855
|
+
v3Target: "v4.0.15"
|
|
10856
10856
|
}
|
|
10857
10857
|
],
|
|
10858
10858
|
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.",
|
|
10859
10859
|
rollback: {
|
|
10860
10860
|
independent: true,
|
|
10861
|
-
mechanism: "npm dist-tag latest -> 4.0.
|
|
10862
|
-
v3Target: "v4.0.
|
|
10861
|
+
mechanism: "npm dist-tag latest -> 4.0.15 and redeploy the Hub Lambda from tag v4.0.15 (86f45af99b96); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
10862
|
+
v3Target: "v4.0.15 (@mutmutco/cli@4.0.15, tag commit 86f45af99b96 \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
10863
10863
|
}
|
|
10864
10864
|
},
|
|
10865
10865
|
{
|
|
@@ -29662,13 +29662,13 @@ async function resolveBoardAdvanceForPr(prNumber, repoOption) {
|
|
|
29662
29662
|
},
|
|
29663
29663
|
// #5317: after a successful move, re-read the board to verify Done actually holds — a move the API
|
|
29664
29664
|
// reported but the board did not reflect is named as left behind, never silently dropped.
|
|
29665
|
+
// #5358: verify against the item DIRECTLY (fetchIssueProjectItem, the same read `board show` uses),
|
|
29666
|
+
// never the active-board view — a just-Done item has already left the buckets readBoard partitions,
|
|
29667
|
+
// so a board-view lookup reports every successful advance as "not found".
|
|
29665
29668
|
readIssueStatus: async (ref) => {
|
|
29666
|
-
const number = Number(ref.replace(/^#/, ""));
|
|
29667
|
-
if (!Number.isInteger(number) || number <= 0 || !repo) return { error: `unusable ref ${ref}` };
|
|
29668
29669
|
try {
|
|
29669
|
-
const
|
|
29670
|
-
const
|
|
29671
|
-
const item = buckets.find((candidate2) => candidate2.repository.toLowerCase() === repo.toLowerCase() && candidate2.number === number);
|
|
29670
|
+
const cfg = resolveBoardConfig(await loadConfigForBoardSelector2(ref, repoOption));
|
|
29671
|
+
const { item } = await fetchIssueProjectItem(defaultGitHubClient(), cfg, parseIssueSelector(ref, repo));
|
|
29672
29672
|
return item ? { status: item.status } : { error: `issue ${ref} not found on the board after advance` };
|
|
29673
29673
|
} catch (e) {
|
|
29674
29674
|
return { error: e.message };
|
package/package.json
CHANGED