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

推荐订阅源

IT之家
IT之家
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
小众软件
小众软件
F
Fortinet All Blogs
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
有赞技术团队
有赞技术团队
J
Java Code Geeks
WordPress大学
WordPress大学
The Cloudflare 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
test(scripts): gate runtime sidecar baseline changes · op...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -423,6 +423,13 @@ const PLUGIN_SDK_ENTRY_METADATA_TEST_TARGETS = [

423423

"test/scripts/ts-topology.test.ts",

424424

TOOLING_VITEST_CONFIG,

425425

];

426+

const RUNTIME_SIDECAR_BASELINE_OWNER_TEST_TARGETS = ["src/plugins/bundled-plugin-metadata.test.ts"];

427+

const RUNTIME_SIDECAR_PATH_CONSUMER_TEST_TARGETS = [

428+

...RUNTIME_SIDECAR_BASELINE_OWNER_TEST_TARGETS,

429+

"src/infra/update-global.test.ts",

430+

"src/infra/update-runner.test.ts",

431+

"test/openclaw-npm-postpublish-verify.test.ts",

432+

];

426433

const OFFICIAL_EXTERNAL_CATALOG_TEST_TARGETS = [

427434

"src/plugins/official-external-plugin-catalog.test.ts",

428435

"test/release-check.test.ts",

@@ -663,6 +670,10 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

663670

["scripts/check-deadcode-unused-files.mjs", ["test/scripts/check-deadcode-unused-files.test.ts"]],

664671

["scripts/check-dynamic-import-warts.mjs", ["test/scripts/check-dynamic-import-warts.test.ts"]],

665672

["scripts/generate-prompt-snapshots.ts", ["test/scripts/prompt-snapshots.test.ts"]],

673+

[

674+

"scripts/generate-runtime-sidecar-paths-baseline.ts",

675+

RUNTIME_SIDECAR_BASELINE_OWNER_TEST_TARGETS,

676+

],

666677

[

667678

"scripts/lib/config-boundary-guard.mjs",

668679

[

@@ -978,15 +989,7 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

978989

"scripts/lib/bundled-plugin-source-utils.mjs",

979990

["test/scripts/bundled-plugin-source-utils.test.ts"],

980991

],

981-

[

982-

"scripts/lib/bundled-runtime-sidecar-paths.json",

983-

[

984-

"src/plugins/bundled-plugin-metadata.test.ts",

985-

"src/infra/update-global.test.ts",

986-

"src/infra/update-runner.test.ts",

987-

"test/openclaw-npm-postpublish-verify.test.ts",

988-

],

989-

],

992+

["scripts/lib/bundled-runtime-sidecar-paths.json", RUNTIME_SIDECAR_PATH_CONSUMER_TEST_TARGETS],

990993

["scripts/lib/changed-extensions.mjs", ["test/scripts/test-extension.test.ts"]],

991994

["scripts/lib/dev-tooling-safety.ts", ["test/scripts/dev-tooling-safety.test.ts"]],

992995

[

@@ -1869,6 +1872,8 @@ const SOURCE_TEST_TARGETS = new Map([

18691872

"test/helpers/agents/happy-path-prompt-snapshots.ts",

18701873

HAPPY_PATH_PROMPT_SNAPSHOT_HELPER_TEST_TARGETS,

18711874

],

1875+

["src/plugins/runtime-sidecar-paths-baseline.ts", RUNTIME_SIDECAR_BASELINE_OWNER_TEST_TARGETS],

1876+

["src/plugins/runtime-sidecar-paths.ts", RUNTIME_SIDECAR_PATH_CONSUMER_TEST_TARGETS],

18721877

["ui/config/control-ui-chunking.ts", ["ui/src/ui/control-ui-chunking.test.ts"]],

18731878

[

18741879

"src/plugin-sdk/test-helpers/directory-ids.ts",