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

推荐订阅源

博客园 - Franky
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
Y
Y Combinator Blog
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
博客园 - 司徒正美
I
InfoQ
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
U
Unit 42

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(plugins): harden runtime dependency repair · openclaw...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -837,7 +837,7 @@ describe("update-cli", () => {

837837

);

838838

});

839839840-

it("skips package-manager updates when the installed version already matches the target", async () => {

840+

it("refreshes package-manager updates when the installed version already matches the target", async () => {

841841

const tempDir = createCaseDir("openclaw-update");

842842

mockPackageInstallStatus(tempDir);

843843

readPackageVersion.mockResolvedValue("2026.4.22");

@@ -853,15 +853,11 @@ describe("update-cli", () => {

853853

.mock.calls.filter(

854854

([argv]) => Array.isArray(argv) && argv[0] === "npm" && argv[1] === "i" && argv[2] === "-g",

855855

);

856-

expect(installCalls).toEqual([]);

857-

expect(syncPluginsForUpdateChannel).not.toHaveBeenCalled();

858-

expect(updateNpmInstalledPlugins).not.toHaveBeenCalled();

856+

expect(installCalls).toHaveLength(1);

857+

expect(updateNpmInstalledPlugins).toHaveBeenCalled();

859858

expect(replaceConfigFile).not.toHaveBeenCalled();

860-

expect(runRestartScript).not.toHaveBeenCalled();

861-

expect(runDaemonRestart).not.toHaveBeenCalled();

862-

expect(defaultRuntime.exit).toHaveBeenCalledWith(0);

863859

const logs = vi.mocked(defaultRuntime.log).mock.calls.map((call) => String(call[0]));

864-

expect(logs.join("\n")).toContain("already-current");

860+

expect(logs.join("\n")).not.toContain("already-current");

865861

});

866862867863

it("blocks package updates when the target requires a newer Node runtime", async () => {

@@ -1042,6 +1038,78 @@ describe("update-cli", () => {

10421038

);

10431039

});

104410401041+

it("refreshes package installs even when the current version already matches the target", async () => {

1042+

const tempDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-update-current-"));

1043+

const nodeModules = path.join(tempDir, "node_modules");

1044+

const pkgRoot = path.join(nodeModules, "openclaw");

1045+

const entryPath = path.join(pkgRoot, "dist", "index.js");

1046+

mockPackageInstallStatus(pkgRoot);

1047+

readPackageVersion.mockResolvedValue("2026.4.23");

1048+

vi.mocked(resolveNpmChannelTag).mockResolvedValue({

1049+

tag: "latest",

1050+

version: "2026.4.23",

1051+

});

1052+

await fs.mkdir(path.dirname(entryPath), { recursive: true });

1053+

await fs.writeFile(

1054+

path.join(pkgRoot, "package.json"),

1055+

JSON.stringify({ name: "openclaw", version: "2026.4.23" }),

1056+

"utf-8",

1057+

);

1058+

await fs.writeFile(entryPath, "export {};\n", "utf-8");

1059+

for (const relativePath of TEST_BUNDLED_RUNTIME_SIDECAR_PATHS) {

1060+

const absolutePath = path.join(pkgRoot, relativePath);

1061+

await fs.mkdir(path.dirname(absolutePath), { recursive: true });

1062+

await fs.writeFile(absolutePath, "export {};\n", "utf-8");

1063+

}

1064+

await writePackageDistInventory(pkgRoot);

1065+

pathExists.mockImplementation(async (candidate: string) => {

1066+

try {

1067+

await fs.access(candidate);

1068+

return true;

1069+

} catch {

1070+

return false;

1071+

}

1072+

});

1073+

vi.mocked(runCommandWithTimeout).mockImplementation(async (argv) => {

1074+

if (Array.isArray(argv) && argv[0] === "npm" && argv[1] === "root" && argv[2] === "-g") {

1075+

return {

1076+

stdout: `${nodeModules}\n`,

1077+

stderr: "",

1078+

code: 0,

1079+

signal: null,

1080+

killed: false,

1081+

termination: "exit",

1082+

};

1083+

}

1084+

return {

1085+

stdout: "",

1086+

stderr: "",

1087+

code: 0,

1088+

signal: null,

1089+

killed: false,

1090+

termination: "exit",

1091+

};

1092+

});

1093+1094+

await updateCommand({ yes: true, restart: false });

1095+1096+

expect(runCommandWithTimeout).toHaveBeenCalledWith(

1097+

["npm", "i", "-g", "openclaw@latest", "--no-fund", "--no-audit", "--loglevel=error"],

1098+

expect.any(Object),

1099+

);

1100+

expect(runCommandWithTimeout).toHaveBeenCalledWith(

1101+

[expect.stringMatching(/node/), entryPath, "doctor", "--non-interactive"],

1102+

expect.any(Object),

1103+

);

1104+

expect(updateNpmInstalledPlugins).toHaveBeenCalled();

1105+

expect(

1106+

vi

1107+

.mocked(defaultRuntime.log)

1108+

.mock.calls.map((call) => String(call[0]))

1109+

.join("\n"),

1110+

).not.toContain("already-current");

1111+

});

1112+10451113

it("uses the owning npm binary for package updates when PATH npm points elsewhere", async () => {

10461114

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

10471115

const brewPrefix = createCaseDir("brew-prefix");