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

推荐订阅源

T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
量子位
Martin Fowler
Martin Fowler
月光博客
月光博客
P
Proofpoint News Feed
博客园_首页
Y
Y Combinator Blog
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
H
Help Net Security
U
Unit 42
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell

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): finish post-core package updates · openclaw/...
vincentkoc · 2026-05-05 · via Recent Commits to openclaw:main

@@ -1,4 +1,4 @@

1-

import { spawn } from "node:child_process";

1+

import { spawn, type ChildProcess } from "node:child_process";

22

import fs from "node:fs/promises";

33

import os from "node:os";

44

import path from "node:path";

@@ -110,6 +110,7 @@ const POST_CORE_UPDATE_ENV = "OPENCLAW_UPDATE_POST_CORE";

110110

const POST_CORE_UPDATE_CHANNEL_ENV = "OPENCLAW_UPDATE_POST_CORE_CHANNEL";

111111

const POST_CORE_UPDATE_REQUESTED_CHANNEL_ENV = "OPENCLAW_UPDATE_POST_CORE_REQUESTED_CHANNEL";

112112

const POST_CORE_UPDATE_RESULT_PATH_ENV = "OPENCLAW_UPDATE_POST_CORE_RESULT_PATH";

113+

const POST_CORE_UPDATE_RESULT_POLL_MS = 100;

113114

const UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE_ENV =

114115

"OPENCLAW_UPDATE_PARENT_SUPPORTS_DOCTOR_CONFIG_WRITE";

115116

const SERVICE_REFRESH_PATH_ENV_KEYS = [

@@ -1608,6 +1609,25 @@ async function readPostCorePluginUpdateResultFile(

16081609

return undefined;

16091610

}

161016111612+

function stopPostCoreUpdateChild(child: ChildProcess): void {

1613+

if (process.platform === "win32" && child.pid) {

1614+

try {

1615+

const killer = spawn("taskkill", ["/PID", String(child.pid), "/T", "/F"], {

1616+

stdio: "ignore",

1617+

windowsHide: true,

1618+

});

1619+

killer.once("error", () => {

1620+

child.kill();

1621+

});

1622+

return;

1623+

} catch {

1624+

child.kill();

1625+

return;

1626+

}

1627+

}

1628+

child.kill();

1629+

}

1630+16111631

async function continuePostCoreUpdateInFreshProcess(params: {

16121632

root: string;

16131633

channel: "stable" | "beta" | "dev";

@@ -1632,11 +1652,8 @@ async function continuePostCoreUpdateInFreshProcess(params: {

16321652

if (params.opts.timeout) {

16331653

argv.push("--timeout", params.opts.timeout);

16341654

}

1635-

const resultDir =

1636-

params.opts.json === true

1637-

? await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-update-post-core-"))

1638-

: null;

1639-

const resultPath = resultDir ? path.join(resultDir, "plugins.json") : null;

1655+

const resultDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-update-post-core-"));

1656+

const resultPath = path.join(resultDir, "plugins.json");

1640165716411658

try {

16421659

const child = spawn(resolveNodeRunner(), argv, {

@@ -1648,24 +1665,65 @@ async function continuePostCoreUpdateInFreshProcess(params: {

16481665

...(params.requestedChannel

16491666

? { [POST_CORE_UPDATE_REQUESTED_CHANNEL_ENV]: params.requestedChannel }

16501667

: {}),

1651-

...(resultPath ? { [POST_CORE_UPDATE_RESULT_PATH_ENV]: resultPath } : {}),

1668+

[POST_CORE_UPDATE_RESULT_PATH_ENV]: resultPath,

16521669

},

16531670

});

165416711655-

const exitCode = await new Promise<number>((resolve, reject) => {

1656-

child.once("error", reject);

1672+

const childResult = await new Promise<

1673+

| { kind: "exit"; exitCode: number }

1674+

| { kind: "plugin-update"; pluginUpdate: PostCorePluginUpdateResult }

1675+

>((resolve, reject) => {

1676+

let settled = false;

1677+

const finish = (

1678+

result:

1679+

| { kind: "exit"; exitCode: number }

1680+

| { kind: "plugin-update"; pluginUpdate: PostCorePluginUpdateResult },

1681+

) => {

1682+

if (settled) {

1683+

return;

1684+

}

1685+

settled = true;

1686+

clearInterval(resultPoll);

1687+

resolve(result);

1688+

};

1689+

const resultPoll = setInterval(() => {

1690+

void readPostCorePluginUpdateResultFile(resultPath)

1691+

.then((pluginUpdate) => {

1692+

if (!pluginUpdate) {

1693+

return;

1694+

}

1695+

stopPostCoreUpdateChild(child);

1696+

finish({ kind: "plugin-update", pluginUpdate });

1697+

})

1698+

.catch(() => undefined);

1699+

}, POST_CORE_UPDATE_RESULT_POLL_MS);

1700+

child.once("error", (error) => {

1701+

if (settled) {

1702+

return;

1703+

}

1704+

settled = true;

1705+

clearInterval(resultPoll);

1706+

reject(error);

1707+

});

16571708

child.once("exit", (code, signal) => {

1709+

if (settled) {

1710+

return;

1711+

}

16581712

if (signal) {

1713+

settled = true;

1714+

clearInterval(resultPoll);

16591715

reject(new Error(`post-update process terminated by signal ${signal}`));

16601716

return;

16611717

}

1662-

resolve(code ?? 1);

1718+

finish({ kind: "exit", exitCode: code ?? 1 });

16631719

});

16641720

});

166517211666-

const pluginUpdate = resultPath

1667-

? await readPostCorePluginUpdateResultFile(resultPath)

1668-

: undefined;

1722+

const pluginUpdate =

1723+

childResult.kind === "plugin-update"

1724+

? childResult.pluginUpdate

1725+

: await readPostCorePluginUpdateResultFile(resultPath);

1726+

const exitCode = childResult.kind === "exit" ? childResult.exitCode : 0;

16691727

if (exitCode !== 0) {

16701728

if (pluginUpdate) {

16711729

return { resumed: true, pluginUpdate };

@@ -1675,9 +1733,7 @@ async function continuePostCoreUpdateInFreshProcess(params: {

16751733

}

16761734

return { resumed: true, ...(pluginUpdate ? { pluginUpdate } : {}) };

16771735

} finally {

1678-

if (resultDir) {

1679-

await fs.rm(resultDir, { recursive: true, force: true }).catch(() => undefined);

1680-

}

1736+

await fs.rm(resultDir, { recursive: true, force: true }).catch(() => undefined);

16811737

}

16821738

}

16831739

@@ -1752,11 +1808,13 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

17521808

opts,

17531809

timeoutMs: updateStepTimeoutMs,

17541810

});

1755-

if (opts.json) {

1811+

if (process.env[POST_CORE_UPDATE_RESULT_PATH_ENV]) {

17561812

await writePostCorePluginUpdateResultFile(

17571813

process.env[POST_CORE_UPDATE_RESULT_PATH_ENV],

17581814

pluginUpdate,

17591815

);

1816+

}

1817+

if (opts.json) {

17601818

if (!process.env[POST_CORE_UPDATE_RESULT_PATH_ENV]) {

17611819

const result: UpdateRunResult = {

17621820

status: pluginUpdate.status === "error" ? "error" : "ok",