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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

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: preserve plugin maintenance config compatibility · o...
jalehman · 2026-06-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -47,6 +47,12 @@ export type ResolvedSessionMaintenanceConfig = {

4747

highWaterBytes: number | null;

4848

};

4949
50+

export type ResolvedSessionMaintenanceConfigInput = Omit<

51+

ResolvedSessionMaintenanceConfig,

52+

"modelRunPruneAfterMs"

53+

> &

54+

Partial<Pick<ResolvedSessionMaintenanceConfig, "modelRunPruneAfterMs">>;

55+
5056

function resolvePruneAfterMs(maintenance?: SessionMaintenanceConfig): number {

5157

const raw = maintenance?.pruneAfter ?? maintenance?.pruneDays;

5258

const normalized = normalizeStringifiedOptionalString(raw);

@@ -147,6 +153,15 @@ export function resolveMaintenanceConfigFromInput(

147153

};

148154

}

149155
156+

export function normalizeResolvedMaintenanceConfigInput(

157+

maintenance: ResolvedSessionMaintenanceConfigInput,

158+

): ResolvedSessionMaintenanceConfig {

159+

return {

160+

...maintenance,

161+

modelRunPruneAfterMs: maintenance.modelRunPruneAfterMs ?? DEFAULT_MODEL_RUN_PRUNE_AFTER_MS,

162+

};

163+

}

164+
150165

