@mutmutco/cli 3.112.0 → 3.113.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.
Files changed (2) hide show
  1. package/dist/main.cjs +8 -7
  2. package/package.json +1 -1
package/dist/main.cjs CHANGED
@@ -13180,6 +13180,7 @@ function scheduleRecordFromWorkflow(repo, workflowPath, yamlText) {
13180
13180
  if (!crons.length && !header.schedule) return null;
13181
13181
  const basename6 = workflowPath.split("/").pop() ?? workflowPath;
13182
13182
  const expectedId = `${repo}/${basename6.replace(/\.ya?ml$/, "")}`;
13183
+ if (STRAY_CRON_EXEMPT.has(expectedId)) return null;
13183
13184
  const missing = SCHEDULE_HEADER_FIELDS.filter((f) => !header[f]);
13184
13185
  if (missing.length) {
13185
13186
  throw new Error(`schedules register: ${expectedId} (${workflowPath}) is a scheduled workflow but is missing the eight-field entry-template header field(s): ${missing.join(", ")} \u2014 see docs/schedules.md "The entry template".`);
@@ -15634,10 +15635,10 @@ var rollout_plan_default = {
15634
15635
  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)."
15635
15636
  },
15636
15637
  baseline: {
15637
- version: "3.112.0",
15638
- tag: "v3.112.0",
15639
- commit: "e6eaa0103b25",
15640
- npm: "@mutmutco/cli@3.112.0"
15638
+ version: "3.113.0",
15639
+ tag: "v3.113.0",
15640
+ commit: "1d1e521aa96f",
15641
+ npm: "@mutmutco/cli@3.113.0"
15641
15642
  },
15642
15643
  exitCriterion: "fleet-n-of-n",
15643
15644
  hubOnlyShortcut: "forbidden",
@@ -15654,14 +15655,14 @@ var rollout_plan_default = {
15654
15655
  repo: "mutmutco/mmi-hub",
15655
15656
  role: "canary",
15656
15657
  schedule: "train",
15657
- v3Target: "v3.112.0"
15658
+ v3Target: "v3.113.0"
15658
15659
  }
15659
15660
  ],
15660
15661
  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.",
15661
15662
  rollback: {
15662
15663
  independent: true,
15663
- mechanism: "npm dist-tag latest -> 3.112.0 and redeploy the Hub Lambda from tag v3.112.0 (e6eaa0103b25); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15664
- v3Target: "v3.112.0 (@mutmutco/cli@3.112.0, tag commit e6eaa0103b25 \u2014 the preserved latest-v3 distribution, D6b)"
15664
+ mechanism: "npm dist-tag latest -> 3.113.0 and redeploy the Hub Lambda from tag v3.113.0 (1d1e521aa96f); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15665
+ v3Target: "v3.113.0 (@mutmutco/cli@3.113.0, tag commit 1d1e521aa96f \u2014 the preserved latest-v3 distribution, D6b)"
15665
15666
  }
15666
15667
  },
15667
15668
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "3.112.0",
3
+ "version": "3.113.0",
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",