@mutmutco/cli 3.67.0 → 3.68.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 +4 -3
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -12517,7 +12517,6 @@ for (const [helpGroup, names] of PRIMARY_GROUPS) {
|
|
|
12517
12517
|
HELP_GROUP_ORDER.set("Operations", HELP_GROUP_ORDER.size);
|
|
12518
12518
|
for (const name of OPERATIONAL_TOP_LEVEL) TOP_LEVEL_ORDER.set(name, topLevelPosition++);
|
|
12519
12519
|
var PATH_OVERRIDES = {
|
|
12520
|
-
"board slice-refresh": { category: "internal", discovery: "hidden", help_group: "Operations" },
|
|
12521
12520
|
"secrets find": { category: "admin", discovery: "all-only", help_group: "Operations" },
|
|
12522
12521
|
"secrets catalog": { category: "admin", discovery: "all-only", help_group: "Operations" },
|
|
12523
12522
|
"secrets doctor": { category: "admin", discovery: "all-only", help_group: "Operations" },
|
|
@@ -16608,7 +16607,9 @@ function invisibleTrailer(sha, line) {
|
|
|
16608
16607
|
AUDITED, and a reason the auditor cannot see is not a reason this gate accepts (#3628).
|
|
16609
16608
|
Git reads trailers from the LAST paragraph only, and every line of that paragraph must be a
|
|
16610
16609
|
trailer or an indented continuation \u2014 one bare line such as \`Closes #123\` disqualifies the whole
|
|
16611
|
-
block. Indent the continuation lines, and leave nothing but trailers in that paragraph
|
|
16610
|
+
block. Indent the continuation lines, and leave nothing but trailers in that paragraph.
|
|
16611
|
+
This is fixable forward: push a LATER commit on this branch carrying a well-formed trailer.
|
|
16612
|
+
The nearest waiver wins, and it supersedes this one \u2014 no force-push, no re-filed branch.`
|
|
16612
16613
|
};
|
|
16613
16614
|
}
|
|
16614
16615
|
function unknownScope(sha, unknown) {
|
|
@@ -16629,13 +16630,13 @@ function readOverride(base, cwd) {
|
|
|
16629
16630
|
for (const record of git(["log", `${base}..HEAD`, `--format=${format}`], cwd).split(REC)) {
|
|
16630
16631
|
const [sha, trailer, body] = record.replace(/^\s+/, "").split(FLD);
|
|
16631
16632
|
if (!sha) continue;
|
|
16633
|
+
if (override) break;
|
|
16632
16634
|
const value = (trailer ?? "").trim();
|
|
16633
16635
|
if (!value) {
|
|
16634
16636
|
const shaped = OVERRIDE_RE.exec(body ?? "");
|
|
16635
16637
|
if (shaped) refusals.push(invisibleTrailer(sha, shaped[0].trim()));
|
|
16636
16638
|
continue;
|
|
16637
16639
|
}
|
|
16638
|
-
if (override) continue;
|
|
16639
16640
|
const { kinds, reason, unknown } = parseScope(value);
|
|
16640
16641
|
if (unknown.length > 0) refusals.push(unknownScope(sha, unknown));
|
|
16641
16642
|
else override = { sha, reason, kinds };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mutmutco/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.68.0",
|
|
4
4
|
"description": "MMI Future CLI — the org dev toolbox (board, registry, keyless secrets, release train, bootstrap, doctor) and the cross-IDE engine the plugin's session-start hook drives.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|