76b5208b11
Docker Release / build-amd64 (push) Failing after 36s
Workflow Sanity / no-tabs (push) Failing after 31s
CI / install-check (push) Has been cancelled
CI / checks (bunx tsc -p tsconfig.json --noEmit false, bun, build) (push) Has been cancelled
CI / checks (pnpm build, node, build) (push) Has been cancelled
CI / checks (pnpm canvas:a2ui:bundle && bunx vitest run, bun, test) (push) Has been cancelled
CI / checks (pnpm canvas:a2ui:bundle && pnpm test, node, test) (push) Has been cancelled
CI / checks (pnpm format, node, format) (push) Has been cancelled
CI / checks (pnpm lint, node, lint) (push) Has been cancelled
CI / checks (pnpm protocol:check, node, protocol) (push) Has been cancelled
CI / checks (pnpm tsgo, node, tsgo) (push) Has been cancelled
CI / secrets (push) Has been cancelled
CI / checks-windows (pnpm build, node, build) (push) Has been cancelled
CI / checks-windows (pnpm canvas:a2ui:bundle && pnpm test, node, test) (push) Has been cancelled
CI / checks-windows (pnpm lint, node, lint) (push) Has been cancelled
CI / checks-windows (pnpm protocol:check, node, protocol) (push) Has been cancelled
CI / checks-macos (pnpm test, test) (push) Has been cancelled
CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift build --package-path apps/macos --configuration release; then
exit 0
fi
echo "swift build failed (attempt $attempt/3). Retrying…"
sleep $((attempt * 20))
done
exit 1
, build) (push) Has been cancelled
CI / macos-app (set -euo pipefail
for attempt in 1 2 3; do
if swift test --package-path apps/macos --parallel --enable-code-coverage --show-codecov-path; then
exit 0
fi
echo "swift test failed (attempt $attempt/3). Retrying…"
sleep $((attempt *… (push) Has been cancelled
CI / macos-app (swiftlint --config .swiftlint.yml
swiftformat --lint apps/macos/Sources --config .swiftformat
, lint) (push) Has been cancelled
CI / ios (push) Has been cancelled
CI / android (./gradlew --no-daemon :app:assembleDebug, build) (push) Has been cancelled
CI / android (./gradlew --no-daemon :app:testDebugUnitTest, test) (push) Has been cancelled
Docker Release / build-arm64 (push) Has been cancelled
Docker Release / create-manifest (push) Has been cancelled
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import { existsSync, readdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
import { join, resolve } from "node:path";
|
|
|
|
type PackageJson = {
|
|
name?: string;
|
|
version?: string;
|
|
};
|
|
|
|
const root = resolve(".");
|
|
const rootPackagePath = resolve("package.json");
|
|
const rootPackage = JSON.parse(readFileSync(rootPackagePath, "utf8")) as PackageJson;
|
|
const targetVersion = rootPackage.version;
|
|
|
|
if (!targetVersion) {
|
|
throw new Error("Root package.json missing version.");
|
|
}
|
|
|
|
const extensionsDir = resolve("extensions");
|
|
const dirs = readdirSync(extensionsDir, { withFileTypes: true }).filter((entry) =>
|
|
entry.isDirectory(),
|
|
);
|
|
|
|
const updated: string[] = [];
|
|
const changelogged: string[] = [];
|
|
const skipped: string[] = [];
|
|
|
|
function ensureChangelogEntry(changelogPath: string, version: string): boolean {
|
|
if (!existsSync(changelogPath)) return false;
|
|
const content = readFileSync(changelogPath, "utf8");
|
|
if (content.includes(`## ${version}`)) return false;
|
|
const entry = `## ${version}\n\n### Changes\n- Version alignment with core OpenClaw release numbers.\n\n`;
|
|
if (content.startsWith("# Changelog\n\n")) {
|
|
const next = content.replace("# Changelog\n\n", `# Changelog\n\n${entry}`);
|
|
writeFileSync(changelogPath, next);
|
|
return true;
|
|
}
|
|
const next = `# Changelog\n\n${entry}${content.trimStart()}`;
|
|
writeFileSync(changelogPath, `${next}\n`);
|
|
return true;
|
|
}
|
|
|
|
for (const dir of dirs) {
|
|
const packagePath = join(extensionsDir, dir.name, "package.json");
|
|
let pkg: PackageJson;
|
|
try {
|
|
pkg = JSON.parse(readFileSync(packagePath, "utf8")) as PackageJson;
|
|
} catch {
|
|
continue;
|
|
}
|
|
|
|
if (!pkg.name) {
|
|
skipped.push(dir.name);
|
|
continue;
|
|
}
|
|
|
|
const changelogPath = join(extensionsDir, dir.name, "CHANGELOG.md");
|
|
if (ensureChangelogEntry(changelogPath, targetVersion)) {
|
|
changelogged.push(pkg.name);
|
|
}
|
|
|
|
if (pkg.version === targetVersion) {
|
|
skipped.push(pkg.name);
|
|
continue;
|
|
}
|
|
|
|
pkg.version = targetVersion;
|
|
writeFileSync(packagePath, `${JSON.stringify(pkg, null, 2)}\n`);
|
|
updated.push(pkg.name);
|
|
}
|
|
|
|
console.log(
|
|
`Synced plugin versions to ${targetVersion}. Updated: ${updated.length}. Changelogged: ${changelogged.length}. Skipped: ${skipped.length}.`,
|
|
);
|