@mutmutco/cli 4.3.22 → 4.3.23
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
|
@@ -15519,10 +15519,10 @@ var rollout_plan_default = {
|
|
|
15519
15519
|
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)."
|
|
15520
15520
|
},
|
|
15521
15521
|
baseline: {
|
|
15522
|
-
version: "4.3.
|
|
15523
|
-
tag: "v4.3.
|
|
15524
|
-
commit: "
|
|
15525
|
-
npm: "@mutmutco/cli@4.3.
|
|
15522
|
+
version: "4.3.23",
|
|
15523
|
+
tag: "v4.3.23",
|
|
15524
|
+
commit: "64b06ac32d90",
|
|
15525
|
+
npm: "@mutmutco/cli@4.3.23"
|
|
15526
15526
|
},
|
|
15527
15527
|
exitCriterion: "fleet-n-of-n",
|
|
15528
15528
|
hubOnlyShortcut: "forbidden",
|
|
@@ -15539,14 +15539,14 @@ var rollout_plan_default = {
|
|
|
15539
15539
|
repo: "mutmutco/mmi-hub",
|
|
15540
15540
|
role: "canary",
|
|
15541
15541
|
schedule: "train",
|
|
15542
|
-
v3Target: "v4.3.
|
|
15542
|
+
v3Target: "v4.3.23"
|
|
15543
15543
|
}
|
|
15544
15544
|
],
|
|
15545
15545
|
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.",
|
|
15546
15546
|
rollback: {
|
|
15547
15547
|
independent: true,
|
|
15548
|
-
mechanism: "npm dist-tag latest -> 4.3.
|
|
15549
|
-
v3Target: "v4.3.
|
|
15548
|
+
mechanism: "npm dist-tag latest -> 4.3.23 and redeploy the Hub Lambda from tag v4.3.23 (64b06ac32d90); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
15549
|
+
v3Target: "v4.3.23 (@mutmutco/cli@4.3.23, tag commit 64b06ac32d90 \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
15550
15550
|
}
|
|
15551
15551
|
},
|
|
15552
15552
|
{
|
|
@@ -36537,8 +36537,9 @@ var WAIVABLE_KINDS = [
|
|
|
36537
36537
|
var TEST_WORK_KIND = "unrequested-test-file";
|
|
36538
36538
|
var TEST_FILE_RE = /\.(?:test|spec)\.[cm]?[jt]sx?$/;
|
|
36539
36539
|
var PY_TEST_FILE_RE = /(?:^|\/)test_[^/]*\.py$|_test\.py$/;
|
|
36540
|
+
var GO_TEST_FILE_RE = /_test\.go$/;
|
|
36540
36541
|
function isTestPath(path2) {
|
|
36541
|
-
return typeof path2 === "string" && (TEST_FILE_RE.test(path2) || PY_TEST_FILE_RE.test(path2));
|
|
36542
|
+
return typeof path2 === "string" && (TEST_FILE_RE.test(path2) || PY_TEST_FILE_RE.test(path2) || GO_TEST_FILE_RE.test(path2));
|
|
36542
36543
|
}
|
|
36543
36544
|
function editsExistingTest(paths, addedPaths = []) {
|
|
36544
36545
|
const added = new Set(Array.isArray(addedPaths) ? addedPaths : []);
|
|
@@ -36693,6 +36694,7 @@ var HOTFIX_POLICY_REF = "origin/development";
|
|
|
36693
36694
|
var HOTFIX_DIFF_BASE = "origin/main";
|
|
36694
36695
|
var TEST_RE = TEST_FILE_RE;
|
|
36695
36696
|
var PY_TEST_RE = PY_TEST_FILE_RE;
|
|
36697
|
+
var GO_TEST_RE = GO_TEST_FILE_RE;
|
|
36696
36698
|
function translate(glob) {
|
|
36697
36699
|
let out = "";
|
|
36698
36700
|
for (let i = 0; i < glob.length; i++) {
|
|
@@ -36728,7 +36730,7 @@ function globToRegExp2(glob) {
|
|
|
36728
36730
|
return new RegExp(`^${translate(glob)}$`);
|
|
36729
36731
|
}
|
|
36730
36732
|
function isTestPath2(path2) {
|
|
36731
|
-
return TEST_RE.test(path2) || PY_TEST_RE.test(path2);
|
|
36733
|
+
return TEST_RE.test(path2) || PY_TEST_RE.test(path2) || GO_TEST_RE.test(path2);
|
|
36732
36734
|
}
|
|
36733
36735
|
var SUPPORTED_SOURCE = /\.[cm]?[jt]s$/;
|
|
36734
36736
|
var MAX_ANALYZED_BYTES = 512 * 1024;
|
package/package.json
CHANGED