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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
The Cloudflare Blog
量子位
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
U
Unit 42
博客园 - 聂微东
有赞技术团队
有赞技术团队
A
About on SuperTechFans

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: clean migrated plugin install config · openclaw/open...
shakkernerd · 2026-04-26 · via Recent Commits to openclaw:main

@@ -136,6 +136,12 @@ type ShippedPluginInstallConfigWriteMigration =

136136

};

137137

};

138138139+

type ShippedPluginInstallConfigReadMigration = {

140+

config: unknown;

141+

persistedRootParsed?: unknown;

142+

persistedRootRaw?: string;

143+

};

144+139145

const CONFIG_HEALTH_STATE_FILENAME = "config-health.json";

140146

const loggedInvalidConfigs = new Set<string>();

141147

@@ -1228,21 +1234,104 @@ export function createConfigIO(

12281234

return applyConfigOverrides(cfgWithOwnerDisplaySecret);

12291235

}

123012361237+

function captureFileSnapshotSync(filePath: string):

1238+

| {

1239+

existed: false;

1240+

}

1241+

| {

1242+

existed: true;

1243+

raw: string;

1244+

} {

1245+

return deps.fs.existsSync(filePath)

1246+

? ({

1247+

existed: true,

1248+

raw: deps.fs.readFileSync(filePath, "utf-8"),

1249+

} as const)

1250+

: ({ existed: false } as const);

1251+

}

1252+1253+

function restoreFileSnapshotSync(

1254+

filePath: string,

1255+

previousFile:

1256+

| {

1257+

existed: false;

1258+

}

1259+

| {

1260+

existed: true;

1261+

raw: string;

1262+

},

1263+

): void {

1264+

if (previousFile.existed) {

1265+

deps.fs.writeFileSync(filePath, previousFile.raw, {

1266+

encoding: "utf-8",

1267+

mode: 0o600,

1268+

});

1269+

return;

1270+

}

1271+

try {

1272+

deps.fs.unlinkSync(filePath);

1273+

} catch (err) {

1274+

if ((err as NodeJS.ErrnoException)?.code !== "ENOENT") {

1275+

throw err;

1276+

}

1277+

}

1278+

}

1279+1280+

function replaceConfigFileSync(raw: string): void {

1281+

const dir = path.dirname(configPath);

1282+

deps.fs.mkdirSync(dir, { recursive: true, mode: 0o700 });

1283+

const tmp = path.join(

1284+

dir,

1285+

`${path.basename(configPath)}.${process.pid}.${crypto.randomUUID()}.tmp`,

1286+

);

1287+

try {

1288+

deps.fs.writeFileSync(tmp, raw, {

1289+

encoding: "utf-8",

1290+

mode: 0o600,

1291+

});

1292+

try {

1293+

deps.fs.renameSync(tmp, configPath);

1294+

} catch (err) {

1295+

const code = (err as NodeJS.ErrnoException)?.code;

1296+

if (code !== "EPERM" && code !== "EEXIST") {

1297+

throw err;

1298+

}

1299+

deps.fs.copyFileSync(tmp, configPath);

1300+

deps.fs.chmodSync(configPath, 0o600);

1301+

deps.fs.unlinkSync(tmp);

1302+

}

1303+

} catch (err) {

1304+

try {

1305+

deps.fs.unlinkSync(tmp);

1306+

} catch (cleanupErr) {

1307+

if ((cleanupErr as NodeJS.ErrnoException)?.code !== "ENOENT") {

1308+

deps.logger.warn(`Failed to clean temporary config file ${tmp}: ${String(cleanupErr)}`);

1309+

}

1310+

}

1311+

throw err;

1312+

}

1313+

}

1314+12311315

