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

推荐订阅源

博客园 - 【当耐特】
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
量子位
爱范儿
爱范儿
L
LangChain Blog
Vercel News
Vercel News
A
About on SuperTechFans
腾讯CDC
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
美团技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium

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(qa-lab): rename codex lifecycle fixtures to match kni...
RomneyDa · 2026-05-22 · via Recent Commits to openclaw:main

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -7,15 +7,15 @@ import {

77

resolveCodexAuthProfile,

88

seedAuthProfiles,

99

snapshotAuthProfiles,

10-

} from "./auth-profile-fixture.js";

10+

} from "./auth-profile.fixture.js";

1111

import {

1212

CODEX_PLUGIN_CURRENT_VERSION,

1313

CODEX_PLUGIN_LIFECYCLE_MESSAGES,

1414

createCodexPluginInstallGate,

1515

evaluateCodexPluginLifecycle,

1616

seedCodexPluginAt,

1717

snapshotCodexPluginState,

18-

} from "./codex-plugin-fixture.js";

18+

} from "./codex-plugin.fixture.js";

1919

import { createTempDirHarness } from "./temp-dir.test-helper.js";

2020
2121

const tempDirs = createTempDirHarness();

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import fs from "node:fs/promises";

22

import path from "node:path";

3-

import { resolveCodexAuthProfile, type QaAuthProfileSnapshot } from "./auth-profile-fixture.js";

3+

import { resolveCodexAuthProfile, type QaAuthProfileSnapshot } from "./auth-profile.fixture.js";

44
55

export const CODEX_PLUGIN_CURRENT_VERSION = "2026.5.20";

66

export const CODEX_PLUGIN_HEAD_VERSION = "head";

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ successCriteria:

1818

docsRefs:

1919

- docs/cli/doctor.md

2020

codeRefs:

21-

- extensions/qa-lab/src/auth-profile-fixture.ts

21+

- extensions/qa-lab/src/auth-profile.fixture.ts

2222

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2323

execution:

2424

kind: flow

@@ -34,7 +34,7 @@ steps:

3434

actions:

3535

- set: auth

3636

value:

37-

expr: await qaImport("./auth-profile-fixture.js")

37+

expr: await qaImport("./auth-profile.fixture.js")

3838

- set: tmpRoot

3939

value:

4040

expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-auth-"))

Original file line numberDiff line numberDiff line change

@@ -19,8 +19,8 @@ successCriteria:

1919

docsRefs:

2020

- docs/cli/doctor.md

2121

codeRefs:

22-

- extensions/qa-lab/src/auth-profile-fixture.ts

23-

- extensions/qa-lab/src/codex-plugin-fixture.ts

22+

- extensions/qa-lab/src/auth-profile.fixture.ts

23+

- extensions/qa-lab/src/codex-plugin.fixture.ts

2424

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2525

execution:

2626

kind: flow

@@ -39,10 +39,10 @@ steps:

3939

actions:

4040

- set: auth

4141

value:

42-

expr: await qaImport("./auth-profile-fixture.js")

42+

expr: await qaImport("./auth-profile.fixture.js")

4343

- set: plugin

4444

value:

45-

expr: await qaImport("./codex-plugin-fixture.js")

45+

expr: await qaImport("./codex-plugin.fixture.js")

4646

- forEach:

4747

items:

4848

ref: config.matrixCells

Original file line numberDiff line numberDiff line change

@@ -20,8 +20,8 @@ docsRefs:

2020

- docs/cli/plugins.md

2121

- docs/plugins/install-overrides.md

2222

codeRefs:

23-

- extensions/qa-lab/src/codex-plugin-fixture.ts

24-

- extensions/qa-lab/src/auth-profile-fixture.ts

23+

- extensions/qa-lab/src/codex-plugin.fixture.ts

24+

- extensions/qa-lab/src/auth-profile.fixture.ts

2525

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2626

execution:

2727

kind: flow

@@ -36,10 +36,10 @@ steps:

3636

actions:

3737

- set: auth

3838

value:

39-

expr: await qaImport("./auth-profile-fixture.js")

39+

expr: await qaImport("./auth-profile.fixture.js")

4040

- set: plugin

4141

value:

42-

expr: await qaImport("./codex-plugin-fixture.js")

42+

expr: await qaImport("./codex-plugin.fixture.js")

4343

- set: tmpRoot

4444

value:

4545

expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-cold-"))

Original file line numberDiff line numberDiff line change

@@ -18,7 +18,7 @@ successCriteria:

1818

docsRefs:

1919

- docs/cli/plugins.md

2020

codeRefs:

21-

- extensions/qa-lab/src/codex-plugin-fixture.ts

21+

- extensions/qa-lab/src/codex-plugin.fixture.ts

2222

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2323

execution:

2424

kind: flow

@@ -34,7 +34,7 @@ steps:

3434

actions:

3535

- set: plugin

3636

value:

37-

expr: await qaImport("./codex-plugin-fixture.js")

37+

expr: await qaImport("./codex-plugin.fixture.js")

3838

- set: gate

3939

value:

4040

expr: plugin.createCodexPluginInstallGate()

Original file line numberDiff line numberDiff line change

@@ -17,7 +17,7 @@ docsRefs:

1717

- docs/cli/plugins.md

1818

- docs/cli/update.md

1919

codeRefs:

20-

- extensions/qa-lab/src/codex-plugin-fixture.ts

20+

- extensions/qa-lab/src/codex-plugin.fixture.ts

2121

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2222

execution:

2323

kind: flow

@@ -35,10 +35,10 @@ steps:

3535

actions:

3636

- set: auth

3737

value:

38-

expr: await qaImport("./auth-profile-fixture.js")

38+

expr: await qaImport("./auth-profile.fixture.js")

3939

- set: plugin

4040

value:

41-

expr: await qaImport("./codex-plugin-fixture.js")

41+

expr: await qaImport("./codex-plugin.fixture.js")

4242

- set: tmpRoot

4343

value:

4444

expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-new-"))

Original file line numberDiff line numberDiff line change

@@ -17,7 +17,7 @@ docsRefs:

1717

- docs/cli/plugins.md

1818

- docs/cli/update.md

1919

codeRefs:

20-

- extensions/qa-lab/src/codex-plugin-fixture.ts

20+

- extensions/qa-lab/src/codex-plugin.fixture.ts

2121

- extensions/qa-lab/src/codex-plugin-lifecycle.test.ts

2222

execution:

2323

kind: flow

@@ -35,10 +35,10 @@ steps:

3535

actions:

3636

- set: auth

3737

value:

38-

expr: await qaImport("./auth-profile-fixture.js")

38+

expr: await qaImport("./auth-profile.fixture.js")

3939

- set: plugin

4040

value:

41-

expr: await qaImport("./codex-plugin-fixture.js")

41+

expr: await qaImport("./codex-plugin.fixture.js")

4242

- set: tmpRoot

4343

value:

4444

expr: await fs.mkdtemp(path.join(env.gateway?.workspaceDir ?? "/tmp", "qa-codex-old-"))