export function resolveSessionEntryMaintenanceHighWater(maxEntries: number): number {

151166

if (!Number.isSafeInteger(maxEntries) || maxEntries <= 0) {

152167

return 1;

Original file line numberDiff line numberDiff line change

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

6969

pruneStaleModelRunEntries,

7070

pruneStaleEntries,

7171

type ResolvedSessionMaintenanceConfig,

72+

type ResolvedSessionMaintenanceConfigInput,

7273

type SessionMaintenanceWarning,

7374

} from "./store-maintenance.js";

7475

import { runExclusiveSessionStoreWrite } from "./store-writer.js";

@@ -173,7 +174,11 @@ export {

173174

resolveMaintenanceConfig,

174175

};

175176

export type { SessionMaintenanceApplyReport } from "./store-maintenance-operations.js";

176-

export type { ResolvedSessionMaintenanceConfig, SessionMaintenanceWarning };

177+

export type {

178+

ResolvedSessionMaintenanceConfig,

179+

ResolvedSessionMaintenanceConfigInput,

180+

SessionMaintenanceWarning,

181+

};

177182
178183

type SaveSessionStoreOptions = {

179184

/** Skip pruning, capping, and rotation (e.g. during one-time migrations). */

Original file line numberDiff line numberDiff line change

@@ -165,6 +165,51 @@ describe("session-store-runtime compatibility surface", () => {

165165

expect(getSessionEntry({ sessionKey: staleSessionKey, storePath })).toBeUndefined();

166166

});

167167
168+

it("accepts pre-model-run maintenance configs through entry patches", async () => {

169+

const staleModelRunKey = "agent:main:explicit:model-run-123e4567-e89b-12d3-a456-426614174000";

170+

const activeSessionKey = "agent:main:active";

171+

const now = Date.now();

172+

await saveSessionStore(

173+

storePath,

174+

{

175+

[staleModelRunKey]: {

176+

sessionId: "session-probe",

177+

updatedAt: now - 2 * DAY_MS,

178+

},

179+

[activeSessionKey]: {

180+

sessionId: "session-active",

181+

updatedAt: now,

182+

},

183+

},

184+

{ skipMaintenance: true },

185+

);

186+
187+

const legacyMaintenanceConfig = {

188+

mode: "enforce" as const,

189+

pruneAfterMs: 7 * DAY_MS,

190+

maxEntries: 500,

191+

resetArchiveRetentionMs: 7 * DAY_MS,

192+

maxDiskBytes: null,

193+

highWaterBytes: null,

194+

};

195+
196+

await expect(

197+

patchSessionEntry({

198+

sessionKey: activeSessionKey,

199+

storePath,

200+

maintenanceConfig: legacyMaintenanceConfig,

201+

update: () => ({ model: "gpt-5.5" }),

202+

}),

203+

).resolves.toMatchObject({

204+

model: "gpt-5.5",

205+

sessionId: "session-active",

206+

});

207+
208+

expect(getSessionEntry({ sessionKey: staleModelRunKey, storePath })).toMatchObject({

209+

sessionId: "session-probe",

210+

});

211+

});

212+
168213

it("keeps deprecated whole-store mutations grouped as one compatibility operation", async () => {

169214

const firstSessionKey = "agent:main:first";

170215

const secondSessionKey = "agent:main:second";

Original file line numberDiff line numberDiff line change

@@ -12,7 +12,8 @@ import {

1212

updateSessionEntry,

1313

} from "../config/sessions/session-accessor.js";

1414

import { loadSessionStore as loadSessionStoreImpl } from "../config/sessions/store-load.js";

15-

import type { ResolvedSessionMaintenanceConfig } from "../config/sessions/store.js";

15+

import { normalizeResolvedMaintenanceConfigInput } from "../config/sessions/store-maintenance.js";

16+

import type { ResolvedSessionMaintenanceConfigInput } from "../config/sessions/store.js";

1617

import type { SessionEntry } from "../config/sessions/types.js";

1718
1819

type SessionStoreReadParams = {

@@ -42,7 +43,7 @@ type SessionStoreEntryPatch = (

4243
4344

type PatchSessionEntryParams = SessionStoreReadParams & {

4445

fallbackEntry?: SessionEntry;

45-

maintenanceConfig?: ResolvedSessionMaintenanceConfig;

46+

maintenanceConfig?: ResolvedSessionMaintenanceConfigInput;

4647

preserveActivity?: boolean;

4748

replaceEntry?: boolean;

4849

update: SessionStoreEntryPatch;

@@ -128,7 +129,10 @@ export async function patchSessionEntry(

128129

): Promise<SessionEntry | null> {

129130

return await patchAccessorSessionEntry(toSessionAccessScope(params), params.update, {

130131

fallbackEntry: params.fallbackEntry,

131-

maintenanceConfig: params.maintenanceConfig,

132+

maintenanceConfig:

133+

params.maintenanceConfig !== undefined

134+

? normalizeResolvedMaintenanceConfigInput(params.maintenanceConfig)

135+

: undefined,

132136

preserveActivity: params.preserveActivity,

133137

replaceEntry: params.replaceEntry,

134138

});

Original file line numberDiff line numberDiff line change

@@ -19,11 +19,12 @@ import {

1919

type SessionAccessScope,

2020

updateSessionEntry,

2121

} from "../../config/sessions/session-accessor.js";

22+

import { normalizeResolvedMaintenanceConfigInput } from "../../config/sessions/store-maintenance.js";

2223

import {

2324

loadSessionStore,

2425

saveSessionStore,

2526

updateSessionStore,

26-

type ResolvedSessionMaintenanceConfig,

27+

type ResolvedSessionMaintenanceConfigInput,

2728

} from "../../config/sessions/store.js";

2829

import type { SessionEntry } from "../../config/sessions/types.js";

2930

import { createLazyRuntimeMethod, createLazyRuntimeModule } from "../../shared/lazy-runtime.js";

@@ -59,7 +60,7 @@ type RuntimeSessionStoreEntryUpdateParams = {

5960
6061

type RuntimeSessionStoreEntryPatchParams = RuntimeSessionStoreReadParams & {

6162

fallbackEntry?: SessionEntry;

62-

maintenanceConfig?: ResolvedSessionMaintenanceConfig;

63+

maintenanceConfig?: ResolvedSessionMaintenanceConfigInput;

6364

preserveActivity?: boolean;

6465

replaceEntry?: boolean;

6566

update: (

@@ -123,7 +124,10 @@ async function patchSessionEntry(

123124

): Promise<SessionEntry | null> {

124125

return await patchAccessorSessionEntry(toSessionAccessScope(params), params.update, {

125126

fallbackEntry: params.fallbackEntry,

126-

maintenanceConfig: params.maintenanceConfig,

127+

maintenanceConfig:

128+

params.maintenanceConfig !== undefined

129+

? normalizeResolvedMaintenanceConfigInput(params.maintenanceConfig)

130+

: undefined,

127131

preserveActivity: params.preserveActivity,

128132

replaceEntry: params.replaceEntry,

129133

});

Original file line numberDiff line numberDiff line change

@@ -75,7 +75,7 @@ type RuntimeSessionStoreEntrySummary = {

7575

};

7676

type RuntimeSessionStoreEntryPatchParams = RuntimeSessionStoreReadParams & {

7777

fallbackEntry?: RuntimeSessionEntry;

78-

maintenanceConfig?: import("../../config/sessions/store.js").ResolvedSessionMaintenanceConfig;

78+

maintenanceConfig?: import("../../config/sessions/store.js").ResolvedSessionMaintenanceConfigInput;

7979

preserveActivity?: boolean;

8080

replaceEntry?: boolean;

8181

update: (