function migrateAndStripShippedPluginInstallConfigRecords(

12321316

configRaw: unknown,

1233-

options: { persist?: boolean } = {},

1234-

): unknown {

1317+

options: { persist?: boolean; rootConfigRaw?: unknown } = {},

1318+

): ShippedPluginInstallConfigReadMigration {

12351319

const installRecords = extractShippedPluginInstallConfigRecords(configRaw);

12361320

const stripped = stripShippedPluginInstallConfigRecords(configRaw);

12371321

if (Object.keys(installRecords).length === 0) {

1238-

return stripped;

1322+

return { config: stripped };

12391323

}

12401324

if (options.persist === false) {

1241-

return stripped;

1325+

return { config: stripped };

12421326

}

1243132712441328

try {

12451329

const stateDir = resolveStateDir(deps.env, deps.homedir);

1330+

const filePath = resolveInstalledPluginIndexRecordsStorePath({

1331+

env: deps.env,

1332+

stateDir,

1333+

});

1334+

const previousFile = captureFileSnapshotSync(filePath);

12461335

const existingRecords = loadInstalledPluginIndexInstallRecordsSync({

12471336

env: deps.env,

12481337

stateDir,

@@ -1258,16 +1347,33 @@ export function createConfigIO(

12581347

stateDir,

12591348

});

12601349

}

1350+

const rootConfigRaw = options.rootConfigRaw;

1351+

if (

1352+

rootConfigRaw !== undefined &&

1353+

Object.keys(extractShippedPluginInstallConfigRecords(rootConfigRaw)).length > 0

1354+

) {

1355+

const persistedRootParsed = stripShippedPluginInstallConfigRecords(rootConfigRaw);

1356+

const persistedRootRaw = JSON.stringify(persistedRootParsed, null, 2)

1357+

.trimEnd()

1358+

.concat("\n");

1359+

try {

1360+

replaceConfigFileSync(persistedRootRaw);

1361+

} catch (err) {

1362+

restoreFileSnapshotSync(filePath, previousFile);

1363+

throw err;

1364+

}

1365+

return { config: stripped, persistedRootParsed, persistedRootRaw };

1366+

}

12611367

} catch (err) {

12621368

deps.logger.warn(

12631369

`Config (${configPath}): could not migrate shipped plugins.installs records into the plugin index: ${formatErrorMessage(

12641370

err,

12651371

)}`,

12661372

);

1267-

return configRaw;

1373+

return { config: configRaw };

12681374

}

126913751270-

return stripped;

1376+

return { config: stripped };

12711377

}

1272137812731379

function ensureShippedPluginInstallConfigRecordsMigratedForWrite(

@@ -1374,16 +1480,20 @@ export function createConfigIO(

13741480

});

13751481

const effectiveRaw = recovered.raw;

13761482

const effectiveParsed = recovered.parsed;

1377-

const hash = hashConfigRaw(effectiveRaw);

13781483

const readResolution = resolveConfigForRead(

13791484

resolveConfigIncludesForRead(effectiveParsed, configPath, deps),

13801485

deps.env,

13811486

);

13821487

const resolvedConfig = readResolution.resolvedConfigRaw;

13831488

const legacyResolution = resolveLegacyConfigForRead(resolvedConfig, effectiveParsed);

1384-

