惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
量子位
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
V
Visual Studio Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
V
V2EX
The GitHub Blog
The GitHub Blog
博客园_首页
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
博客园 - 叶小钗
F
Fortinet All Blogs
T
Tailwind CSS Blog
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
WordPress大学
WordPress大学
B
Blog
H
Help Net Security

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(release): stabilize slow live release gates · opencla...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -147,6 +147,33 @@ function parseUpgradeSurvivorScenarios(raw) {

147147

];

148148

}

149149150+

function parsePublishedReleaseVersion(spec) {

151+

const match = /^openclaw@([0-9]{4})\.([0-9]+)\.([0-9]+)/u.exec(String(spec ?? ""));

152+

if (!match) {

153+

return null;

154+

}

155+

return {

156+

year: Number(match[1]),

157+

month: Number(match[2]),

158+

day: Number(match[3]),

159+

};

160+

}

161+162+

function comparePublishedReleaseVersion(a, b) {

163+

return a.year - b.year || a.month - b.month || a.day - b.day;

164+

}

165+166+

function supportsUpgradeSurvivorPluginDependencyCleanup(baselineSpec) {

167+

if (!baselineSpec) {

168+

return true;

169+

}

170+

const version = parsePublishedReleaseVersion(baselineSpec);

171+

if (!version) {

172+

return true;

173+

}

174+

return comparePublishedReleaseVersion(version, { year: 2026, month: 4, day: 23 }) >= 0;

175+

}

176+150177

function expandUpgradeSurvivorBaselineLanes(poolLanes, rawBaselineSpecs, rawScenarios = "") {

151178

const baselineSpecs = parseUpgradeSurvivorBaselineSpecs(rawBaselineSpecs);

152179

const scenarios = parseUpgradeSurvivorScenarios(rawScenarios);

@@ -160,30 +187,38 @@ function expandUpgradeSurvivorBaselineLanes(poolLanes, rawBaselineSpecs, rawScen

160187

const matrixBaselines = baselineSpecs.length > 0 ? baselineSpecs : [undefined];

161188

const matrixScenarios = scenarios.length > 0 ? scenarios : [undefined];

162189

return matrixBaselines.flatMap((baselineSpec) =>

163-

matrixScenarios.map((scenario) => {

164-

const suffixParts = [

165-

baselineSpec ? sanitizeLaneNameSuffix(baselineSpec) : "",

166-

scenario && scenario !== "base" ? sanitizeLaneNameSuffix(scenario) : "",

167-

].filter(Boolean);

168-

const suffix = suffixParts.join("-");

169-

const name = suffix ? `${poolLane.name}-${suffix}` : poolLane.name;

170-

const commandPrefix = [

171-

`OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR="$PWD/.artifacts/upgrade-survivor/${name}"`,

172-

baselineSpec ? `OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC=${shellQuote(baselineSpec)}` : "",

173-

scenario ? `OPENCLAW_UPGRADE_SURVIVOR_SCENARIO=${shellQuote(scenario)}` : "",

174-

]

175-

.filter(Boolean)

176-

.join(" ");

177-

return Object.assign({}, poolLane, {

178-

cacheKey: poolLane.cacheKey

179-

? suffix

180-

? `${poolLane.cacheKey}-${suffix}`

181-

: poolLane.cacheKey

182-

: name,

183-

command: commandPrefix ? `${commandPrefix} ${poolLane.command}` : poolLane.command,

184-

name,

185-

});

186-

}),

190+

matrixScenarios

191+

.filter(

192+

(scenario) =>

193+

scenario !== "plugin-deps-cleanup" ||

194+

supportsUpgradeSurvivorPluginDependencyCleanup(baselineSpec),

195+

)

196+

.map((scenario) => {

197+

const suffixParts = [

198+

baselineSpec ? sanitizeLaneNameSuffix(baselineSpec) : "",

199+

scenario && scenario !== "base" ? sanitizeLaneNameSuffix(scenario) : "",

200+

].filter(Boolean);

201+

const suffix = suffixParts.join("-");

202+

const name = suffix ? `${poolLane.name}-${suffix}` : poolLane.name;

203+

const commandPrefix = [

204+

`OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR="$PWD/.artifacts/upgrade-survivor/${name}"`,

205+

baselineSpec

206+

? `OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC=${shellQuote(baselineSpec)}`

207+

: "",

208+

scenario ? `OPENCLAW_UPGRADE_SURVIVOR_SCENARIO=${shellQuote(scenario)}` : "",

209+

]

210+

.filter(Boolean)

211+

.join(" ");

212+

return Object.assign({}, poolLane, {

213+

cacheKey: poolLane.cacheKey

214+

? suffix

215+

? `${poolLane.cacheKey}-${suffix}`

216+

: poolLane.cacheKey

217+

: name,

218+

command: commandPrefix ? `${commandPrefix} ${poolLane.command}` : poolLane.command,

219+

name,

220+

});

221+

}),

187222

);

188223

});

189224

}