Files
copilotkit__copilotkit/scripts/release/publish-release.ts
T
Benjamin Taylor 461bb17913 fix(release): scope the AI notes prompt to the lane being released
The generator fed the model a repo-wide `git log -50` as context and told it
it was writing notes for "CopilotKit vX.Y.Z, an open-source AI agent framework
for React applications" — wrong on three counts for an angular or channels
release: the wrong commits, the wrong framing, and the wrong release title
(only the monorepo lane is titled `vX.Y.Z`).

Pass the scope through, build context from that lane's own commits, name the
packages actually being published, and tell the model to write about nothing
else.

Also fix the API call itself: the pinned model string was a dated snapshot,
max_tokens 2048 could truncate a large release, and the response reader took
content[0].text — which is not the text block on models that return thinking
blocks first.
2026-09-09 08:31:00 -05:00

217 lines
7.3 KiB
TypeScript

/**
* Publish a stable release (runs after merge of a release PR).
*
* 1. Reads the scope and current version from package.json (already bumped by the release PR)
* 3. Publishes pre-built packages to npm with "latest" tag
* 4. Outputs the version for downstream steps (git tag, GitHub Release)
*
* NOTE: Build is handled by the separate CI build job (no publish secrets).
* This script receives pre-built artifacts and only performs the publish step.
*
* Env vars:
* GITHUB_OUTPUT — CI output file
*
* Auth: Uses npm OIDC trusted publishers (id-token: write) via the pinned npm 11
* resolved by lib/npm-cli.ts.
* No NPM_TOKEN needed — NODE_AUTH_TOKEN must be empty to avoid blocking OIDC.
*
* Usage: tsx scripts/release/publish-release.ts --scope <scope from release.config.json>
*/
import fs from "fs";
import path from "path";
import { spawnSync } from "child_process";
import {
getCurrentVersion,
getPackagesForScope,
parseSemver,
} from "./lib/versions.js";
import { ROOT, getScopeConfig, loadConfig } from "./lib/config.js";
import type { ReleaseScope } from "./lib/config.js";
import { emitGithubOutputs } from "./lib/github-output.js";
import { resolvePublishNpm } from "./lib/npm-cli.js";
type PublishPhase = "all" | "dependencies" | "umbrella";
function run(cmd: string, args: string[], opts?: { cwd?: string }) {
const result = spawnSync(cmd, args, {
cwd: opts?.cwd ?? ROOT,
stdio: "inherit",
encoding: "utf8",
});
if (result.status !== 0) {
throw new Error(`Command failed: ${cmd} ${args.join(" ")}`);
}
return result;
}
function getPublishedVersion(packageName: string): string | null {
const result = spawnSync("npm", ["view", packageName, "version"], {
encoding: "utf8",
timeout: 15000,
});
if (result.status === 0) {
return result.stdout.trim() || null;
}
// E404 means package doesn't exist on registry — genuinely not published
if (
result.stderr?.includes("E404") ||
result.stderr?.includes("is not in this registry")
) {
return null;
}
// Any other error (network, auth, rate limit) should stop the release
throw new Error(
`npm registry check failed for ${packageName}: ${result.stderr?.trim() || "unknown error"}`,
);
}
function isGreaterVersion(next: string, current: string): boolean {
const a = parseSemver(next);
const b = parseSemver(current);
if (a.major !== b.major) return a.major > b.major;
if (a.minor !== b.minor) return a.minor > b.minor;
return a.patch > b.patch;
}
// Valid scopes come from release.config.json — the single source of truth.
const VALID_SCOPES = Object.keys(loadConfig().scopes);
async function main() {
const argv = process.argv.slice(2);
const scopeIdx = argv.indexOf("--scope");
const scope = (
scopeIdx !== -1 ? argv[scopeIdx + 1] : null
) as ReleaseScope | null;
const phaseIdx = argv.indexOf("--phase");
const phase = (phaseIdx !== -1 ? argv[phaseIdx + 1] : "all") as
| PublishPhase
| undefined;
if (!scope || !VALID_SCOPES.includes(scope)) {
console.error(
`Usage: publish-release.ts --scope <${VALID_SCOPES.join("|")}>`,
);
process.exit(1);
}
if (!phase || !["all", "dependencies", "umbrella"].includes(phase)) {
console.error("Usage: --phase <all|dependencies|umbrella>");
process.exit(1);
}
if (scope !== "channels" && phase !== "all") {
console.error(
`Publish phase ${phase} is only valid for the channels scope.`,
);
process.exit(1);
}
const version = getCurrentVersion(scope);
const scopeConfig = getScopeConfig(scope);
// Resolve packages before any version/registry safety checks so that a
// misconfigured scope fails with a clear "no packages" error instead of a
// misleading "not greater than published" one.
const packages = getPackagesForScope(scope);
if (packages.length === 0) {
console.error(
`No packages found for scope "${scope}" — refusing to emit a version for a publish that did nothing.`,
);
process.exit(1);
}
const packagesToPublish =
phase === "dependencies"
? packages.filter((pkg) => pkg.name !== scopeConfig.versionSource)
: phase === "umbrella"
? packages.filter((pkg) => pkg.name === scopeConfig.versionSource)
: packages;
if (packagesToPublish.length === 0) {
console.error(
`No packages found for publish phase ${phase} in scope ${scope}.`,
);
process.exit(1);
}
console.log(`Scope: ${scope}`);
console.log(`Publishing version: ${version}`);
console.log(`Publish phase: ${phase}`);
// Safety check: only allow clean semver (no prerelease suffixes like -canary.123)
const v = parseSemver(version);
if (v.prerelease) {
console.error(
`Refusing to publish: ${version} contains a prerelease suffix. ` +
`Stable releases must be clean semver (e.g. 1.55.3).`,
);
process.exit(1);
}
// Safety check: refuse to publish if version isn't greater than what's on npm
let published: string | null;
try {
published = getPublishedVersion(scopeConfig.versionSource);
} catch (err: any) {
console.error(
`Registry check failed — aborting release to avoid publishing over an existing version.`,
);
console.error(err.message);
process.exit(1);
}
if (published) {
console.log(`Currently published version: ${published}`);
if (!isGreaterVersion(version, published)) {
console.error(
`Refusing to publish: ${version} is not greater than the currently published ${published}.`,
);
process.exit(1);
}
}
// NOTE: Build is handled by the CI build job (no secrets).
// The publish job receives pre-built artifacts via download-artifact.
// We intentionally do NOT rebuild here to keep NPM_TOKEN out of the
// build process tree.
// Publish each package in scope.
// Uses pnpm pack (workspace-aware) + the pinned npm 11 publish (OIDC-aware).
// npm 11 uses GitHub Actions OIDC tokens for auth when id-token: write
// is granted, eliminating the need for long-lived NPM_TOKEN secrets.
// Skips packages already published at this version (idempotent retries).
//
// The npm CLI is resolved ONCE up front rather than via `npx npm@<v>` per
// package — see lib/npm-cli.ts for the measured cost of the old approach.
const npmBin = resolvePublishNpm();
console.log("\nPublishing packages...");
let skipped = 0;
for (const p of packagesToPublish) {
const pubVersion = getPublishedVersion(p.name);
if (pubVersion === version) {
console.log(` Skipping ${p.name}@${version} (already published)`);
skipped++;
continue;
}
console.log(` Publishing ${p.name}@${version}...`);
run("pnpm", ["pack"], { cwd: p.dir });
const tarball = `${p.name.replace("@", "").replace("/", "-")}-${version}.tgz`;
run(npmBin, ["publish", tarball, "--tag", "latest", "--access", "public"], {
cwd: p.dir,
});
}
if (skipped > 0) {
console.log(`\n${skipped} package(s) skipped (already at ${version}).`);
}
if (phase === "dependencies") {
console.log(`\nRelease dependencies published: ${version} (${scope})`);
} else {
// Output version for downstream tag/release steps only after the final
// package in the scope has been published.
emitGithubOutputs({ version, scope });
console.log(`\nRelease published: ${version} (${scope})`);
}
}
main().catch((err) => {
console.error(err);
process.exit(1);
});