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

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

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(update): stage npm-prefix package updates cleanly · o...
vincentkoc · 2026-05-05 · via Recent Commits to openclaw:main

@@ -29,6 +29,15 @@ function createNpmTarget(globalRoot: string): ResolvedGlobalInstallTarget {

2929

};

3030

}

313132+

function createPnpmTarget(globalRoot: string): ResolvedGlobalInstallTarget {

33+

return {

34+

manager: "pnpm",

35+

command: "pnpm",

36+

globalRoot,

37+

packageRoot: path.join(globalRoot, "openclaw"),

38+

};

39+

}

40+3241

function createRootRunner(globalRoot: string): CommandRunner {

3342

return async (argv) => {

3443

if (argv.join(" ") === "npm root -g") {

@@ -115,6 +124,99 @@ describe("runGlobalPackageUpdateSteps", () => {

115124

});

116125

});

117126127+

it("stages pnpm-detected updates through npm when the global root has npm prefix layout", async () => {

128+

await withTempDir({ prefix: "openclaw-package-update-pnpm-staged-" }, async (base) => {

129+

const prefix = path.join(base, "prefix");

130+

const globalRoot = path.join(prefix, "lib", "node_modules");

131+

const packageRoot = path.join(globalRoot, "openclaw");

132+

const staleChunk = path.join(packageRoot, "dist", "install-C_GuuNz6.js");

133+

await writePackageRoot(packageRoot, "1.0.0");

134+

await fs.writeFile(staleChunk, 'import "./install.runtime-Xom5hOHq.js";\n', "utf8");

135+136+

const runStep = vi.fn(async ({ name, argv, cwd }): Promise<PackageUpdateStepResult> => {

137+

if (name !== "global update") {

138+

throw new Error(`unexpected step ${name}`);

139+

}

140+

expect(argv[0]).toBe("npm");

141+

expect(argv).toEqual(expect.arrayContaining(["i", "-g", "--prefix", "openclaw@2.0.0"]));

142+

expect(argv).not.toContain("pnpm");

143+

const prefixIndex = argv.indexOf("--prefix");

144+

const stagePrefix = argv[prefixIndex + 1];

145+

if (!stagePrefix) {

146+

throw new Error("missing staged prefix");

147+

}

148+

await writePackageRoot(path.join(stagePrefix, "lib", "node_modules", "openclaw"), "2.0.0");

149+

return {

150+

name,

151+

command: argv.join(" "),

152+

cwd: cwd ?? process.cwd(),

153+

durationMs: 1,

154+

exitCode: 0,

155+

};

156+

});

157+158+

const result = await runGlobalPackageUpdateSteps({

159+

installTarget: createPnpmTarget(globalRoot),

160+

installSpec: "openclaw@2.0.0",

161+

packageName: "openclaw",

162+

packageRoot,

163+

runCommand: createRootRunner(globalRoot),

164+

runStep,

165+

timeoutMs: 1000,

166+

});

167+168+

expect(result.failedStep).toBeNull();

169+

expect(result.afterVersion).toBe("2.0.0");

170+

expect(result.steps.map((step) => step.name)).toEqual([

171+

"global update",

172+

"global install swap",

173+

]);

174+

await expect(fs.access(staleChunk)).rejects.toMatchObject({ code: "ENOENT" });

175+

});

176+

});

177+178+

it("keeps Windows pnpm global roots on the pnpm update path", async () => {

179+

const platformSpy = vi.spyOn(process, "platform", "get").mockReturnValue("win32");

180+

try {

181+

await withTempDir({ prefix: "openclaw-package-update-win32-pnpm-" }, async (base) => {

182+

const globalRoot = path.join(base, "pnpm", "global", "5", "node_modules");

183+

const packageRoot = path.join(globalRoot, "openclaw");

184+

await writePackageRoot(packageRoot, "1.0.0");

185+186+

const runStep = vi.fn(async ({ name, argv, cwd }): Promise<PackageUpdateStepResult> => {

187+

if (name !== "global update") {

188+

throw new Error(`unexpected step ${name}`);

189+

}

190+

expect(argv).toEqual(["pnpm", "add", "-g", "openclaw@2.0.0"]);

191+

await writePackageRoot(packageRoot, "2.0.0");

192+

return {

193+

name,

194+

command: argv.join(" "),

195+

cwd: cwd ?? process.cwd(),

196+

durationMs: 1,

197+

exitCode: 0,

198+

};

199+

});

200+201+

const result = await runGlobalPackageUpdateSteps({

202+

installTarget: createPnpmTarget(globalRoot),

203+

installSpec: "openclaw@2.0.0",

204+

packageName: "openclaw",

205+

packageRoot,

206+

runCommand: createRootRunner(globalRoot),

207+

runStep,

208+

timeoutMs: 1000,

209+

});

210+211+

expect(result.failedStep).toBeNull();

212+

expect(result.afterVersion).toBe("2.0.0");

213+

expect(result.steps.map((step) => step.name)).toEqual(["global update"]);

214+

});

215+

} finally {

216+

platformSpy.mockRestore();

217+

}

218+

});

219+118220

it("keeps a successful staged swap when old package cleanup hits a transient Windows native module error", async () => {

119221

await withTempDir({ prefix: "openclaw-package-update-staged-cleanup-" }, async (base) => {

120222

const prefix = path.join(base, "prefix");