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

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
Last Week in AI
Last Week in AI
罗磊的独立博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园_首页
人人都是产品经理
人人都是产品经理
量子位
美团技术团队
The Cloudflare Blog
小众软件
小众软件
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net
博客园 - Franky

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(release): keep npm preflight pack names local · openc...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -223,10 +223,25 @@ jobs:

223223

set -euo pipefail

224224

PACK_OUTPUT="$RUNNER_TEMP/npm-pack-output.txt"

225225

npm pack --json 2>&1 | tee "$PACK_OUTPUT"

226-

PACK_PATH="$(node - "$PACK_OUTPUT" <<'NODE'

226+

PACK_NAME="$(node - "$PACK_OUTPUT" <<'NODE'

227227

const fs = require("node:fs");

228+

const path = require("node:path");

228229

const input = fs.readFileSync(process.argv[2], "utf8");

229230
231+

function resolveTarballFileName(value) {

232+

const fileName = typeof value === "string" ? value.trim() : "";

233+

if (

234+

!fileName.endsWith(".tgz") ||

235+

fileName.includes("\0") ||

236+

fileName !== path.basename(fileName) ||

237+

fileName !== path.win32.basename(fileName)

238+

) {

239+

console.error(`npm pack reported unsafe tarball filename ${JSON.stringify(fileName)}.`);

240+

process.exit(1);

241+

}

242+

return fileName;

243+

}

244+
230245

function arrayEndFrom(start) {

231246

let depth = 0;

232247

let inString = false;

@@ -266,8 +281,8 @@ jobs:

266281

try {

267282

const parsed = JSON.parse(input.slice(start, end));

268283

const first = Array.isArray(parsed) ? parsed[0] : null;

269-

if (first && typeof first.filename === "string" && first.filename) {

270-

process.stdout.write(first.filename);

284+

if (first && Object.prototype.hasOwnProperty.call(first, "filename")) {

285+

process.stdout.write(resolveTarballFileName(first.filename));

271286

process.exit(0);

272287

}

273288

} catch {

@@ -279,6 +294,7 @@ jobs:

279294

process.exit(1);

280295

NODE

281296

)"

297+

PACK_PATH="$PWD/$PACK_NAME"

282298

if [[ -z "$PACK_PATH" || ! -f "$PACK_PATH" ]]; then

283299

echo "npm pack did not produce a tarball file." >&2

284300

exit 1

@@ -290,7 +306,7 @@ jobs:

290306

else

291307

RELEASE_TAG="${RELEASE_REF}"

292308

fi

293-

TARBALL_NAME="$(basename "$PACK_PATH")"

309+

TARBALL_NAME="$PACK_NAME"

294310

TARBALL_SHA256="$(sha256sum "$PACK_PATH" | awk '{print $1}')"

295311

ARTIFACT_DIR="$RUNNER_TEMP/openclaw-npm-preflight"

296312

rm -rf "$ARTIFACT_DIR"

Original file line numberDiff line numberDiff line change

@@ -1567,6 +1567,27 @@ describe("package artifact reuse", () => {

15671567

expect(workflow).not.toContain("timeout-minutes: 360");

15681568

});

15691569
1570+

it("keeps OpenClaw npm release pack tarball paths local before preflight upload", () => {

1571+

const npmWorkflow = readFileSync(".github/workflows/openclaw-npm-release.yml", "utf8");

1572+

const packStepIndex = npmWorkflow.indexOf("- name: Pack prepared npm tarball");

1573+

const copyIndex = npmWorkflow.indexOf('cp "$PACK_PATH" "$ARTIFACT_DIR/"');

1574+

const uploadIndex = npmWorkflow.indexOf("- name: Upload prepared npm publish bundle");

1575+
1576+

expect(packStepIndex).toBeGreaterThan(-1);

1577+

expect(copyIndex).toBeGreaterThan(packStepIndex);

1578+

expect(uploadIndex).toBeGreaterThan(packStepIndex);

1579+

expect(npmWorkflow).toContain('PACK_NAME="$(node - "$PACK_OUTPUT"');

1580+

expect(npmWorkflow).toContain("function resolveTarballFileName");

1581+

expect(npmWorkflow).toContain('fileName.includes("\\0")');

1582+

expect(npmWorkflow).toContain("fileName !== path.basename(fileName)");

1583+

expect(npmWorkflow).toContain("fileName !== path.win32.basename(fileName)");

1584+

expect(npmWorkflow).toContain("npm pack reported unsafe tarball filename");

1585+

expect(npmWorkflow).toContain('PACK_PATH="$PWD/$PACK_NAME"');

1586+

expect(npmWorkflow).toContain('TARBALL_NAME="$PACK_NAME"');

1587+

expect(npmWorkflow).not.toContain("process.stdout.write(first.filename)");

1588+

expect(npmWorkflow).not.toContain('TARBALL_NAME="$(basename "$PACK_PATH")"');

1589+

});

1590+
15701591

it("gates stable GitHub publication on the Windows Hub release asset contract", () => {

15711592

const releaseWorkflow = readFileSync(RELEASE_PUBLISH_WORKFLOW, "utf8");

15721593

const windowsWorkflow = readFileSync(WINDOWS_NODE_RELEASE_WORKFLOW, "utf8");