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

推荐订阅源

M
MIT News - Artificial intelligence
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
The Cloudflare Blog
IT之家
IT之家
雷峰网
雷峰网
小众软件
小众软件
博客园 - 叶小钗
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
博客园 - 【当耐特】
V
V2EX
博客园_首页
T
Tailwind CSS 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(mac): disarm legacy update launchd jobs · openclaw/op...
steipete · 2026-05-16 · via Recent Commits to openclaw:main

@@ -46,6 +46,9 @@ const loadInstalledPluginIndexInstallRecords = vi.fn(

4646

const legacyConfigRepairMocks = vi.hoisted(() => ({

4747

repairLegacyConfigForUpdateChannel: vi.fn(),

4848

}));

49+

const launchdUpdateCleanupMocks = vi.hoisted(() => ({

50+

disableCurrentOpenClawUpdateLaunchdJob: vi.fn(async () => false),

51+

}));

4952

const nodeVersionSatisfiesEngine = vi.fn();

5053

const spawn = vi.fn();

5154

const { defaultRuntime: runtimeCapture, resetRuntimeCapture } = createCliRuntimeCapture();

@@ -233,6 +236,12 @@ vi.mock("../daemon/service.js", () => ({

233236

})),

234237

}));

235238239+

vi.mock("../daemon/launchd.js", async (importOriginal) => ({

240+

...(await importOriginal<typeof import("../daemon/launchd.js")>()),

241+

disableCurrentOpenClawUpdateLaunchdJob:

242+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob,

243+

}));

244+236245

vi.mock("../infra/ports.js", () => ({

237246

inspectPortUsage: (...args: unknown[]) => inspectPortUsage(...args),

238247

classifyPortListener: (...args: unknown[]) => classifyPortListener(...args),

@@ -706,6 +715,8 @@ describe("update-cli", () => {

706715

repaired: false,

707716

}),

708717

);

718+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob.mockReset();

719+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob.mockResolvedValue(false);

709720

confirm.mockResolvedValue(false);

710721

select.mockResolvedValue("stable");

711722

vi.mocked(runGatewayUpdate).mockResolvedValue(makeOkUpdateResult());

@@ -738,11 +749,12 @@ describe("update-cli", () => {

738749

expect(call?.[2]?.timeout).toBe(30_000);

739750

});

740751741-

it("refuses mutating updates in Nix mode before update side effects", async () => {

752+

it("disarms legacy launchd updater jobs before refusing mutating updates in Nix mode", async () => {

742753

await withEnvAsync({ OPENCLAW_NIX_MODE: "1" }, async () => {

743754

await expect(updateCommand({ yes: true })).rejects.toThrow("OPENCLAW_NIX_MODE=1");

744755

});

745756757+

expect(launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob).toHaveBeenCalledOnce();

746758

expect(runGatewayUpdate).not.toHaveBeenCalled();

747759

expect(replaceConfigFile).not.toHaveBeenCalled();

748760

expect(updateNpmInstalledPlugins).not.toHaveBeenCalled();

@@ -1555,6 +1567,9 @@ describe("update-cli", () => {

15551567

expect(runDaemonInstall).not.toHaveBeenCalled();

15561568

expect(runRestartScript).not.toHaveBeenCalled();

15571569

expect(runDaemonRestart).not.toHaveBeenCalled();

1570+

expect(

1571+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob,

1572+

).not.toHaveBeenCalled();

1558157315591574

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

15601575

expect(logs.join("\n")).toContain("Update dry-run");

@@ -1571,6 +1586,9 @@ describe("update-cli", () => {

15711586

assert: () => {

15721587

expect(defaultRuntime.exit).not.toHaveBeenCalledWith(1);

15731588

expect(runGatewayUpdate).not.toHaveBeenCalled();

1589+

expect(

1590+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob,

1591+

).not.toHaveBeenCalled();

15741592

},

15751593

},

15761594

] as const)("updateCommand dry-run behavior: $name", runUpdateCliScenario);

@@ -2346,6 +2364,73 @@ describe("update-cli", () => {

23462364

expect(requiredServiceStopCallOrder).toBeLessThan(requiredNpmInstallCallOrder);

23472365

});

234823662367+

it("disarms legacy launchd updater jobs before stopping the gateway", async () => {

2368+

const tempDir = await createTrackedTempDir("openclaw-update-launchd-loop-");

2369+

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

2370+

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

2371+

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

2372+

mockPackageInstallStatus(pkgRoot);

2373+

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

2374+

await fs.writeFile(

2375+

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

2376+

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

2377+

"utf-8",

2378+

);

2379+

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

2380+

await writePackageDistInventory(pkgRoot);

2381+

serviceReadCommand.mockResolvedValue({

2382+

programArguments: ["openclaw", "gateway", "run"],

2383+

environment: {

2384+

OPENCLAW_SERVICE_MARKER: "openclaw",

2385+

OPENCLAW_SERVICE_KIND: "gateway",

2386+

},

2387+

});

2388+

serviceLoaded.mockResolvedValue(true);

2389+

serviceReadRuntime.mockResolvedValue({

2390+

status: "running",

2391+

pid: 4242,

2392+

state: "running",

2393+

});

2394+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob.mockResolvedValue(true);

2395+

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

2396+

try {

2397+

await fs.access(candidate);

2398+

return true;

2399+

} catch {

2400+

return false;

2401+

}

2402+

});

2403+

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

2404+

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

2405+

return {

2406+

stdout: `${nodeModules}\n`,

2407+

stderr: "",

2408+

code: 0,

2409+

signal: null,

2410+

killed: false,

2411+

termination: "exit",

2412+

};

2413+

}

2414+

return {

2415+

stdout: "",

2416+

stderr: "",

2417+

code: 0,

2418+

signal: null,

2419+

killed: false,

2420+

termination: "exit",

2421+

};

2422+

});

2423+2424+

await updateCommand({ yes: true });

2425+2426+

const cleanupOrder =

2427+

launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob.mock.invocationCallOrder[0];

2428+

const serviceStopOrder = serviceStop.mock.invocationCallOrder[0];

2429+

expect(requireValue(cleanupOrder, "launchd updater cleanup order")).toBeLessThan(

2430+

requireValue(serviceStopOrder, "service stop order"),

2431+

);

2432+

});

2433+23492434

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

23502435

const tempDir = await createTrackedTempDir("openclaw-update-current-");

23512436

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

@@ -2905,6 +2990,7 @@ describe("update-cli", () => {

2905299029062991

expect(replaceConfigFile).not.toHaveBeenCalled();

29072992

expect(runCommandWithTimeout).not.toHaveBeenCalled();

2993+

expect(launchdUpdateCleanupMocks.disableCurrentOpenClawUpdateLaunchdJob).not.toHaveBeenCalled();

29082994

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

29092995

});

29102996