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

推荐订阅源

WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
博客园_首页
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
小众软件
小众软件
博客园 - 司徒正美
雷峰网
雷峰网
T
Tailwind CSS Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
罗磊的独立博客
量子位
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog

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: harden npm update staging · openclaw/openclaw@b0127b9
shakkernerd · 2026-04-27 · via Recent Commits to openclaw:main

@@ -71,6 +71,39 @@ async function createStagedNpmInstall(

7171

};

7272

}

737374+

async function prepareStagedNpmInstall(

75+

installTarget: ResolvedGlobalInstallTarget,

76+

packageName: string,

77+

): Promise<{

78+

stagedInstall: StagedNpmInstall | null;

79+

failedStep: PackageUpdateStepResult | null;

80+

}> {

81+

const startedAt = Date.now();

82+

try {

83+

return {

84+

stagedInstall: await createStagedNpmInstall(installTarget, packageName),

85+

failedStep: null,

86+

};

87+

} catch (err) {

88+

const targetLayout =

89+

installTarget.manager === "npm"

90+

? resolveNpmGlobalPrefixLayoutFromGlobalRoot(installTarget.globalRoot)

91+

: null;

92+

return {

93+

stagedInstall: null,

94+

failedStep: {

95+

name: "global install stage",

96+

command: "prepare staged npm install",

97+

cwd: targetLayout?.prefix ?? installTarget.globalRoot ?? process.cwd(),

98+

durationMs: Date.now() - startedAt,

99+

exitCode: 1,

100+

stdoutTail: null,

101+

stderrTail: formatError(err),

102+

},

103+

};

104+

}

105+

}

106+74107

