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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

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(ui): discard stale config state on explicit reload (#...
vincentkoc · 2026-04-28 · via Recent Commits to openclaw:main

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

44

applyConfig,

55

ensureAgentConfigEntry,

66

findAgentConfigEntryIndex,

7+

loadConfig,

78

resetConfigPendingChanges,

89

runUpdate,

910

saveConfig,

@@ -33,6 +34,7 @@ function createState(): ConfigState {

3334

configSchemaVersion: null,

3435

configSearchQuery: "",

3536

configSnapshot: null,

37+

configDraftBaseHash: null,

3638

configUiHints: {},

3739

configValid: null,

3840

connected: false,

@@ -115,6 +117,59 @@ describe("applyConfigSnapshot", () => {

115117

expect(state.configFormOriginal).toEqual({ original: true });

116118

});

117119120+

it("keeps the draft base hash when preserving dirty edits across refreshes", () => {

121+

const state = createState();

122+

applyConfigSnapshot(state, {

123+

hash: "hash-original",

124+

config: { gateway: { mode: "local" } },

125+

valid: true,

126+

issues: [],

127+

raw: '{ "gateway": { "mode": "local" } }',

128+

});

129+130+

updateConfigFormValue(state, ["gateway", "mode"], "remote");

131+

applyConfigSnapshot(state, {

132+

hash: "hash-refreshed",

133+

config: { gateway: { mode: "external" } },

134+

valid: true,

135+

issues: [],

136+

raw: '{ "gateway": { "mode": "external" } }',

137+

});

138+139+

expect(state.configSnapshot?.hash).toBe("hash-refreshed");

140+

expect(state.configDraftBaseHash).toBe("hash-original");

141+

expect(state.configForm).toEqual({ gateway: { mode: "remote" } });

142+

});

143+144+

it("discards dirty form edits when explicitly requested", () => {

145+

const state = createState();

146+

state.configFormMode = "form";

147+

state.configFormDirty = true;

148+

state.configForm = { gateway: { mode: "local", port: 18789 } };

149+

state.configFormOriginal = { gateway: { mode: "local", port: 18789 } };

150+

state.configRawOriginal =

151+

'{\n "gateway": {\n "mode": "local",\n "port": 18789\n }\n}\n';

152+153+

applyConfigSnapshot(

154+

state,

155+

{

156+

hash: "hash-remote",

157+

config: { gateway: { mode: "remote", port: 9999 } },

158+

valid: true,

159+

issues: [],

160+

raw: '{\n "gateway": { "mode": "remote", "port": 9999 }\n}\n',

161+

},

162+

{ discardPendingChanges: true },

163+

);

164+165+

expect(state.configFormDirty).toBe(false);

166+

expect(state.configForm).toEqual({ gateway: { mode: "remote", port: 9999 } });

167+

expect(state.configFormOriginal).toEqual({ gateway: { mode: "remote", port: 9999 } });

168+

expect(state.configRaw).toBe('{\n "gateway": { "mode": "remote", "port": 9999 }\n}\n');

169+

expect(state.configRawOriginal).toBe('{\n "gateway": { "mode": "remote", "port": 9999 }\n}\n');

170+

expect(state.configDraftBaseHash).toBe("hash-remote");

171+

});

172+118173

it("forces form mode when the snapshot does not include raw text", () => {

119174

const state = createState();

120175

state.configFormMode = "raw";

@@ -131,6 +186,28 @@ describe("applyConfigSnapshot", () => {

131186

});

132187

});

133188189+

describe("loadConfig", () => {

190+

it("passes explicit reload mode through to snapshot application", async () => {

191+

const request = vi.fn().mockResolvedValue({

192+

config: { gateway: { mode: "remote" } },

193+

valid: true,

194+

issues: [],

195+

raw: '{\n "gateway": { "mode": "remote" }\n}\n',

196+

});

197+

const state = createState();

198+

state.connected = true;

199+

state.client = { request } as unknown as ConfigState["client"];

200+

state.configFormDirty = true;

201+

state.configForm = { gateway: { mode: "local" } };

202+203+

await loadConfig(state, { discardPendingChanges: true });

204+205+

expect(state.configFormDirty).toBe(false);

206+

expect(state.configForm).toEqual({ gateway: { mode: "remote" } });

207+

expect(state.configRawOriginal).toBe('{\n "gateway": { "mode": "remote" }\n}\n');

208+

});

209+

});

210+134211

describe("updateConfigFormValue", () => {

135212

it("seeds from snapshot when form is null", () => {

136213

const state = createState();

@@ -469,6 +546,35 @@ describe("applyConfig", () => {

469546

});

470547471548

describe("saveConfig", () => {

549+

it("submits the original draft base hash after a dirty config refresh", async () => {

550+

const request = createRequestWithConfigGet();

551+

const state = createState();

552+

state.connected = true;

553+

state.client = { request } as unknown as ConfigState["client"];

554+

state.configFormMode = "form";

555+

applyConfigSnapshot(state, {

556+

hash: "hash-original",

557+

config: { gateway: { mode: "local" } },

558+

valid: true,

559+

issues: [],

560+

raw: '{\n "gateway": { "mode": "local" }\n}\n',

561+

});

562+

updateConfigFormValue(state, ["gateway", "mode"], "remote");

563+

applyConfigSnapshot(state, {

564+

hash: "hash-refreshed",

565+

config: { gateway: { mode: "external" } },

566+

valid: true,

567+

issues: [],

568+

raw: '{\n "gateway": { "mode": "external" }\n}\n',

569+

});

570+571+

await saveConfig(state);

572+573+

expect(request.mock.calls[0]?.[0]).toBe("config.set");

574+

const params = request.mock.calls[0]?.[1] as { raw: string; baseHash: string };

575+

expect(params.baseHash).toBe("hash-original");

576+

});

577+472578

it("coerces schema-typed values before config.set in form mode", async () => {

473579

const request = createRequestWithConfigGet();

474580

const state = createState();