@mutmutco/cli 4.3.47 → 4.3.49

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.
Files changed (2) hide show
  1. package/dist/main.cjs +9 -9
  2. 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.47",
15862
- tag: "v4.3.47",
15863
- commit: "9c81f5030532",
15864
- npm: "@mutmutco/cli@4.3.47"
15861
+ version: "4.3.49",
15862
+ tag: "v4.3.49",
15863
+ commit: "cf2de106fc7f",
15864
+ npm: "@mutmutco/cli@4.3.49"
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.47"
15881
+ v3Target: "v4.3.49"
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.47 and redeploy the Hub Lambda from tag v4.3.47 (9c81f5030532); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15888
- v3Target: "v4.3.47 (@mutmutco/cli@4.3.47, tag commit 9c81f5030532 \u2014 last known-good release carrying the repo-index v4-only contract)"
15887
+ mechanism: "npm dist-tag latest -> 4.3.49 and redeploy the Hub Lambda from tag v4.3.49 (cf2de106fc7f); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15888
+ v3Target: "v4.3.49 (@mutmutco/cli@4.3.49, tag commit cf2de106fc7f \u2014 last known-good release carrying the repo-index v4-only contract)"
15889
15889
  }
15890
15890
  },
15891
15891
  {
@@ -40417,7 +40417,7 @@ ${list}`);
40417
40417
  }
40418
40418
  console.log(JSON.stringify({ number: parsed.number, repo, item: result.item.text, checked, changed: true }));
40419
40419
  });
40420
- program3.command("report").description("file a friction report on the Hub board (Hub session auth, dedups open reports) and print {number,url} JSON \u2014 learning-tagged; file and forget (cloud agents own the fix; do not claim/poll it)").option("--title <title>", "one-line friction summary").option("--title-file <path|->", "read the friction summary from a UTF-8 file, or from stdin with -").option("--body <body>", "report body (markdown)").option("--body-file <path|->", "read report body from a UTF-8 file, or from stdin with -").addOption(new Option("--type <type>", "bug | feature | task (sets the matching label)").default("task").choices([...ISSUE_TYPES])).option("--priority <priority>", "urgent | high | medium | low (defaults to medium; sets the board Priority field only, #416)").option("--repo <owner/repo>", 'attribute the report to a different source repo than the current checkout for the "Filed via..." footer (rare \u2014 usually auto-detected; every report always lands on the org Hub, never an alternate target, #263)').option("--force", "file a new issue even when an open report looks like a duplicate").option("--json", "machine-readable output (already the default \u2014 report always prints JSON; #682)").action(async (o) => {
40420
+ program3.command("report").description("file a friction report on the Hub board (Hub session auth, dedups open reports) and print {number,url} JSON \u2014 learning-tagged; file and forget (cloud agents own the fix; do not claim/poll it)").option("--title <title>", "one-line friction summary").option("--title-file <path|->", "read the friction summary from a UTF-8 file, or from stdin with -").option("--body <body>", "report body (markdown)").option("--body-file <path|->", "read report body from a UTF-8 file, or from stdin with -").addOption(new Option("--type <type>", "bug | feature | task (sets the matching label)").default("task").choices([...ISSUE_TYPES])).option("--priority <priority>", "urgent | high | medium | low (defaults to medium; sets the board Priority field only, #416)").option("--repo <owner/repo>", 'attribute the report to a different source repo than the current checkout for the "Filed via..." footer (rare \u2014 usually auto-detected; every report always lands on the org Hub, never an alternate target, #263)').option("--slack-email <email>", "confirmed Slack workspace email for released-fix DMs (notification destination only, not verified identity)").option("--force", "file a new issue even when an open report looks like a duplicate").option("--json", "machine-readable output (already the default \u2014 report always prints JSON; #682)").action(async (o) => {
40421
40421
  let body;
40422
40422
  let priority;
40423
40423
  let title;
@@ -40451,7 +40451,7 @@ ${list}`);
40451
40451
  fetch: (url, init = {}) => fetch(url, { ...init, signal: init.signal ?? AbortSignal.timeout(1e4) }),
40452
40452
  headers: (extra) => hubHeaders(extra)
40453
40453
  },
40454
- { title, body, type: o.type, priority, repo: sourceRepo, force: Boolean(o.force) }
40454
+ { title, body, type: o.type, priority, repo: sourceRepo, force: Boolean(o.force), ...o.slackEmail ? { slackEmail: o.slackEmail } : {} }
40455
40455
  );
40456
40456
  if (!result.ok) return fail(`report: ${result.error}`);
40457
40457
  console.log(JSON.stringify(result.body));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "4.3.47",
3
+ "version": "4.3.49",
4
4
  "description": "MMI Future CLI — the org dev toolbox and shared cross-IDE engine for every registry-declared MMI coding surface.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",