@mutmutco/cli 4.1.18 → 4.1.19
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 -13
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -13181,10 +13181,10 @@ var rollout_plan_default = {
|
|
|
13181
13181
|
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)."
|
|
13182
13182
|
},
|
|
13183
13183
|
baseline: {
|
|
13184
|
-
version: "4.1.
|
|
13185
|
-
tag: "v4.1.
|
|
13186
|
-
commit: "
|
|
13187
|
-
npm: "@mutmutco/cli@4.1.
|
|
13184
|
+
version: "4.1.19",
|
|
13185
|
+
tag: "v4.1.19",
|
|
13186
|
+
commit: "fd396828846f",
|
|
13187
|
+
npm: "@mutmutco/cli@4.1.19"
|
|
13188
13188
|
},
|
|
13189
13189
|
exitCriterion: "fleet-n-of-n",
|
|
13190
13190
|
hubOnlyShortcut: "forbidden",
|
|
@@ -13201,14 +13201,14 @@ var rollout_plan_default = {
|
|
|
13201
13201
|
repo: "mutmutco/mmi-hub",
|
|
13202
13202
|
role: "canary",
|
|
13203
13203
|
schedule: "train",
|
|
13204
|
-
v3Target: "v4.1.
|
|
13204
|
+
v3Target: "v4.1.19"
|
|
13205
13205
|
}
|
|
13206
13206
|
],
|
|
13207
13207
|
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.",
|
|
13208
13208
|
rollback: {
|
|
13209
13209
|
independent: true,
|
|
13210
|
-
mechanism: "npm dist-tag latest -> 4.1.
|
|
13211
|
-
v3Target: "v4.1.
|
|
13210
|
+
mechanism: "npm dist-tag latest -> 4.1.19 and redeploy the Hub Lambda from tag v4.1.19 (fd396828846f); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
|
|
13211
|
+
v3Target: "v4.1.19 (@mutmutco/cli@4.1.19, tag commit fd396828846f \u2014 last known-good release carrying the repo-index v4-only contract)"
|
|
13212
13212
|
}
|
|
13213
13213
|
},
|
|
13214
13214
|
{
|
|
@@ -27035,12 +27035,10 @@ async function remoteHead(repo, token) {
|
|
|
27035
27035
|
"credential.helper=",
|
|
27036
27036
|
// #5750: actions/checkout persists its token as a URL-scoped extraheader in the checked-out
|
|
27037
27037
|
// repo's .git/config — repo-local config that env sanitization cannot reach. Run from a
|
|
27038
|
-
// neutral cwd so no repo config applies
|
|
27039
|
-
//
|
|
27040
|
-
|
|
27041
|
-
|
|
27042
|
-
"-c",
|
|
27043
|
-
"http.https://github.com/.extraheader=",
|
|
27038
|
+
// neutral cwd so no repo config applies; the ONLY credential is the app token below.
|
|
27039
|
+
// Do NOT blank extraheader scopes here: an empty URL-scoped extraheader emits an empty
|
|
27040
|
+
// Authorization header that overrides the token entirely (16/16 unreadable on the runner,
|
|
27041
|
+
// repo-index-reconcile run 33121106605).
|
|
27044
27042
|
"-c",
|
|
27045
27043
|
`http.extraHeader=Authorization: Basic ${basic}`,
|
|
27046
27044
|
"ls-remote",
|
package/package.json
CHANGED