const effectiveConfigRaw = migrateAndStripShippedPluginInstallConfigRecords(

1489+

const installMigration = migrateAndStripShippedPluginInstallConfigRecords(

13851490

legacyResolution.effectiveConfigRaw,

1491+

{ rootConfigRaw: effectiveParsed },

13861492

);

1493+

const effectiveConfigRaw = installMigration.config;

1494+

const snapshotRaw = installMigration.persistedRootRaw ?? effectiveRaw;

1495+

const snapshotParsed = installMigration.persistedRootParsed ?? effectiveParsed;

1496+

const hash = hashConfigRaw(snapshotRaw);

13871497

for (const w of readResolution.envWarnings) {

13881498

deps.logger.warn(

13891499

`Config (${configPath}): missing env var "${w.varName}" at ${w.configPath} - feature using this value will be unavailable`,

@@ -1395,8 +1505,8 @@ export function createConfigIO(

13951505

...createConfigFileSnapshot({

13961506

path: configPath,

13971507

exists: true,

1398-

raw: effectiveRaw,

1399-

parsed: effectiveParsed,

1508+

raw: snapshotRaw,

1509+

parsed: snapshotParsed,

14001510

sourceConfig: {},

14011511

valid: true,

14021512

runtimeConfig: {},

@@ -1424,8 +1534,8 @@ export function createConfigIO(

14241534

...createConfigFileSnapshot({

14251535

path: configPath,

14261536

exists: true,

1427-

raw: effectiveRaw,

1428-

parsed: effectiveParsed,

1537+

raw: snapshotRaw,

1538+

parsed: snapshotParsed,

14291539

sourceConfig: coerceConfig(effectiveConfigRaw),

14301540

valid: false,

14311541

runtimeConfig: coerceConfig(effectiveConfigRaw),

@@ -1457,8 +1567,8 @@ export function createConfigIO(

14571567

...createConfigFileSnapshot({

14581568

path: configPath,

14591569

exists: true,

1460-

raw: effectiveRaw,

1461-

parsed: effectiveParsed,

1570+

raw: snapshotRaw,

1571+

parsed: snapshotParsed,

14621572

sourceConfig: coerceConfig(effectiveConfigRaw),

14631573

valid: true,

14641574

runtimeConfig: cfg,

@@ -1594,10 +1704,19 @@ export function createConfigIO(

1594170415951705

const resolvedConfigRaw = readResolution.resolvedConfigRaw;

15961706

const legacyResolution = resolveLegacyConfigForRead(resolvedConfigRaw, effectiveParsed);

1597-

const effectiveConfigRaw = migrateAndStripShippedPluginInstallConfigRecords(

1707+

const installMigration = migrateAndStripShippedPluginInstallConfigRecords(

15981708

legacyResolution.effectiveConfigRaw,

1599-

{ persist: options.persistShippedPluginInstallMigration !== false },

1709+

{

1710+

persist: options.persistShippedPluginInstallMigration !== false,

1711+

rootConfigRaw: effectiveParsed,

1712+

},

16001713

);

1714+

const effectiveConfigRaw = installMigration.config;

1715+

const snapshotRaw = installMigration.persistedRootRaw ?? effectiveRaw;

1716+

const snapshotParsed = installMigration.persistedRootParsed ?? effectiveParsed;

1717+

const snapshotHash = installMigration.persistedRootRaw

1718+

? hashConfigRaw(installMigration.persistedRootRaw)

1719+

: hash;

16011720

fallbackSourceConfig = coerceConfig(effectiveConfigRaw);

16021721

const validated = validateConfigObjectWithPlugins(effectiveConfigRaw, {

16031722

env: deps.env,

@@ -1608,12 +1727,12 @@ export function createConfigIO(

16081727

snapshot: createConfigFileSnapshot({

16091728

path: configPath,

16101729

exists: true,

1611-

raw: effectiveRaw,

1612-

parsed: effectiveParsed,

1730+

raw: snapshotRaw,

1731+

parsed: snapshotParsed,

16131732

sourceConfig: coerceConfig(effectiveConfigRaw),

16141733

valid: false,

16151734

runtimeConfig: coerceConfig(effectiveConfigRaw),

1616-

hash,

1735+

hash: snapshotHash,

16171736

issues: validated.issues,

16181737

warnings: [...validated.warnings, ...envVarWarnings],

16191738

legacyIssues: legacyResolution.sourceLegacyIssues,

@@ -1627,14 +1746,14 @@ export function createConfigIO(

16271746

snapshot: createConfigFileSnapshot({

16281747

path: configPath,

16291748

exists: true,

1630-

raw: effectiveRaw,

1631-

parsed: effectiveParsed,

1749+

raw: snapshotRaw,

1750+

parsed: snapshotParsed,

16321751

// Use resolvedConfigRaw (after $include and ${ENV} substitution but BEFORE runtime defaults)

16331752

// for config set/unset operations (issue #6070)

16341753

sourceConfig: coerceConfig(effectiveConfigRaw),

16351754

valid: true,

16361755

runtimeConfig: snapshotConfig,

1637-

hash,

1756+

hash: snapshotHash,

16381757

issues: [],

16391758

warnings: [...validated.warnings, ...envVarWarnings],

16401759

legacyIssues: legacyResolution.sourceLegacyIssues,