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

推荐订阅源

M
MIT News - Artificial intelligence
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - Franky
腾讯CDC
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium
量子位
Jina AI
Jina AI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 叶小钗
D
Docker
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss

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(ci): scope changed shrinkwrap checks · openclaw/openc...
vincentkoc · 2026-05-23 · via Recent Commits to openclaw:main

@@ -5,13 +5,14 @@ import { tmpdir } from "node:os";

55

import path from "node:path";

66

import { fileURLToPath } from "node:url";

77

import { parse as parseYaml } from "yaml";

8+

import { listChangedPathsFromGit, listStagedChangedPaths } from "./changed-lanes.mjs";

89910

const ROOT_DIR = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");

1011

const EXACT_VERSION_PATTERN = /^\d+\.\d+\.\d+(?:[-+][0-9A-Za-z.-]+)?$/u;

11121213

function usage() {

1314

return [

14-

"Usage: node scripts/generate-npm-shrinkwrap.mjs [--check] [--all|--plugins|--package-dir <dir>]",

15+

"Usage: node scripts/generate-npm-shrinkwrap.mjs [--check] [--all|--plugins|--changed|--package-dir <dir>] [--base <ref>] [--head <ref>] [--staged]",

1516

" default: root package only",

1617

].join("\n");

1718

}

@@ -81,11 +82,10 @@ function readPnpmLockPackages() {

8182

);

8283

}

838484-

