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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Recent Announcements
Recent Announcements
Vercel News
Vercel News
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Help Net Security
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
G
Google Developers Blog
罗磊的独立博客
爱范儿
爱范儿
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research

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 update compatibility host during release up...
steipete · 2026-05-21 · via Recent Commits to openclaw:main

@@ -1209,9 +1209,8 @@ describe("repairMissingConfiguredPluginInstalls", () => {

12091209

});

12101210

});

121112111212-

it("prefers npm over ClawHub during post-core repair", async () => {

1212+

it("passes the post-core compatibility host version to ClawHub repair", async () => {

12131213

const npmRoot = makeTempDir();

1214-

const packageDir = path.join(npmRoot, "node_modules", "@openclaw", "whatsapp");

12151214

mocks.resolveDefaultPluginNpmDir.mockReturnValue(npmRoot);

12161215

mocks.listChannelPluginCatalogEntries.mockReturnValue([

12171216

{

@@ -1225,20 +1224,23 @@ describe("repairMissingConfiguredPluginInstalls", () => {

12251224

},

12261225

]);

12271226

mocks.installPluginFromClawHub.mockResolvedValue({

1228-

ok: false,

1229-

error: 'Plugin "@openclaw/whatsapp" requires plugin API >=2026.5.18.',

1230-

});

1231-

mocks.installPluginFromNpmSpec.mockResolvedValue({

12321227

ok: true,

12331228

pluginId: "whatsapp",

1234-

targetDir: packageDir,

1229+

targetDir: "/tmp/openclaw-plugins/whatsapp",

12351230

version: "1.2.3",

1236-

npmResolution: {

1237-

name: "@openclaw/whatsapp",

1231+

clawhub: {

1232+

source: "clawhub",

1233+

clawhubUrl: "https://clawhub.ai",

1234+

clawhubPackage: "@openclaw/whatsapp",

1235+

clawhubFamily: "code-plugin",

1236+

clawhubChannel: "official",

12381237

version: "1.2.3",

1239-

resolvedSpec: "@openclaw/whatsapp@1.2.3",

1240-

integrity: "sha512-whatsapp",

1238+

integrity: "sha256-whatsapp",

12411239

resolvedAt: "2026-05-01T00:00:00.000Z",

1240+

clawpackSha256: "2".repeat(64),

1241+

clawpackSpecVersion: 1,

1242+

clawpackManifestSha256: "3".repeat(64),

1243+

clawpackSize: 1234,

12421244

},

12431245

});

12441246

@@ -1256,18 +1258,27 @@ describe("repairMissingConfiguredPluginInstalls", () => {

12561258

},

12571259

},

12581260

env: {

1261+

OPENCLAW_COMPATIBILITY_HOST_VERSION: "2026.5.19",

12591262

OPENCLAW_UPDATE_POST_CORE_CONVERGENCE: "1",

12601263

},

12611264

});

126212651263-

expect(mocks.installPluginFromClawHub).not.toHaveBeenCalled();

1264-

expectRecordFields(mockCallArg(mocks.installPluginFromNpmSpec), {

1265-

spec: expectedNpmInstallSpec("@openclaw/whatsapp"),

1266-

npmDir: npmRoot,

1266+

expectRecordFields(mockCallArg(mocks.installPluginFromClawHub), {

1267+

spec: "clawhub:@openclaw/whatsapp",

1268+

env: {

1269+

OPENCLAW_COMPATIBILITY_HOST_VERSION: "2026.5.19",

1270+

OPENCLAW_UPDATE_POST_CORE_CONVERGENCE: "1",

1271+

},

12671272

mode: "install",

12681273

});

1274+

expect(mocks.installPluginFromNpmSpec).not.toHaveBeenCalled();

12691275

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

1270-

expect(result.records.whatsapp?.installPath).toBe(packageDir);

1276+

expectRecordFields(result.records.whatsapp, {

1277+

source: "clawhub",

1278+

spec: "clawhub:@openclaw/whatsapp",

1279+

installPath: "/tmp/openclaw-plugins/whatsapp",

1280+

clawhubPackage: "@openclaw/whatsapp",

1281+

});

12711282

});

1272128312731284

it("repairs missing external payload during post-core convergence even with OPENCLAW_UPDATE_IN_PROGRESS=1", async () => {