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

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
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(update): continue after package doctor warnings (#915...
fuller-stack · 2026-06-14 · via Recent Commits to openclaw:main

@@ -12,6 +12,12 @@ import type { PluginInstallRecord } from "../config/types.plugins.js";

1212

import { GATEWAY_SERVICE_RUNTIME_PID_ENV } from "../daemon/constants.js";

1313

import { writePackageDistInventory } from "../infra/package-dist-inventory.js";

1414

import { isBetaTag } from "../infra/update-channels.js";

15+

import {

16+

createDeferredConfiguredPluginRepairDoctorResult,

17+

UPDATE_POST_INSTALL_DOCTOR_ADVISORY_EXIT_CODE,

18+

UPDATE_POST_INSTALL_DOCTOR_RESULT_PATH_ENV,

19+

writeUpdatePostInstallDoctorResult,

20+

} from "../infra/update-doctor-result.js";

1521

import type { UpdateRunResult } from "../infra/update-runner.js";

1622

import { withEnvAsync } from "../test-utils/env.js";

1723

import { VERSION } from "../version.js";

@@ -2633,6 +2639,9 @@ describe("update-cli", () => {

26332639

);

26342640

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

26352641

await writePackageDistInventory(pkgRoot);

2642+

readPackageVersion.mockImplementation(async (packageRoot: string) =>

2643+

packageRoot === pkgRoot ? "2026.4.21" : "1.0.0",

2644+

);

26362645

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

26372646

try {

26382647

await fs.access(candidate);

@@ -2672,6 +2681,165 @@ describe("update-cli", () => {

26722681

).toBe("1");

26732682

});

267426832684+

it("continues package post-core work for explicit post-update doctor advisories", async () => {

2685+

const tempDir = await createTrackedTempDir("openclaw-update-package-doctor-warning-");

2686+

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

2687+

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

2688+

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

2689+

mockPackageInstallStatus(pkgRoot);

2690+

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

2691+

await fs.writeFile(

2692+

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

2693+

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

2694+

"utf-8",

2695+

);

2696+

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

2697+

await writePackageDistInventory(pkgRoot);

2698+

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

2699+

try {

2700+

await fs.access(candidate);

2701+

return true;

2702+

} catch {

2703+

return false;

2704+

}

2705+

});

2706+

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

2707+

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

2708+

return {

2709+

stdout: `${nodeModules}\n`,

2710+

stderr: "",

2711+

code: 0,

2712+

signal: null,

2713+

killed: false,

2714+

termination: "exit",

2715+

};

2716+

}

2717+

if (Array.isArray(argv) && argv[1] === entryPath && argv[2] === "doctor") {

2718+

const env = options && typeof options !== "number" ? options.env : undefined;

2719+

const resultPath = env?.[UPDATE_POST_INSTALL_DOCTOR_RESULT_PATH_ENV];

2720+

if (!resultPath) {

2721+

throw new Error("missing doctor result path");

2722+

}

2723+

await writeUpdatePostInstallDoctorResult({

2724+

resultPath,

2725+

result: createDeferredConfiguredPluginRepairDoctorResult([

2726+

"deferred configured plugin repair",

2727+

]),

2728+

});

2729+

return {

2730+

stdout: "",

2731+

stderr: "doctor deferred configured plugin repair",

2732+

code: UPDATE_POST_INSTALL_DOCTOR_ADVISORY_EXIT_CODE,

2733+

signal: null,

2734+

killed: false,

2735+

termination: "exit",

2736+

};

2737+

}

2738+

return {

2739+

stdout: "",

2740+

stderr: "",

2741+

code: 0,

2742+

signal: null,

2743+

killed: false,

2744+

termination: "exit",

2745+

};

2746+

});

2747+2748+

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

2749+2750+

const doctorCall = doctorCommandCall();

2751+

expect(doctorCall?.[0].slice(1)).toEqual([entryPath, "doctor", "--non-interactive", "--fix"]);

