@mutmutco/cli 3.125.0 → 3.126.0
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 +11 -9
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -15840,10 +15840,10 @@ var rollout_plan_default = {
|
|
|
15840
15840
|
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)."
|
|
15841
15841
|
},
|
|
15842
15842
|
baseline: {
|
|
15843
|
-
version: "3.
|
|
15844
|
-
tag: "v3.
|
|
15845
|
-
commit: "
|
|
15846
|
-
npm: "@mutmutco/cli@3.
|
|
15843
|
+
version: "3.126.0",
|
|
15844
|
+
tag: "v3.126.0",
|
|
15845
|
+
commit: "1ccba0834c2a",
|
|
15846
|
+
npm: "@mutmutco/cli@3.126.0"
|
|
15847
15847
|
},
|
|
15848
15848
|
exitCriterion: "fleet-n-of-n",
|
|
15849
15849
|
hubOnlyShortcut: "forbidden",
|
|
@@ -15860,14 +15860,14 @@ var rollout_plan_default = {
|
|
|
15860
15860
|
repo: "mutmutco/mmi-hub",
|
|
15861
15861
|
role: "canary",
|
|
15862
15862
|
schedule: "train",
|
|
15863
|
-
v3Target: "v3.
|
|
15863
|
+
v3Target: "v3.126.0"
|
|
15864
15864
|
}
|
|
15865
15865
|
],
|
|
15866
15866
|
rollbackTrigger: "Any red inside the post-cut soak window: `devops train gate` FAIL attributable to the v4 doors, Hub endpoint health probe failure, a v3 client refused while the compat window must still admit it (SUPPORTED_MINOR_WINDOW=2, MIN_CLIENT_VERSION 0.0.0 \u2014 D6a), or npm consumer install/doctor failure on the v4 dist.",
|
|
15867
15867
|
rollback: {
|
|
15868
15868
|
independent: true,
|
|
15869
|
-
mechanism: "npm dist-tag latest -> 3.
|
|
15870
|
-
v3Target: "v3.
|
|
15869
|
+
mechanism: "npm dist-tag latest -> 3.126.0 and redeploy the Hub Lambda from tag v3.126.0 (1ccba0834c2a); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
15870
|
+
v3Target: "v3.126.0 (@mutmutco/cli@3.126.0, tag commit 1ccba0834c2a \u2014 the preserved latest-v3 distribution, D6b)"
|
|
15871
15871
|
}
|
|
15872
15872
|
},
|
|
15873
15873
|
{
|
|
@@ -36998,6 +36998,7 @@ var surfaces_default = {
|
|
|
36998
36998
|
surfaceId: "mmi-cli"
|
|
36999
36999
|
},
|
|
37000
37000
|
hookPolicy: {
|
|
37001
|
+
consoleLauncherPath: "bin/mmi-hook-console.cmd",
|
|
37001
37002
|
launcherPath: "bin/mmi-hook",
|
|
37002
37003
|
ownerPath: "scripts/hook-policy.mjs",
|
|
37003
37004
|
runnerPath: "scripts/hook-run.mjs",
|
|
@@ -37661,6 +37662,7 @@ var surfaces_default = {
|
|
|
37661
37662
|
"scripts/hook-trace.mjs",
|
|
37662
37663
|
"bin/mmi-hook",
|
|
37663
37664
|
"bin/mmi-hook.exe",
|
|
37665
|
+
"bin/mmi-hook-console.cmd",
|
|
37664
37666
|
"native/windows-hook-launcher.c",
|
|
37665
37667
|
"scripts/build-windows-hook-launcher.ps1",
|
|
37666
37668
|
"scripts/probe-windows-hook-window.ps1"
|
|
@@ -41189,10 +41191,10 @@ project.command("get [owner/repo]").description("a project's META (board ids + p
|
|
|
41189
41191
|
const track = resolveReleaseTrack(m, void 0, target);
|
|
41190
41192
|
const stages = branchesForTrack(track).join(" -> ");
|
|
41191
41193
|
const note = track === "direct" ? " (direct \u2014 no rc; /rcand refuses, /release ships development -> main)" : track === "trunk" ? " (trunk \u2014 main only)" : "";
|
|
41194
|
+
const deployNote = m.deployModel === "registry-publish" ? "\ndeploys are repository-owned publish workflows (registry-publish); no central tenant deploy runs for this repo." : "\ndeploys run centrally (tenant-deploy.yml); product repos carry no deploy files.";
|
|
41192
41195
|
console.error(
|
|
41193
41196
|
`${m.name ?? target} \u2014 class ${m.class ?? "?"} \u2014 deploy ${m.deployModel ?? "?"}
|
|
41194
|
-
release track: ${track} \u2014 stages: ${stages}${note}
|
|
41195
|
-
deploys run centrally (tenant-deploy.yml); product repos carry no deploy files. Inspect nonsecret DEPLOY facts with \`mmi-cli oracle org project deploy get\`; full coords remain OIDC-gated.`
|
|
41197
|
+
release track: ${track} \u2014 stages: ${stages}${note}` + deployNote + " Inspect nonsecret DEPLOY facts with `mmi-cli oracle org project deploy get`; full coords remain OIDC-gated."
|
|
41196
41198
|
);
|
|
41197
41199
|
}
|
|
41198
41200
|
});
|
package/package.json
CHANGED