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

推荐订阅源

IT之家
IT之家
A
About on SuperTechFans
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
博客园 - Franky
D
Docker
Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Last Week in AI
Last Week in AI
U
Unit 42
F
Fortinet All Blogs
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
P
Proofpoint News Feed
月光博客
月光博客
G
Google Developers 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 runtime deps update from legacy symlinks · openclaw/o...
goldmar · 2026-05-01 · via Recent Commits to openclaw:main

@@ -708,6 +708,44 @@ describe("stageBundledPluginRuntimeDeps", () => {

708708

);

709709

});

710710711+

it("replaces legacy OpenClaw-owned symlinked plugin node_modules", () => {

712+

const { pluginDir, repoRoot } = createBundledPluginFixture({

713+

packageJson: {

714+

name: "@openclaw/fixture-plugin",

715+

version: "1.0.0",

716+

dependencies: { direct: "1.0.0" },

717+

openclaw: { bundle: { stageRuntimeDependencies: true } },

718+

},

719+

});

720+

const directDir = path.join(repoRoot, "node_modules", "direct");

721+

const legacyNodeModulesDir = path.join(

722+

repoRoot,

723+

".local",

724+

"bundled-plugin-runtime-deps",

725+

"fixture-plugin-1234567890abcdef",

726+

"node_modules",

727+

);

728+

const nodeModulesDir = path.join(pluginDir, "node_modules");

729+

fs.mkdirSync(directDir, { recursive: true });

730+

fs.mkdirSync(legacyNodeModulesDir, { recursive: true });

731+

fs.writeFileSync(

732+

path.join(directDir, "package.json"),

733+

'{ "name": "direct", "version": "1.0.0" }\n',

734+

"utf8",

735+

);

736+

fs.writeFileSync(path.join(directDir, "index.js"), "module.exports = 'direct';\n", "utf8");

737+

fs.writeFileSync(path.join(legacyNodeModulesDir, "legacy.js"), "module.exports = 0;\n", "utf8");

738+

fs.symlinkSync(legacyNodeModulesDir, nodeModulesDir);

739+740+

stageBundledPluginRuntimeDeps({ cwd: repoRoot });

741+742+

expect(fs.lstatSync(nodeModulesDir).isSymbolicLink()).toBe(false);

743+

expect(fs.readFileSync(path.join(nodeModulesDir, "direct", "index.js"), "utf8")).toBe(

744+

"module.exports = 'direct';\n",

745+

);

746+

expect(fs.existsSync(path.join(legacyNodeModulesDir, "legacy.js"))).toBe(true);

747+

});

748+711749

it("refuses to write a runtime deps stamp through a symlink", () => {

712750

const { repoRoot } = createBundledPluginFixture({

713751

packageJson: {