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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
博客园_首页
博客园 - 【当耐特】
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
G
Google Developers Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
GbyAI
GbyAI
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Help Net Security
T
Tailwind CSS Blog
B
Blog RSS Feed
Martin Fowler
Martin Fowler
人人都是产品经理
人人都是产品经理
The Cloudflare 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 config queue overrides for Matrix (#84104) · openclaw...
clawsweeper · 2026-05-19 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1212
1313

- Control UI: treat terminal session status as authoritative over stale active-run flags so completed terminal runs stop showing abort/live UI. (#84057)

1414

- CLI: preserve embedded equals signs in inline root option values instead of truncating after the second separator. (#83995) Thanks @ThiagoCAltoe.

15+

- Matrix/config: accept `messages.queue.byChannel.matrix` queue overrides and keep queue provider schema/type keys aligned for Matrix, Google Chat, and Mattermost. Thanks @bdjben.

1516

- Providers/Ollama: default unknown-capabilities models to tool-capable so discovered native Ollama models can use tools when `/api/show` omits capabilities. (#84055) Thanks @dutifulbob.

1617

- Installer/Windows: launch `install.ps1` onboarding as an attached child process so fresh native Windows installs do not freeze visibly at `Starting setup...` or corrupt the wizard's terminal rendering.

1718

- Memory/search: close local embedding providers when active-memory searches time out so pending local model loads and embedding contexts are aborted and released. (#83858) Thanks @brokemac79.

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

82d56352536e75291ec81540bd4d93e22aeae282e2ef864aa0f231b6deb11bba config-baseline.json

2-

5d6aa4d0789482b1bdb6681d19fe193a8696ca25c20cbb9e07edb6d1b23ad8f2 config-baseline.core.json

1+

9e7c2b40f4ee8eaeda4bfce4ba9b403345aff83a0768a09de575e41303af5212 config-baseline.json

2+

40abd62ca070a191d196fc822b90ba9b29438bbce80c62ed23eb91e6078d0855 config-baseline.core.json

33

e068db276fdff1727939d4f3a8001376e550c444bdff3e3443ab26812e2f8c5d config-baseline.channel.json

44

a87fc4c9bc6499c5fb9d9343b8c1c4f0c3381a6afbdb0a676dc8ba9e03ff5755 config-baseline.plugin.json

Original file line numberDiff line numberDiff line change

@@ -171,6 +171,65 @@ describe("config schema regressions", () => {

171171
172172

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

173173

});

174+
175+

it("accepts Matrix queue byChannel overrides", () => {

176+

const res = validateConfigObject({

177+

messages: {

178+

queue: {

179+

byChannel: {

180+

matrix: "steer",

181+

},

182+

},

183+

},

184+

});

185+
186+

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

187+

});

188+
189+

it("accepts Matrix interrupt queue byChannel overrides", () => {

190+

const res = validateConfigObject({

191+

messages: {

192+

queue: {

193+

byChannel: {

194+

matrix: "interrupt",

195+

},

196+

},

197+

},

198+

});

199+
200+

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

201+

});

202+
203+

it("keeps queue byChannel schema and config type providers aligned", () => {

204+

const res = validateConfigObject({

205+

messages: {

206+

queue: {

207+

byChannel: {

208+

googlechat: "followup",

209+

mattermost: "collect",

210+

matrix: "steer",

211+

},

212+

},

213+

},

214+

});

215+
216+

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

217+

});

218+
219+

it("rejects unknown queue byChannel providers", () => {

220+

const res = validateConfigObject({

221+

messages: {

222+

queue: {

223+

byChannel: {

224+

unknown: "steer",

225+

},

226+

},

227+

},

228+

});

229+
230+

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

231+

});

232+
174233

it("accepts string values for agents defaults model inputs", () => {

175234

const res = validateConfigObject({

176235

agents: {

Original file line numberDiff line numberDiff line change

@@ -701,6 +701,13 @@ describe("config schema", () => {

701701

expect(schema?.properties).toBeUndefined();

702702

});

703703
704+

it("lists Matrix in messages.queue.byChannel schema lookup", () => {

705+

const lookup = lookupConfigSchema(baseSchema, "messages.queue.byChannel");

706+

expect(lookup?.path).toBe("messages.queue.byChannel");

707+

expect(lookup?.children.map((child) => child.key)).toEqual(expect.arrayContaining(["matrix"]));

708+

expect(lookup?.schema).toMatchObject({ additionalProperties: false });

709+

});

710+
704711

it("includes reload metadata when a resolver is provided", () => {

705712

const lookup = lookupConfigSchema(baseSchema, "gateway", (path) => {

706713

if (path === "gateway.channelHealthCheckMinutes") {

Original file line numberDiff line numberDiff line change

@@ -8,8 +8,10 @@ export type QueueModeByProvider = {

88

irc?: QueueMode;

99

googlechat?: QueueMode;

1010

slack?: QueueMode;

11+

mattermost?: QueueMode;

1112

signal?: QueueMode;

1213

imessage?: QueueMode;

1314

msteams?: QueueMode;

1415

webchat?: QueueMode;

16+

matrix?: QueueMode;

1517

};

Original file line numberDiff line numberDiff line change

@@ -837,12 +837,14 @@ const QueueModeBySurfaceSchema = z

837837

telegram: QueueModeSchema.optional(),

838838

discord: QueueModeSchema.optional(),

839839

irc: QueueModeSchema.optional(),

840+

googlechat: QueueModeSchema.optional(),

840841

slack: QueueModeSchema.optional(),

841842

mattermost: QueueModeSchema.optional(),

842843

signal: QueueModeSchema.optional(),

843844

imessage: QueueModeSchema.optional(),

844845

msteams: QueueModeSchema.optional(),

845846

webchat: QueueModeSchema.optional(),

847+

matrix: QueueModeSchema.optional(),

846848

})

847849

.strict()

848850

.optional();