function readPnpmLockSingleVersionOverrides() {

85-

const lockfile = parseYaml(readFileSync(path.join(ROOT_DIR, "pnpm-lock.yaml"), "utf8"));

85+

function collectPnpmLockPackageVersions(lockfile) {

8686

const packages = lockfile?.packages;

8787

if (!packages || typeof packages !== "object" || Array.isArray(packages)) {

88-

throw new Error("pnpm-lock.yaml is missing package resolution data.");

88+

return new Map();

8989

}

9090

const versionsByName = new Map();

9191

for (const packageKey of Object.keys(packages)) {

@@ -97,6 +97,15 @@ function readPnpmLockSingleVersionOverrides() {

9797

versions.add(parsed.version);

9898

versionsByName.set(parsed.name, versions);

9999

}

100+

return versionsByName;

101+

}

102+103+

function readPnpmLockSingleVersionOverrides() {

104+

const lockfile = parseYaml(readFileSync(path.join(ROOT_DIR, "pnpm-lock.yaml"), "utf8"));

105+

const versionsByName = collectPnpmLockPackageVersions(lockfile);

106+

if (versionsByName.size === 0) {

107+

throw new Error("pnpm-lock.yaml is missing package resolution data.");

108+

}

100109

return Object.fromEntries(

101110

[...versionsByName.entries()]

102111

.filter(([, versions]) => versions.size === 1)

@@ -105,6 +114,10 @@ function readPnpmLockSingleVersionOverrides() {

105114

);

106115

}

107116117+

function setKey(values) {

118+

return [...values].toSorted((left, right) => left.localeCompare(right)).join("\0");

119+

}

120+108121

function mergeOverrides(packageOverrides, workspaceOverrides, pnpmLockOverrides) {

109122

const merged = normalizeOverrides(packageOverrides);

110123

for (const [name, spec] of [

@@ -113,9 +126,7 @@ function mergeOverrides(packageOverrides, workspaceOverrides, pnpmLockOverrides)

113126

]) {

114127

const current = merged[name];

115128

if (current !== undefined && JSON.stringify(current) !== JSON.stringify(spec)) {

116-

throw new Error(

117-

`package.json overrides.${name} conflicts with pnpm lock policy for ${name}`,

118-

);

129+

throw new Error(`package.json overrides.${name} conflicts with pnpm lock policy for ${name}`);

119130

}

120131

merged[name] = spec;

121132

}

@@ -394,21 +405,86 @@ function listPublishablePluginPackageDirs() {

394405

.toSorted((left, right) => left.localeCompare(right));

395406

}

396407408+

function shrinkwrapPackageDirsForChangedPaths(changedPaths) {

409+

const packageDirs = new Set();

410+

const publishablePluginPackageDirs = new Set(listPublishablePluginPackageDirs());

411+

let hasAmbiguousDependencyPolicyChange = false;

412+

let hasLockfileChange = false;

413+414+

for (const rawPath of changedPaths) {

415+

const changedPath = String(rawPath ?? "")

416+

.trim()

417+

.replaceAll("\\", "/")

418+

.replace(/^\.\/+/u, "");

419+

if (!changedPath) {

420+

continue;

421+

}

422+

if (changedPath === "package.json" || changedPath === "npm-shrinkwrap.json") {

423+

packageDirs.add(ROOT_DIR);

424+

continue;

425+

}

426+

const extensionMatch = changedPath.match(

427+

/^(extensions\/[^/]+)\/(?:package\.json|npm-shrinkwrap\.json)$/u,

428+

);

429+

if (extensionMatch && publishablePluginPackageDirs.has(extensionMatch[1])) {

430+

packageDirs.add(path.resolve(ROOT_DIR, extensionMatch[1]));

431+

continue;

432+

}

433+

if (changedPath === "pnpm-lock.yaml") {

434+

hasLockfileChange = true;

435+

continue;

436+

}

437+

if (

438+

changedPath === "pnpm-workspace.yaml" ||

439+

changedPath === "scripts/generate-npm-shrinkwrap.mjs"

440+

) {

441+

hasAmbiguousDependencyPolicyChange = true;

442+

}

443+

}

444+445+

if (hasAmbiguousDependencyPolicyChange) {

446+

return [

447+

ROOT_DIR,

448+

...listPublishablePluginPackageDirs().map((dir) => path.resolve(ROOT_DIR, dir)),

449+

];

450+

}

451+452+

if (hasLockfileChange) {

453+

return [

454+

ROOT_DIR,

455+

...listPublishablePluginPackageDirs().map((dir) => path.resolve(ROOT_DIR, dir)),

456+

];

457+

}

458+

return [...packageDirs].toSorted((left, right) =>

459+

packageLabel(left).localeCompare(packageLabel(right)),

460+

);

461+

}

462+397463

function resolvePackageDirs(args) {

398464

const packageDirs = [];

399465

const check = args.includes("--check");

400466

const all = args.includes("--all");

401467

const plugins = args.includes("--plugins");

468+

const changed = args.includes("--changed");

469+

const staged = args.includes("--staged");

402470

const packageDirIndex = args.indexOf("--package-dir");

403-

if (packageDirIndex !== -1 && (all || plugins)) {

404-

throw new Error("--package-dir cannot be combined with --all or --plugins.");

471+

const baseIndex = args.indexOf("--base");

472+

const headIndex = args.indexOf("--head");

473+

if (packageDirIndex !== -1 && (all || plugins || changed)) {

474+

throw new Error("--package-dir cannot be combined with --all, --plugins, or --changed.");

405475

}

406-

if (all && plugins) {

407-

throw new Error("--all cannot be combined with --plugins.");

476+

if ([all, plugins, changed].filter(Boolean).length > 1) {

477+

throw new Error("--all, --plugins, and --changed cannot be combined.");

408478

}

409479

for (let index = 0; index < args.length; index += 1) {

410480

const arg = args[index];

411-

if (arg === "--check" || arg === "--all" || arg === "--plugins") {

481+

if (

482+

arg === "--check" ||

483+

arg === "--all" ||

484+

arg === "--plugins" ||

485+

arg === "--changed" ||

486+

arg === "--staged"

487+

) {

412488

continue;

413489

}

414490

if (arg === "--package-dir") {

@@ -420,9 +496,21 @@ function resolvePackageDirs(args) {

420496

index += 1;

421497

continue;

422498

}

499+

if (arg === "--base" || arg === "--head") {

500+

const value = args[index + 1];

501+

if (!value || value.startsWith("--")) {

502+

throw new Error(`${arg} requires a git ref.`);

503+

}

504+

index += 1;

505+

continue;

506+

}

423507

throw new Error(usage());

424508

}

425509510+

if (!changed && (baseIndex !== -1 || headIndex !== -1 || staged)) {

511+

throw new Error("--base, --head, and --staged require --changed.");

512+

}

513+426514

if (all) {

427515

return {

428516

check,

@@ -438,6 +526,20 @@ function resolvePackageDirs(args) {

438526

packageDirs: listPublishablePluginPackageDirs().map((dir) => path.resolve(ROOT_DIR, dir)),

439527

};

440528

}

529+

if (changed) {

530+

const base = baseIndex === -1 ? "origin/main" : args[baseIndex + 1];

531+

const head = headIndex === -1 ? "HEAD" : args[headIndex + 1];

532+

const changedPaths = staged

533+

? listStagedChangedPaths()

534+

: listChangedPathsFromGit({

535+

base,

536+

head,

537+

});

538+

return {

539+

check,

540+

packageDirs: shrinkwrapPackageDirsForChangedPaths(changedPaths),

541+

};

542+

}

441543

return { check, packageDirs: packageDirs.length > 0 ? packageDirs : [ROOT_DIR] };

442544

}

443545

@@ -469,6 +571,10 @@ function updateOrCheckPackage(packageDir, check) {

469571470572

function main() {

471573

const { check, packageDirs } = resolvePackageDirs(process.argv.slice(2));

574+

if (packageDirs.length === 0) {

575+

process.stdout.write("No shrinkwrap-managed package changes detected.\n");

576+

return;

577+

}

472578

for (const packageDir of packageDirs) {

473579

updateOrCheckPackage(packageDir, check);

474580

}

@@ -492,4 +598,5 @@ export {

492598

normalizeNpmVersionDrift,

493599

parsePnpmPackageKey,

494600

parseLockPackagePath,

601+

shrinkwrapPackageDirsForChangedPaths,

495602

};