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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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: smooth beta update health checks · openclaw/openclaw...
steipete · 2026-05-10 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ Docs: https://docs.openclaw.ai

1212

### Fixes

1313
1414

- ACP sessions: map canonical runtime options to backend-advertised ACP config keys like Claude's `effort` while keeping persisted OpenClaw state canonical. (#79926) Thanks @InTheCloudDan.

15+

- CLI/update: allow restart health probes from the previous gateway protocol during self-update, and make plugin dry-runs report exact npm target versions instead of `unknown` while preserving unchanged status.

1516

- OpenAI/Codex: point gateway missing-key recovery and wizard docs at the canonical `openai/gpt-5.5` plus Codex OAuth route, and fix trajectory export errors so they suggest the valid `openclaw sessions` command.

1617

- Google/Gemini: normalize retired `google/gemini-3-pro-preview` primary, fallback, and model-map refs during config load and unrelated config writes so saved config keeps targeting Gemini 3.1 Pro Preview.

1718

- Discord/voice: synthesize realtime playback timestamps from emitted Discord PCM so OpenAI realtime barge-in truncation no longer sees `audioEndMs=0` and skips legitimate interruptions.

Original file line numberDiff line numberDiff line change

@@ -264,6 +264,7 @@ import {

264264

NodeRenameParamsSchema,

265265

type PollParams,

266266

PollParamsSchema,

267+

MIN_PROBE_PROTOCOL_VERSION,

267268

PROTOCOL_VERSION,

268269

type PushTestParams,

269270

PushTestParamsSchema,

@@ -927,6 +928,7 @@ export {

927928

TickEventSchema,

928929

ShutdownEventSchema,

929930

ProtocolSchemas,

931+

MIN_PROBE_PROTOCOL_VERSION,

930932

PROTOCOL_VERSION,

931933

ErrorCodes,

932934

errorShape,

Original file line numberDiff line numberDiff line change

@@ -484,4 +484,4 @@ export const ProtocolSchemas = {

484484

ShutdownEvent: ShutdownEventSchema,

485485

} satisfies Record<string, TSchema>;

486486
487-

export { PROTOCOL_VERSION } from "../version.js";

487+

export { MIN_PROBE_PROTOCOL_VERSION, PROTOCOL_VERSION } from "../version.js";

Original file line numberDiff line numberDiff line change

@@ -1 +1,2 @@

11

export const PROTOCOL_VERSION = 4 as const;

2+

export const MIN_PROBE_PROTOCOL_VERSION = 3 as const;

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ import {

99

getPreauthHandshakeTimeoutMsFromEnv,

1010

GATEWAY_CLIENT_MODES,

1111

GATEWAY_CLIENT_NAMES,

12+

MIN_PROBE_PROTOCOL_VERSION,

1213

NODE_CLIENT,

1314

onceMessage,

1415

openWs,

@@ -428,6 +429,37 @@ export function registerDefaultAuthTokenSuite(): void {

428429

ws.close();

429430

});

430431
432+

test("allows previous protocol for restart health probes", async () => {

433+

const ws = await openWs(port);

434+

const res = await connectReq(ws, {

435+

minProtocol: MIN_PROBE_PROTOCOL_VERSION,

436+

maxProtocol: MIN_PROBE_PROTOCOL_VERSION,

437+

client: {

438+

id: GATEWAY_CLIENT_NAMES.PROBE,

439+

version: "2026.5.7",

440+

platform: "cli",

441+

mode: GATEWAY_CLIENT_MODES.PROBE,

442+

},

443+

});

444+

expect(res.ok).toBe(true);

445+

expect((res.payload as { type?: unknown } | undefined)?.type).toBe("hello-ok");

446+

ws.close();

447+

});

448+
449+

test("keeps previous protocol rejected for non-probe clients", async () => {

450+

const ws = await openWs(port);

451+

try {

452+

const res = await connectReq(ws, {

453+

minProtocol: MIN_PROBE_PROTOCOL_VERSION,

454+

maxProtocol: MIN_PROBE_PROTOCOL_VERSION,

455+

});

456+

expect(res.ok).toBe(false);

457+

} catch {

458+

// If the server closed before we saw the frame, that's acceptable.

459+

}

460+

ws.close();

461+

});

462+
431463

test("rejects non-connect first request", async () => {

432464

const ws = await openWs(port);

433465

ws.send(JSON.stringify({ type: "req", id: "h1", method: "health" }));

Original file line numberDiff line numberDiff line change

@@ -5,7 +5,7 @@ import { WebSocket } from "ws";

55

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

66

import { GATEWAY_CLIENT_MODES, GATEWAY_CLIENT_NAMES } from "../utils/message-channel.js";

77

import { buildDeviceAuthPayload } from "./device-auth.js";

8-

import { PROTOCOL_VERSION } from "./protocol/index.js";

8+

import { MIN_PROBE_PROTOCOL_VERSION, PROTOCOL_VERSION } from "./protocol/index.js";

99

import {

1010

createGatewaySuiteHarness,

1111

connectReq,

@@ -395,6 +395,7 @@ export {

395395

getFreePort,

396396

getTrackedConnectChallengeNonce,

397397

installGatewayTestHooks,

398+

MIN_PROBE_PROTOCOL_VERSION,

398399

NODE_CLIENT,

399400

onceMessage,

400401

openTailscaleWs,

Original file line numberDiff line numberDiff line change

@@ -95,6 +95,7 @@ import {

9595

type ErrorShape,

9696

errorShape,

9797

formatValidationErrors,

98+

MIN_PROBE_PROTOCOL_VERSION,

9899

PROTOCOL_VERSION,

99100

validateConnectParams,

100101

validateRequestFrame,

@@ -502,17 +503,27 @@ export function attachGatewayWsMessageHandler(params: GatewayWsMessageHandlerPar

502503
503504

// protocol negotiation

504505

const { minProtocol, maxProtocol } = connectParams;

505-

if (maxProtocol < PROTOCOL_VERSION || minProtocol > PROTOCOL_VERSION) {

506+

const supportsCurrentProtocol =

507+

maxProtocol >= PROTOCOL_VERSION && minProtocol <= PROTOCOL_VERSION;

508+

const supportsProbeRestartProtocol =

509+

connectParams.client.mode === GATEWAY_CLIENT_MODES.PROBE &&

510+

maxProtocol >= MIN_PROBE_PROTOCOL_VERSION &&

511+

minProtocol <= PROTOCOL_VERSION;

512+

if (!supportsCurrentProtocol && !supportsProbeRestartProtocol) {

506513

markHandshakeFailure("protocol-mismatch", {

507514

minProtocol,

508515

maxProtocol,

509516

expectedProtocol: PROTOCOL_VERSION,

517+

minimumProbeProtocol: MIN_PROBE_PROTOCOL_VERSION,

510518

});

511519

logWsControl.warn(

512520

`protocol mismatch conn=${connId} remote=${remoteAddr ?? "?"} client=${clientLabel} ${connectParams.client.mode} v${connectParams.client.version}`,

513521

);

514522

sendHandshakeErrorResponse(ErrorCodes.INVALID_REQUEST, "protocol mismatch", {

515-

details: { expectedProtocol: PROTOCOL_VERSION },

523+

details: {

524+

expectedProtocol: PROTOCOL_VERSION,

525+

minimumProbeProtocol: MIN_PROBE_PROTOCOL_VERSION,

526+

},

516527

});

517528

close(1002, "protocol mismatch");

518529

return;

Original file line numberDiff line numberDiff line change

@@ -1477,6 +1477,68 @@ describe("updateNpmInstalledPlugins", () => {

14771477

);

14781478

});

14791479
1480+

it("uses exact npm spec selectors as dry-run target versions when probes omit metadata", async () => {

1481+

const installPath = createInstalledPackageDir({

1482+

name: "@acme/demo",

1483+

version: "1.2.3",

1484+

});

1485+

installPluginFromNpmSpecMock.mockResolvedValue({

1486+

ok: true,

1487+

pluginId: "demo",

1488+

targetDir: installPath,

1489+

extensions: ["index.ts"],

1490+

});

1491+
1492+

const result = await updateNpmInstalledPlugins({

1493+

config: createNpmInstallConfig({

1494+

pluginId: "demo",

1495+

spec: "@acme/demo@1.2.4",

1496+

installPath,

1497+

}),

1498+

pluginIds: ["demo"],

1499+

dryRun: true,

1500+

});

1501+
1502+

expect(result.outcomes[0]).toMatchObject({

1503+

pluginId: "demo",

1504+

status: "updated",

1505+

currentVersion: "1.2.3",

1506+

nextVersion: "1.2.4",

1507+

message: "Would update demo: 1.2.3 -> 1.2.4.",

1508+

});

1509+

});

1510+
1511+

it("keeps exact npm dry-runs unchanged when probe metadata is absent but spec matches", async () => {

1512+

const installPath = createInstalledPackageDir({

1513+

name: "@acme/demo",

1514+

version: "1.2.3",

1515+

});

1516+

installPluginFromNpmSpecMock.mockResolvedValue({

1517+

ok: true,

1518+

pluginId: "demo",

1519+

targetDir: installPath,

1520+

extensions: ["index.ts"],

1521+

});

1522+
1523+

const result = await updateNpmInstalledPlugins({

1524+

config: createNpmInstallConfig({

1525+

pluginId: "demo",

1526+

spec: "@acme/demo@1.2.3",

1527+

installPath,

1528+

}),

1529+

pluginIds: ["demo"],

1530+

dryRun: true,

1531+

});

1532+
1533+

expect(result.outcomes[0]).toMatchObject({

1534+

pluginId: "demo",

1535+

status: "unchanged",

1536+

currentVersion: "1.2.3",

1537+

nextVersion: "1.2.3",

1538+

message: "demo is up to date (1.2.3).",

1539+

});

1540+

});

1541+
14801542

it("updates disabled trusted official ClawHub installs through the catalog spec", async () => {

14811543

installPluginFromClawHubMock.mockResolvedValue(

14821544

createSuccessfulClawHubUpdateResult({

Original file line numberDiff line numberDiff line change

@@ -469,6 +469,11 @@ function resolveNpmSpecPackageName(spec: string | undefined): string | undefined

469469

return spec ? parseRegistryNpmSpec(spec)?.name : undefined;

470470

}

471471
472+

function resolveExactNpmSpecVersion(spec: string | undefined): string | undefined {

473+

const parsed = spec ? parseRegistryNpmSpec(spec) : null;

474+

return parsed?.selectorKind === "exact-version" ? parsed.selector : undefined;

475+

}

476+
472477

function resolveClawHubSpecPackageName(spec: string | undefined): string | undefined {

473478

return spec ? parseClawHubPluginSpec(spec)?.name : undefined;

474479

}

@@ -1236,7 +1241,11 @@ export async function updateNpmInstalledPlugins(params: {

12361241

continue;

12371242

}

12381243
1239-

const nextVersion = probe.version ?? "unknown";

1244+

const probeSpec = usedNpmFallback ? npmSpecs?.fallbackSpec : effectiveSpec;

1245+

const resolvedProbeVersion =

1246+

probe.version ??

1247+

(record.source === "npm" ? resolveExactNpmSpecVersion(probeSpec) : undefined);

1248+

const nextVersion = resolvedProbeVersion ?? "unknown";

12401249

const currentLabel = currentVersion ?? "unknown";

12411250

const gitProbe =

12421251

record.source === "git"

@@ -1246,21 +1255,23 @@ export async function updateNpmInstalledPlugins(params: {

12461255

const unchanged =

12471256

record.source === "git" && record.gitCommit && gitProbe?.commit

12481257

? record.gitCommit === gitProbe.commit

1249-

: Boolean(currentVersion && probe.version && currentVersion === probe.version);

1258+

: Boolean(

1259+

currentVersion && resolvedProbeVersion && currentVersion === resolvedProbeVersion,

1260+

);

12501261

if (unchanged) {

12511262

outcomes.push({

12521263

pluginId,

12531264

status: "unchanged",

12541265

currentVersion: currentVersion ?? undefined,

1255-

nextVersion: probe.version ?? undefined,

1266+

nextVersion: resolvedProbeVersion,

12561267

message: `${pluginId} is up to date (${currentLabel}).`,

12571268

});

12581269

} else {

12591270

outcomes.push({

12601271

pluginId,

12611272

status: "updated",

12621273

currentVersion: currentVersion ?? undefined,

1263-

nextVersion: probe.version ?? undefined,

1274+

nextVersion: resolvedProbeVersion,

12641275

message: `Would update ${pluginId}: ${currentLabel} -> ${nextVersion}.`,

12651276

});

12661277

}