async function cleanupStagedNpmInstall(stage: StagedNpmInstall | null): Promise<void> {

75108

if (!stage) {

76109

return;

@@ -215,118 +248,147 @@ export async function runGlobalPackageUpdateSteps(params: {

215248

}> {

216249

const installCwd = params.installCwd === undefined ? {} : { cwd: params.installCwd };

217250

const installEnv = params.env === undefined ? {} : { env: params.env };

218-

let stagedInstall = await createStagedNpmInstall(params.installTarget, params.packageName);

219-

const updateStep = await params.runStep({

220-

name: "global update",

221-

argv: globalInstallArgs(

222-

params.installTarget,

223-

params.installSpec,

224-

undefined,

225-

stagedInstall?.prefix,

226-

),

227-

...installCwd,

228-

...installEnv,

229-

timeoutMs: params.timeoutMs,

230-

});

251+

let stagedInstall: StagedNpmInstall | null = null;

231252232-

const steps = [updateStep];

233-

let finalInstallStep = updateStep;

234-

if (updateStep.exitCode !== 0) {

235-

await cleanupStagedNpmInstall(stagedInstall);

236-

stagedInstall = await createStagedNpmInstall(params.installTarget, params.packageName);

237-

const fallbackArgv = globalInstallFallbackArgs(

238-

params.installTarget,

239-

params.installSpec,

240-

undefined,

241-

stagedInstall?.prefix,

242-

);

243-

if (fallbackArgv) {

244-

const fallbackStep = await params.runStep({

245-

name: "global update (omit optional)",

246-

argv: fallbackArgv,

247-

...installCwd,

248-

...installEnv,

249-

timeoutMs: params.timeoutMs,

250-

});

251-

steps.push(fallbackStep);

252-

finalInstallStep = fallbackStep;

253-

} else {

253+

try {

254+

const preparedInstall = await prepareStagedNpmInstall(params.installTarget, params.packageName);

255+

stagedInstall = preparedInstall.stagedInstall;

256+

if (preparedInstall.failedStep) {

257+

return {

258+

steps: [preparedInstall.failedStep],

259+

verifiedPackageRoot: params.packageRoot ?? null,

260+

afterVersion: null,

261+

failedStep: preparedInstall.failedStep,

262+

};

263+

}

264+265+

const updateStep = await params.runStep({

266+

name: "global update",

267+

argv: globalInstallArgs(

268+

params.installTarget,

269+

params.installSpec,

270+

undefined,

271+

stagedInstall?.prefix,

272+

),

273+

...installCwd,

274+

...installEnv,

275+

timeoutMs: params.timeoutMs,

276+

});

277+278+

const steps = [updateStep];

279+

let finalInstallStep = updateStep;

280+

if (updateStep.exitCode !== 0) {

254281

await cleanupStagedNpmInstall(stagedInstall);

255282

stagedInstall = null;

283+

const preparedFallbackInstall = await prepareStagedNpmInstall(

284+

params.installTarget,

285+

params.packageName,

286+

);

287+

stagedInstall = preparedFallbackInstall.stagedInstall;

288+

if (preparedFallbackInstall.failedStep) {

289+

steps.push(preparedFallbackInstall.failedStep);

290+

return {

291+

steps,

292+

verifiedPackageRoot: params.packageRoot ?? null,

293+

afterVersion: null,

294+

failedStep: preparedFallbackInstall.failedStep,

295+

};

296+

}

297+298+

const fallbackArgv = globalInstallFallbackArgs(

299+

params.installTarget,

300+

params.installSpec,

301+

undefined,

302+

stagedInstall?.prefix,

303+

);

304+

if (fallbackArgv) {

305+

const fallbackStep = await params.runStep({

306+

name: "global update (omit optional)",

307+

argv: fallbackArgv,

308+

...installCwd,

309+

...installEnv,

310+

timeoutMs: params.timeoutMs,

311+

});

312+

steps.push(fallbackStep);

313+

finalInstallStep = fallbackStep;

314+

} else {

315+

await cleanupStagedNpmInstall(stagedInstall);

316+

stagedInstall = null;

317+

}

256318

}

257-

}

258319259-

let verifiedPackageRoot =

260-

stagedInstall?.packageRoot ??

261-

(

262-

await resolveGlobalInstallTarget({

263-

manager: params.installTarget,

264-

runCommand: params.runCommand,

265-

timeoutMs: params.timeoutMs,

266-

})

267-

).packageRoot ??

268-

params.packageRoot ??

269-

null;

320+

let verifiedPackageRoot =

321+

stagedInstall?.packageRoot ??

322+

(

323+

await resolveGlobalInstallTarget({

324+

manager: params.installTarget,

325+

runCommand: params.runCommand,

326+

timeoutMs: params.timeoutMs,

327+

})

328+

).packageRoot ??

329+

params.packageRoot ??

330+

null;

270331271-

let afterVersion: string | null = null;

272-

if (finalInstallStep.exitCode === 0 && verifiedPackageRoot) {

273-

afterVersion = await readPackageVersion(verifiedPackageRoot);

274-

const expectedVersion = resolveExpectedInstalledVersionFromSpec(

275-

params.packageName,

276-

params.installSpec,

277-

);

278-

const verificationErrors = await collectInstalledGlobalPackageErrors({

279-

packageRoot: verifiedPackageRoot,

280-

expectedVersion,

281-

});

282-

if (verificationErrors.length > 0) {

283-

steps.push({

284-

name: "global install verify",

285-

command: `verify ${verifiedPackageRoot}`,

286-

cwd: verifiedPackageRoot,

287-

durationMs: 0,

288-

exitCode: 1,

289-

stderrTail: verificationErrors.join("\n"),

290-

stdoutTail: null,

332+

let afterVersion: string | null = null;

333+

if (finalInstallStep.exitCode === 0 && verifiedPackageRoot) {

334+

afterVersion = await readPackageVersion(verifiedPackageRoot);

335+

const expectedVersion = resolveExpectedInstalledVersionFromSpec(

336+

params.packageName,

337+

params.installSpec,

338+

);

339+

const verificationErrors = await collectInstalledGlobalPackageErrors({

340+

packageRoot: verifiedPackageRoot,

341+

expectedVersion,

291342

});

292-

}

343+

if (verificationErrors.length > 0) {

344+

steps.push({

345+

name: "global install verify",

346+

command: `verify ${verifiedPackageRoot}`,

347+

cwd: verifiedPackageRoot,

348+

durationMs: 0,

349+

exitCode: 1,

350+

stderrTail: verificationErrors.join("\n"),

351+

stdoutTail: null,

352+

});

353+

}

293354294-

if (stagedInstall && verificationErrors.length === 0) {

295-

const swapStep = await swapStagedNpmInstall({

296-

stage: stagedInstall,

297-

installTarget: params.installTarget,

298-

packageName: params.packageName,

299-

});

300-

steps.push(swapStep);

301-

if (swapStep.exitCode === 0) {

302-

verifiedPackageRoot = params.installTarget.packageRoot ?? verifiedPackageRoot;

355+

if (stagedInstall && verificationErrors.length === 0) {

356+

const swapStep = await swapStagedNpmInstall({

357+

stage: stagedInstall,

358+

installTarget: params.installTarget,

359+

packageName: params.packageName,

360+

});

361+

steps.push(swapStep);

362+

if (swapStep.exitCode === 0) {

363+

verifiedPackageRoot = params.installTarget.packageRoot ?? verifiedPackageRoot;

364+

}

303365

}

304-

}

305366306-

const failedVerifyOrSwap = steps.find(

307-

(step) =>

308-

(step.name === "global install verify" || step.name === "global install swap") &&

309-

step.exitCode !== 0,

310-

);

311-

const postVerifyStep = failedVerifyOrSwap

312-

? null

313-

: await params.postVerifyStep?.(verifiedPackageRoot);

314-

if (postVerifyStep) {

315-

steps.push(postVerifyStep);

367+

const failedVerifyOrSwap = steps.find(

368+

(step) =>

369+

(step.name === "global install verify" || step.name === "global install swap") &&

370+

step.exitCode !== 0,

371+

);

372+

const postVerifyStep = failedVerifyOrSwap

373+

? null

374+

: await params.postVerifyStep?.(verifiedPackageRoot);

375+

if (postVerifyStep) {

376+

steps.push(postVerifyStep);

377+

}

316378

}

317-

}

318-319-

await cleanupStagedNpmInstall(stagedInstall);

320379321-

const failedStep =

322-

finalInstallStep.exitCode !== 0

323-

? finalInstallStep

324-

: (steps.find((step) => step !== updateStep && step.exitCode !== 0) ?? null);

380+

const failedStep =

381+

finalInstallStep.exitCode !== 0

382+

? finalInstallStep

383+

: (steps.find((step) => step !== updateStep && step.exitCode !== 0) ?? null);

325384326-

return {

327-

steps,

328-

verifiedPackageRoot,

329-

afterVersion,

330-

failedStep,

331-

};

385+

return {

386+

steps,

387+

verifiedPackageRoot,

388+

afterVersion,

389+

failedStep,

390+

};

391+

} finally {

392+

await cleanupStagedNpmInstall(stagedInstall);

393+

}

332394

}