@mutmutco/cli 4.3.48 → 4.3.50
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 +9 -8
- 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.
|
|
15862
|
-
tag: "v4.3.
|
|
15863
|
-
commit: "
|
|
15864
|
-
npm: "@mutmutco/cli@4.3.
|
|
15861
|
+
version: "4.3.50",
|
|
15862
|
+
tag: "v4.3.50",
|
|
15863
|
+
commit: "d24d7fd0aaca",
|
|
15864
|
+
npm: "@mutmutco/cli@4.3.50"
|
|
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.
|
|
15881
|
+
v3Target: "v4.3.50"
|
|
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.
|
|
15888
|
-
v3Target: "v4.3.
|
|
15887
|
+
mechanism: "npm dist-tag latest -> 4.3.50 and redeploy the Hub Lambda from tag v4.3.50 (d24d7fd0aaca); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
15888
|
+
v3Target: "v4.3.50 (@mutmutco/cli@4.3.50, tag commit d24d7fd0aaca \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
15889
15889
|
}
|
|
15890
15890
|
},
|
|
15891
15891
|
{
|
|
@@ -43991,6 +43991,7 @@ var GH_RUN_WATCH_TIMEOUT_MS = 20 * 6e4;
|
|
|
43991
43991
|
var NODE_PREPARE_TIMEOUT_MS = 10 * 6e4;
|
|
43992
43992
|
var NODE_VERIFY_TIMEOUT_MS = 5 * 6e4;
|
|
43993
43993
|
var NPM_TRAIN_TIMEOUT_MS = 6e4;
|
|
43994
|
+
var NPM_FOLD_TIMEOUT_MS = NODE_PREPARE_TIMEOUT_MS;
|
|
43994
43995
|
var JERV_GATEWAY_DEPLOY_TIMEOUT_MS = 20 * 6e4;
|
|
43995
43996
|
async function announceSummaryRefusal(path2) {
|
|
43996
43997
|
let lines2;
|
|
@@ -44007,7 +44008,7 @@ async function announceSummaryRefusal(path2) {
|
|
|
44007
44008
|
function trainApplyDeps() {
|
|
44008
44009
|
return {
|
|
44009
44010
|
run: async (file, args) => {
|
|
44010
|
-
const timeout = file === "node" && args[1] === "prepare" ? NODE_PREPARE_TIMEOUT_MS : file === "node" && args[1] === "verify" ? NODE_VERIFY_TIMEOUT_MS : file === "npm" ? NPM_TRAIN_TIMEOUT_MS : file === "bash" && args[0] === "scripts/jerv-gateway-release-deploy.sh" ? JERV_GATEWAY_DEPLOY_TIMEOUT_MS : file !== "gh" ? GIT_TIMEOUT_MS : args[0] === "run" && args[1] === "watch" ? GH_RUN_WATCH_TIMEOUT_MS : GH_TRAIN_TIMEOUT_MS;
|
|
44011
|
+
const timeout = file === "node" && args[1] === "prepare" ? NODE_PREPARE_TIMEOUT_MS : file === "node" && args[1] === "verify" ? NODE_VERIFY_TIMEOUT_MS : file === "npm" && (args[0] === "version" || args[0] === "ci" || args[0] === "install") ? NPM_FOLD_TIMEOUT_MS : file === "npm" ? NPM_TRAIN_TIMEOUT_MS : file === "bash" && args[0] === "scripts/jerv-gateway-release-deploy.sh" ? JERV_GATEWAY_DEPLOY_TIMEOUT_MS : file !== "gh" ? GIT_TIMEOUT_MS : args[0] === "run" && args[1] === "watch" ? GH_RUN_WATCH_TIMEOUT_MS : GH_TRAIN_TIMEOUT_MS;
|
|
44011
44012
|
try {
|
|
44012
44013
|
return isWin3 && file === "npm" ? (await execFileP("cmd.exe", ["/c", "npm", ...args], { timeout })).stdout : (await execFileP(file, args, { timeout })).stdout;
|
|
44013
44014
|
} catch (e) {
|
package/package.json
CHANGED