@mutmutco/cli 4.3.32 → 4.3.33
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 +10 -8
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -15586,10 +15586,10 @@ var rollout_plan_default = {
|
|
|
15586
15586
|
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)."
|
|
15587
15587
|
},
|
|
15588
15588
|
baseline: {
|
|
15589
|
-
version: "4.3.
|
|
15590
|
-
tag: "v4.3.
|
|
15591
|
-
commit: "
|
|
15592
|
-
npm: "@mutmutco/cli@4.3.
|
|
15589
|
+
version: "4.3.33",
|
|
15590
|
+
tag: "v4.3.33",
|
|
15591
|
+
commit: "1c3419ebea6e",
|
|
15592
|
+
npm: "@mutmutco/cli@4.3.33"
|
|
15593
15593
|
},
|
|
15594
15594
|
exitCriterion: "fleet-n-of-n",
|
|
15595
15595
|
hubOnlyShortcut: "forbidden",
|
|
@@ -15606,14 +15606,14 @@ var rollout_plan_default = {
|
|
|
15606
15606
|
repo: "mutmutco/mmi-hub",
|
|
15607
15607
|
role: "canary",
|
|
15608
15608
|
schedule: "train",
|
|
15609
|
-
v3Target: "v4.3.
|
|
15609
|
+
v3Target: "v4.3.33"
|
|
15610
15610
|
}
|
|
15611
15611
|
],
|
|
15612
15612
|
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.",
|
|
15613
15613
|
rollback: {
|
|
15614
15614
|
independent: true,
|
|
15615
|
-
mechanism: "npm dist-tag latest -> 4.3.
|
|
15616
|
-
v3Target: "v4.3.
|
|
15615
|
+
mechanism: "npm dist-tag latest -> 4.3.33 and redeploy the Hub Lambda from tag v4.3.33 (1c3419ebea6e); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
15616
|
+
v3Target: "v4.3.33 (@mutmutco/cli@4.3.33, tag commit 1c3419ebea6e \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
15617
15617
|
}
|
|
15618
15618
|
},
|
|
15619
15619
|
{
|
|
@@ -32532,7 +32532,9 @@ function nearestExplainTargets(query, paths, limit = 5) {
|
|
|
32532
32532
|
};
|
|
32533
32533
|
const guide = unknownCommandDomainGuide(parentPath, leaf);
|
|
32534
32534
|
if (guide) return withSiblings(guide.expected);
|
|
32535
|
-
const
|
|
32535
|
+
const house = query.split(" ")[0];
|
|
32536
|
+
const inTypedHouse = (p) => p.startsWith(`${house} `);
|
|
32537
|
+
const exactLeaf = all.filter((p) => p !== query && leafOf(p) === leaf).sort((a, b) => Number(inTypedHouse(b)) - Number(inTypedHouse(a)) || (a < b ? -1 : a > b ? 1 : 0));
|
|
32536
32538
|
if (exactLeaf.length) return withSiblings(exactLeaf);
|
|
32537
32539
|
const out = [];
|
|
32538
32540
|
const nearPath = didYouMean(query, all);
|
package/package.json
CHANGED