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

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

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(package): ignore stale packed tarballs (#95126) · ope...
vincentkoc · 2026-06-20 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -357,6 +357,30 @@ async function newestOpenClawTarball(outputDir, packOutput) {

357357

return path.join(outputDir, packed);

358358

}

359359
360+

async function cleanPackedOpenClawTarballs(outputDir) {

361+

let entries;

362+

try {

363+

entries = await fs.readdir(outputDir);

364+

} catch (error) {

365+

if (error?.code === "ENOENT") {

366+

entries = [];

367+

} else {

368+

throw error;

369+

}

370+

}

371+

await Promise.all(

372+

entries

373+

.filter((entry) => {

374+

try {

375+

return resolvePackedOpenClawFileName(entry) === entry;

376+

} catch {

377+

return false;

378+

}

379+

})

380+

.map((entry) => fs.rm(path.join(outputDir, entry), { force: true })),

381+

);

382+

}

383+
360384

export async function packOpenClawPackageForDocker(sourceDir, outputDir, options = {}) {

361385

const runCaptureImpl = options.runCaptureImpl ?? runCapture;

362386

const prepareChangelog = options.prepareChangelog ?? preparePackageChangelog;

@@ -365,6 +389,7 @@ export async function packOpenClawPackageForDocker(sourceDir, outputDir, options

365389

await prepareChangelog(sourceDir);

366390

let packOutput;

367391

try {

392+

await cleanPackedOpenClawTarballs(outputDir);

368393

packOutput = await runCaptureImpl(

369394

"npm",

370395

["pack", "--silent", "--ignore-scripts", "--pack-destination", outputDir],

Original file line numberDiff line numberDiff line change

@@ -570,6 +570,32 @@ async function moveNewestPackedTarball(outputDir, packOutput, outputName) {

570570
571571

export const moveNewestPackedTarballForTest = moveNewestPackedTarball;

572572
573+

async function cleanPackedOpenClawTarballs(outputDir) {

574+

let entries;

575+

try {

576+

entries = await fs.readdir(outputDir);

577+

} catch (error) {

578+

if (error?.code === "ENOENT") {

579+

entries = [];

580+

} else {

581+

throw error;

582+

}

583+

}

584+

await Promise.all(

585+

entries

586+

.filter((entry) => {

587+

try {

588+

return resolvePackedOpenClawTarballFilename(entry) === entry;

589+

} catch {

590+

return false;

591+

}

592+

})

593+

.map((entry) => fs.rm(path.join(outputDir, entry), { force: true })),

594+

);

595+

}

596+
597+

export const cleanPackedOpenClawTarballsForTest = cleanPackedOpenClawTarballs;

598+
573599

function normalizeUrlHostname(hostname) {

574600

return hostname.replace(/^\[/u, "").replace(/\]$/u, "").replace(/\.+$/u, "").toLowerCase();

575601

}

@@ -1307,6 +1333,7 @@ async function resolveCandidate(options) {

13071333

const npmPackRunner = resolveNpmPackageCandidatePackRunner(options.packageSpec, outputDir, {

13081334

env: process.env,

13091335

});

1336+

await cleanPackedOpenClawTarballs(outputDir);

13101337

const packOutput = await run(npmPackRunner.command, npmPackRunner.args, {

13111338

capture: true,

13121339

env: npmPackRunner.env,

Original file line numberDiff line numberDiff line change

@@ -253,14 +253,41 @@ describe("package-openclaw-for-docker", () => {

253253

}),

254254

).rejects.toThrow("missing packed OpenClaw tarball");

255255
256-

fs.writeFileSync(path.join(outputDir, "openclaw-2026.6.17.tgz"), "");

257256

await expect(

258257

packOpenClawPackageForDocker("/repo", outputDir, {

259258

prepareChangelog: async () => {},

260259

restoreChangelog: async () => {},

261-

runCaptureImpl: async () => "npm notice\n",

260+

runCaptureImpl: async () => {

261+

fs.writeFileSync(path.join(outputDir, "openclaw-2026.6.17.tgz"), "");

262+

return "npm notice\n";

263+

},

264+

}),

265+

).resolves.toBe(path.join(outputDir, "openclaw-2026.6.17.tgz"));

266+

} finally {

267+

fs.rmSync(outputDir, { recursive: true, force: true });

268+

}

269+

});

270+
271+

it("ignores stale package tarballs before fallback scanning npm output", async () => {

272+

const outputDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-docker-pack-stale-"));

273+

try {

274+

fs.writeFileSync(path.join(outputDir, "openclaw-9999.1.1.tgz"), "stale");

275+
276+

await expect(

277+

packOpenClawPackageForDocker("/repo", outputDir, {

278+

prepareChangelog: async () => {},

279+

restoreChangelog: async () => {},

280+

runCaptureImpl: async () => {

281+

fs.writeFileSync(path.join(outputDir, "openclaw-2026.6.17.tgz"), "current");

282+

return "npm notice\n";

283+

},

262284

}),

263285

).resolves.toBe(path.join(outputDir, "openclaw-2026.6.17.tgz"));

286+
287+

expect(fs.existsSync(path.join(outputDir, "openclaw-9999.1.1.tgz"))).toBe(false);

288+

expect(fs.readFileSync(path.join(outputDir, "openclaw-2026.6.17.tgz"), "utf8")).toBe(

289+

"current",

290+

);

264291

} finally {

265292

fs.rmSync(outputDir, { recursive: true, force: true });

266293

}

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ import { afterEach, describe, expect, it } from "vitest";

99

import {

1010

ARTIFACT_TARBALL_SCAN_MAX_ENTRIES,

1111

cleanupPackageSourceWorktreeForTest,

12+

cleanPackedOpenClawTarballsForTest,

1213

downloadUrl,

1314

findSingleTarballForTest,

1415

loadTrustedPackageSource,

@@ -263,6 +264,25 @@ describe("resolve-openclaw-package-candidate", () => {

263264

}

264265

});

265266
267+

it("cleans stale package tarballs before npm fallback scanning", async () => {

268+

const dir = await mkdtemp(path.join(tmpdir(), "openclaw-package-npm-pack-stale-"));

269+

tempDirs.push(dir);

270+

await writeFile(path.join(dir, "openclaw-9999.1.1.tgz"), "stale");

271+

await writeFile(path.join(dir, "openclaw-C:evil.tgz"), "unsafe");

272+
273+

await cleanPackedOpenClawTarballsForTest(dir);

274+

await writeFile(path.join(dir, "openclaw-2026.6.17.tgz"), "current");

275+
276+

await expect(

277+

moveNewestPackedTarballForTest(dir, "npm notice\n", "openclaw-current.tgz"),

278+

).resolves.toBe(path.join(dir, "openclaw-current.tgz"));

279+

await expect(missing(path.join(dir, "openclaw-9999.1.1.tgz"))).resolves.toBe(true);

280+

await expect(readFile(path.join(dir, "openclaw-C:evil.tgz"), "utf8")).resolves.toBe("unsafe");

281+

await expect(readFile(path.join(dir, "openclaw-current.tgz"), "utf8")).resolves.toBe(

282+

"current",

283+

);

284+

});

285+
266286

it("bounds captured command stderr tails on failures", async () => {

267287

await expect(

268288

runCommandForTest(