2752+

const postCoreCall = spawnCall();

2753+

expect(postCoreCall?.[0]).toMatch(/node/);

2754+

expect(postCoreCall?.[1]).toEqual([entryPath, "update", "--json", "--no-restart", "--yes"]);

2755+

expect(postCoreCall?.[2]?.env?.OPENCLAW_UPDATE_POST_CORE).toBe("1");

2756+

expect(updateNpmInstalledPlugins).not.toHaveBeenCalled();

2757+

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

2758+

const jsonOutput = lastWriteJsonCall() as UpdateRunResult | undefined;

2759+

const doctorStep = jsonOutput?.steps.find((step) => step.name === "openclaw doctor");

2760+

expect(jsonOutput?.status).toBe("ok");

2761+

expect(doctorStep?.exitCode).toBe(UPDATE_POST_INSTALL_DOCTOR_ADVISORY_EXIT_CODE);

2762+

expect(doctorStep?.advisory).toEqual({

2763+

kind: "package-post-install-doctor",

2764+

message: expect.stringContaining("recoverable update-time repair warning"),

2765+

});

2766+

expect(doctorStep?.advisory?.message).not.toContain("gateway restart");

2767+

expect(doctorStep?.stderrTail).toContain("doctor deferred configured plugin repair");

2768+

expect(doctorStep?.stderrTail).toContain("deferred configured plugin repair");

2769+

});

2770+2771+

it("fails package updates when the post-update doctor is killed after verification", async () => {

2772+

const tempDir = await createTrackedTempDir("openclaw-update-package-doctor-timeout-");

2773+

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

2774+

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

2775+

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

2776+

mockPackageInstallStatus(pkgRoot);

2777+

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

2778+

await fs.writeFile(

2779+

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

2780+

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

2781+

"utf-8",

2782+

);

2783+

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

2784+

await writePackageDistInventory(pkgRoot);

2785+

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

2786+

try {

2787+

await fs.access(candidate);

2788+

return true;

2789+

} catch {

2790+

return false;

2791+

}

2792+

});

2793+

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

2794+

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

2795+

return {

2796+

stdout: `${nodeModules}\n`,

2797+

stderr: "",

2798+

code: 0,

2799+

signal: null,

2800+

killed: false,

2801+

termination: "exit",

2802+

};

2803+

}

2804+

if (Array.isArray(argv) && argv[1] === entryPath && argv[2] === "doctor") {

2805+

return {

2806+

stdout: "",

2807+

stderr: "doctor timed out",

2808+

code: 124,

2809+

signal: null,

2810+

killed: true,

2811+

termination: "timeout",

2812+

};

2813+

}

2814+

return {

2815+

stdout: "",

2816+

stderr: "",

2817+

code: 0,

2818+

signal: null,

2819+

killed: false,

2820+

termination: "exit",

2821+

};

2822+

});

2823+2824+

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

2825+2826+

const doctorCall = doctorCommandCall();

2827+

expect(doctorCall?.[0].slice(1)).toEqual([entryPath, "doctor", "--non-interactive", "--fix"]);

2828+

expect(spawn).not.toHaveBeenCalled();

2829+

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

2830+

const jsonOutput = lastWriteJsonCall() as UpdateRunResult | undefined;

2831+

const doctorStep = jsonOutput?.steps.find((step) => step.name === "openclaw doctor");

2832+

expect(doctorStep?.exitCode).toBe(124);

2833+

expect(doctorStep?.advisory).toBeUndefined();

2834+

expect(doctorStep?.termination).toBe("timeout");

2835+

expect(

2836+

vi

2837+

.mocked(defaultRuntime.log)

2838+

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

2839+

.join("\n"),

2840+

).not.toContain("Post-install doctor failed after the package install was verified");

2841+

});

2842+26752843

it("runs package post-update doctor from the verified package root after a staged swap", async () => {

26762844

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

26772845

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