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

推荐订阅源

Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
V
V2EX
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
Jina AI
Jina AI
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
B
Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

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(upgrade): unlink stale plugin runtime symlinks · open...
vincentkoc · 2026-05-04 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

3838

- Agents/network: allow trusted web-search providers and configured model-provider hosts to work behind Surge/Clash/sing-box fake-IP DNS by accepting RFC 2544 and IPv6 ULA synthetic answers only for the request's scoped hostname, without broad private-network access. Refs #76530 and #76549. Thanks @zqchris.

3939

- Providers: honor env-proxy settings for guarded provider model fetches when no explicit dispatcher policy is configured, preserving explicit transport overrides. Fixes #70453. (#72480) Thanks @mjamiv.

4040

- Feishu: accept and honor `channels.feishu.blockStreaming` at the top level and per account, while keeping the legacy default off so Feishu cards no longer reject documented config or silently drop block replies. Fixes #75555. Thanks @vincentkoc.

41-

- Gateway/update: avoid `launchctl kickstart -k` immediately after fresh macOS update bootstraps, and remove dangling global plugin-runtime symlinks during packaged postinstall and `doctor --fix` so upgrades no longer SIGTERM the newly booted Gateway or leave bundled plugin imports pointed at pruned `plugin-runtime-deps` trees. Completes #76261 and fixes #76466. (#76929)

41+

- Gateway/update: avoid `launchctl kickstart -k` immediately after fresh macOS update bootstraps, and unlink dangling global plugin-runtime symlinks during packaged postinstall and `doctor --fix` so upgrades no longer SIGTERM the newly booted Gateway or leave bundled plugin imports pointed at pruned `plugin-runtime-deps` trees. Completes #76261 and fixes #76466. (#76929)

4242

- Google Chat: normalize custom Google auth transport headers before google-auth/gaxios interceptors run, restoring webhook token verification when certificate retrieval expects Fetch `Headers`. Fixes #76742. Thanks @donbowman.

4343

- Doctor/plugins: reset stale `plugins.slots.memory` and `plugins.slots.contextEngine` references during `doctor --fix`, so cleanup of missing plugin config does not leave unrecoverable slot owners behind. Fixes #76550 and #76551. Thanks @vincentkoc.

4444

- Docs/WhatsApp: merge the duplicate top-level `web` objects in the gateway channel config example so copy-pasted WhatsApp config keeps both `web.whatsapp` and reconnect settings. Fixes #76619. Thanks @WadydX.

Original file line numberDiff line numberDiff line change

@@ -445,14 +445,15 @@ function collectLegacyPluginRuntimeDepsSymlinkPaths(roots, params = {}) {

445445

export function pruneLegacyPluginRuntimeDepsState(params = {}) {

446446

const pathExists = params.existsSync ?? existsSync;

447447

const removePath = params.rmSync ?? rmSync;

448+

const unlinkPath = params.unlinkSync ?? unlinkSync;

448449

const log = params.log ?? console;

449450

const removed = [];

450451

const removedSymlinks = [];

451452

const roots = collectLegacyPluginRuntimeDepsStateRoots(params);

452453
453454

for (const linkPath of collectLegacyPluginRuntimeDepsSymlinkPaths(roots, params)) {

454455

try {

455-

removePath(linkPath, { force: true });

456+

unlinkPath(linkPath);

456457

removedSymlinks.push(linkPath);

457458

} catch (error) {

458459

log.warn?.(

@@ -889,7 +890,10 @@ export function runBundledPluginPostinstall(params = {}) {

889890

env,

890891

packageRoot,

891892

existsSync: pathExists,

893+

lstatSync: params.lstatSync,

894+

readlinkSync: params.readlinkSync,

892895

rmSync: params.rmSync,

896+

unlinkSync: params.unlinkSync,

893897

log,

894898

homedir: params.homedir,

895899

});

Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ interface FsLike {

1212

readlink(file: string): Promise<string>;

1313

stat(file: string): Promise<unknown>;

1414

rm(file: string, options: { force: true }): Promise<void>;

15+

unlink?(file: string): Promise<void>;

1516

}

1617
1718

interface DirentLike {

@@ -41,6 +42,7 @@ const DEFAULT_FS: FsLike = {

4142

readlink: (file) => fs.readlink(file),

4243

stat: (file) => fs.stat(file),

4344

rm: (file, options) => fs.rm(file, options),

45+

unlink: (file) => fs.unlink(file),

4446

};

4547
4648

export async function collectStalePluginRuntimeSymlinks(

@@ -126,7 +128,11 @@ export async function removeStalePluginRuntimeSymlinks(

126128

const warnings: string[] = [];

127129

for (const item of await collectStalePluginRuntimeSymlinks(packageRoot, options)) {

128130

try {

129-

await fsApi.rm(item.path, { force: true });

131+

if (fsApi.unlink) {

132+

await fsApi.unlink(item.path);

133+

} else {

134+

await fsApi.rm(item.path, { force: true });

135+

}

130136

changes.push(`Removed stale plugin-runtime symlink: ${item.path}`);

131137

} catch (error) {

132138

warnings.push(`Failed to remove stale plugin-runtime symlink ${item.path}: ${String(error)}`);