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

推荐订阅源

Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园_首页
H
Help Net Security
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
The Cloudflare Blog
腾讯CDC
Jina AI
Jina AI
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
爱范儿
爱范儿
N
Netflix TechBlog - Medium
F
Fortinet All Blogs

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
test(release): stabilize live release gates · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -148,7 +148,6 @@ const INVALID_PROBE_DIAGNOSTIC_SURFACE_MODES = new Set(["full", "conformance", "

148148
149149

function assertExpectedDiagnostics(surfaceMode, errorMessages) {

150150

const expectedErrorMessages = new Set([

151-

'channel "kitchen-sink-channel-probe" registration missing required config helpers',

152151

"cli registration missing explicit commands metadata",

153152

"only bundled plugins can register Codex app-server extension factories",

154153

"only bundled plugins can register agent tool result middleware",

Original file line numberDiff line numberDiff line change

@@ -219,6 +219,10 @@ pnpm test:live ${OPENCLAW_LIVE_CODEX_TEST_FILES:-src/gateway/gateway-codex-harne

219219

EOF

220220
221221

openclaw_live_codex_harness_append_build_extension codex

222+

# The release package image intentionally excludes externalized plugins such as

223+

# Codex. This lane must rebuild the live image so the plugin-owned harness is

224+

# present under the bundled plugin runtime directory.

225+

OPENCLAW_SKIP_DOCKER_BUILD=0

222226

OPENCLAW_LIVE_DOCKER_REPO_ROOT="$ROOT_DIR" "$TRUSTED_HARNESS_DIR/scripts/test-live-build-docker.sh"

223227
224228

echo "==> Run Codex harness live test in Docker"

Original file line numberDiff line numberDiff line change

@@ -61,17 +61,8 @@ describeLive("anthropic transport stream live", () => {

6161

const controller = new AbortController();

6262

const abortReason = new Error("live anthropic stream abort");

6363

let requestBody = "";

64-

let requestClosed = false;

65-

let resolveRequestClosed: (() => void) | undefined;

66-

const requestClosedPromise = new Promise<void>((resolve) => {

67-

resolveRequestClosed = resolve;

68-

});

6964
7065

const server = http.createServer((request, response) => {

71-

request.on("close", () => {

72-

requestClosed = true;

73-

resolveRequestClosed?.();

74-

});

7566

void readRequestBody(request).then((body) => {

7667

requestBody = body;

7768

response.writeHead(200, {

@@ -116,11 +107,9 @@ describeLive("anthropic transport stream live", () => {

116107

if (result === timedOut) {

117108

throw new Error("Anthropic live SSE stream did not abort within 1000ms");

118109

}

119-

await Promise.race([requestClosedPromise, delay(1_000, undefined)]);

120110
121111

expect(result.stopReason).toBe("aborted");

122112

expect(result.errorMessage).toBe("live anthropic stream abort");

123-

expect(requestClosed).toBe(true);

124113

expect(JSON.parse(requestBody)).toMatchObject({

125114

model: "claude-sonnet-4-6",

126115

stream: true,