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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
量子位
博客园 - 司徒正美
V
V2EX
I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
N
Netflix TechBlog - Medium
L
LangChain Blog
IT之家
IT之家
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure 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(deadcode): move plugin binding approvals to sqlite · ...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -97,6 +97,7 @@ vi.mock("../channels/plugins/bundled.js", () => {

9797

const tempDirs = createTrackedTempDirs();

98989999

type UpdateCheckStateDatabase = Pick<OpenClawStateKyselyDatabase, "update_check_state">;

100+

type PluginBindingApprovalsDatabase = Pick<OpenClawStateKyselyDatabase, "plugin_binding_approvals">;

100101

type CurrentConversationBindingsDatabase = Pick<

101102

OpenClawStateKyselyDatabase,

102103

"current_conversation_bindings"

@@ -168,6 +169,25 @@ function readCurrentConversationBindingRows(env: NodeJS.ProcessEnv): Array<{

168169

).rows;

169170

}

170171172+

function readPluginBindingApprovalRows(env: NodeJS.ProcessEnv): Array<{

173+

plugin_root: string;

174+

channel: string;

175+

account_id: string;

176+

plugin_id: string;

177+

plugin_name: string | null;

178+

approved_at: number;

179+

}> {

180+

const { db } = openOpenClawStateDatabase({ env });

181+

const stateDb = getNodeSqliteKysely<PluginBindingApprovalsDatabase>(db);

182+

return executeSqliteQuerySync(

183+

db,

184+

stateDb

185+

.selectFrom("plugin_binding_approvals")

186+

.select(["plugin_root", "channel", "account_id", "plugin_id", "plugin_name", "approved_at"])

187+

.orderBy("plugin_root", "asc"),

188+

).rows;

189+

}

190+171191

function insertCurrentConversationBindingRow(

172192

env: NodeJS.ProcessEnv,

173193

params: {

@@ -229,6 +249,7 @@ function createConfig(): OpenClawConfig {

229249

function createEnv(stateDir: string): NodeJS.ProcessEnv {

230250

return {

231251

...process.env,

252+

HOME: path.dirname(stateDir),

232253

OPENCLAW_STATE_DIR: stateDir,

233254

};

234255

}

@@ -723,6 +744,104 @@ describe("state migrations", () => {

723744

await expect(fs.readFile(`${sourcePath}.migrated`, "utf8")).resolves.toContain("workspace-dm");

724745

});

725746747+

it("migrates legacy plugin binding approvals JSON into shared SQLite state", async () => {

748+

const root = await createTempDir();

749+

const stateDir = path.join(root, ".openclaw");

750+

const env = createEnv(stateDir);

751+

const cfg = createConfig();

752+

const sourcePath = path.join(stateDir, "plugin-binding-approvals.json");

753+

await fs.mkdir(stateDir, { recursive: true });

754+

await fs.writeFile(

755+

sourcePath,

756+

JSON.stringify({

757+

version: 1,

758+

approvals: [

759+

{

760+

pluginRoot: "/plugins/codex-a",

761+

pluginId: "codex",

762+

pluginName: "Codex App Server",

763+

channel: "Discord",

764+

accountId: "default",

765+

approvedAt: 1234,

766+

},

767+

],

768+

}),

769+

"utf8",

770+

);

771+772+

const detected = await detectLegacyStateMigrations({ cfg, env, homedir: () => root });

773+

expect(detected.pluginBindingApprovals.hasLegacy).toBe(true);

774+

expect(detected.preview).toContain(

775+

"- Plugin binding approvals: legacy JSON file → shared SQLite state",

776+

);

777+778+

const result = await runLegacyStateMigrations({ detected, config: cfg });

779+780+

expect(result.warnings).toStrictEqual([]);

781+

expect(result.changes).toContain("Migrated 1 plugin binding approval → shared SQLite state");

782+

expect(readPluginBindingApprovalRows(env)).toEqual([

783+

{

784+

plugin_root: "/plugins/codex-a",

785+

channel: "discord",

786+

account_id: "default",

787+

plugin_id: "codex",

788+

plugin_name: "Codex App Server",

789+

approved_at: 1234,

790+

},

791+

]);

792+

await expectMissingPath(sourcePath);

793+

await expect(fs.readFile(`${sourcePath}.migrated`, "utf8")).resolves.toContain(

794+

"Codex App Server",

795+

);

796+

});

797+798+

it("migrates legacy plugin binding approvals from the home state dir when using a custom state dir", async () => {

799+

const root = await createTempDir();

800+

const stateDir = path.join(root, "custom-state");

801+

const env = createEnv(stateDir);

802+

const cfg = createConfig();

803+

const sourcePath = path.join(root, ".openclaw", "plugin-binding-approvals.json");

804+

await fs.mkdir(path.dirname(sourcePath), { recursive: true });

805+

await fs.writeFile(

806+

sourcePath,

807+

JSON.stringify({

808+

version: 1,

809+

approvals: [

810+

{

811+

pluginRoot: "/plugins/codex-a",

812+

pluginId: "codex",

813+

channel: "telegram",

814+

accountId: "default",

815+

approvedAt: 2345,

816+

},

817+

],

818+

}),

819+

"utf8",

820+

);

821+822+

const detected = await detectLegacyStateMigrations({ cfg, env, homedir: () => root });

823+

expect(detected.pluginBindingApprovals).toMatchObject({

824+

sourcePath,

825+

hasLegacy: true,

826+

});

827+828+

const result = await runLegacyStateMigrations({ detected, config: cfg });

829+830+

expect(result.warnings).toStrictEqual([]);

831+

expect(result.changes).toContain("Migrated 1 plugin binding approval → shared SQLite state");

832+

expect(readPluginBindingApprovalRows(env)).toEqual([

833+

{

834+

plugin_root: "/plugins/codex-a",

835+

channel: "telegram",

836+

account_id: "default",

837+

plugin_id: "codex",

838+

plugin_name: null,

839+

approved_at: 2345,

840+

},

841+

]);

842+

await expectMissingPath(sourcePath);

843+

});

844+726845

it("imports non-conflicting legacy current-conversation bindings when SQLite has a conflict", async () => {

727846

const root = await createTempDir();

728847

const stateDir = path.join(root, ".openclaw");