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

推荐订阅源

Y
Y Combinator Blog
Jina AI
Jina AI
雷峰网
雷峰网
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
美团技术团队
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
博客园 - Franky
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
量子位
IT之家
IT之家
人人都是产品经理
人人都是产品经理
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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(update): use configured npm registry for update metad...
vincentkoc · 2026-06-17 · via Recent Commits to openclaw:main

@@ -91,6 +91,7 @@ import {

9191

resolveGlobalInstallTarget,

9292

resolveGlobalInstallSpec,

9393

resolvePnpmGlobalDirFromGlobalRoot,

94+

type ResolvedGlobalInstallTarget,

9495

} from "../../infra/update-global.js";

9596

import { cleanupStaleManagedServiceUpdateHandoffs } from "../../infra/update-managed-service-handoff-cleanup.js";

9697

import { runGatewayUpdate, type UpdateRunResult } from "../../infra/update-runner.js";

@@ -1045,17 +1046,28 @@ async function resolvePackageRuntimePreflightError(params: {

10451046

tag: string;

10461047

timeoutMs?: number;

10471048

nodeRunner?: string;

1049+

spec?: string;

1050+

command?: string;

1051+

cwd?: string;

1052+

env?: NodeJS.ProcessEnv;

10481053

}): Promise<string | null> {

10491054

if (!canResolveRegistryVersionForPackageTarget(params.tag)) {

10501055

return null;

10511056

}

1057+

if (params.spec && !canResolveRegistryVersionForPackageTarget(params.spec)) {

1058+

return null;

1059+

}

10521060

const target = params.tag.trim();

10531061

if (!target) {

10541062

return null;

10551063

}

10561064

const status = await fetchNpmPackageTargetStatus({

10571065

target,

1066+

spec: params.spec,

10581067

timeoutMs: params.timeoutMs,

1068+

command: params.command,

1069+

cwd: params.cwd,

1070+

env: params.env,

10591071

});

10601072

if (status.error) {

10611073

return null;

@@ -1503,21 +1515,26 @@ async function runPackageInstallUpdate(params: {

15031515

invocationCwd?: string;

15041516

honorPackageRoot?: boolean;

15051517

nodeRunner?: string;

1518+

installEnv?: NodeJS.ProcessEnv;

1519+

installTarget?: ResolvedGlobalInstallTarget;

15061520

}): Promise<UpdateRunResult> {

1507-

const manager = await resolveGlobalManager({

1508-

root: params.root,

1509-

installKind: params.installKind,

1510-

timeoutMs: params.timeoutMs,

1511-

});

1512-

const installEnv = await createGlobalInstallEnv();

1521+

const installEnv = params.installEnv ?? (await createGlobalInstallEnv());

15131522

const runCommand = createGlobalCommandRunner();

1514-

const installTarget = await resolveGlobalInstallTarget({

1515-

manager,

1516-

runCommand,

1517-

timeoutMs: params.timeoutMs,

1518-

pkgRoot: params.root,

1519-

honorPackageRoot: params.honorPackageRoot === true,

1520-

});

1523+

let installTarget = params.installTarget;

1524+

if (!installTarget) {

1525+

const manager = await resolveGlobalManager({

1526+

root: params.root,

1527+

installKind: params.installKind,

1528+

timeoutMs: params.timeoutMs,

1529+

});

1530+

installTarget = await resolveGlobalInstallTarget({

1531+

manager,

1532+

runCommand,

1533+

timeoutMs: params.timeoutMs,

1534+

pkgRoot: params.root,

1535+

honorPackageRoot: params.honorPackageRoot === true,

1536+

});

1537+

}

15211538

const pkgRoot = installTarget.packageRoot;

15221539

const packageName =

15231540

(pkgRoot ? await readPackageName(pkgRoot) : await readPackageName(params.root)) ??

@@ -1620,7 +1637,7 @@ async function runPackageInstallUpdate(params: {

1620163716211638

return {

16221639

status: packageUpdate.failedStep ? "error" : "ok",

1623-

mode: manager,

1640+

mode: installTarget.manager,

16241641

root: packageUpdate.verifiedPackageRoot ?? params.root,

16251642

reason: packageUpdate.failedStep ? packageUpdate.failedStep.name : undefined,

16261643

before: { version: beforeVersion },

@@ -3286,6 +3303,9 @@ async function updateCommandInternal(opts: UpdateCommandOptions): Promise<void>

32863303

let downgradeRisk = false;

32873304

let fallbackToLatest = false;

32883305

let packageInstallSpec: string | null = null;

3306+

let packageInstallEnv: NodeJS.ProcessEnv | undefined;

3307+

let packageInstallCwd: string | undefined;

3308+

let packageInstallTarget: ResolvedGlobalInstallTarget | undefined;

32893309

let packageAlreadyCurrent = false;

32903310

let managedServiceRootRedirect: ManagedServiceRootRedirect | null = null;

32913311

// Resolved independently of the root redirect so it covers the common case

@@ -3340,11 +3360,46 @@ async function updateCommandInternal(opts: UpdateCommandOptions): Promise<void>

33403360

}

3341336133423362

if (updateInstallKind !== "git") {

3363+

packageInstallEnv = await createGlobalInstallEnv();

3364+

packageInstallCwd = tryResolveInvocationCwd();

3365+

if (updateInstallKind === "package") {

3366+

const manager = await resolveGlobalManager({

3367+

root,

3368+

installKind,

3369+

timeoutMs: updateStepTimeoutMs,

3370+

});

3371+

packageInstallTarget = await resolveGlobalInstallTarget({

3372+

manager,

3373+

runCommand: createGlobalCommandRunner(),

3374+

timeoutMs: updateStepTimeoutMs,

3375+

pkgRoot: root,

3376+

honorPackageRoot:

3377+

managedServiceRootRedirect !== null || managedServiceNodeRunner !== undefined,

3378+

});

3379+

}

3380+

const npmMetadataCommand =

3381+

packageInstallTarget?.manager === "npm" ? packageInstallTarget.command : undefined;

33433382

currentVersion = switchToPackage ? null : await readPackageVersion(root);

33443383

if (explicitTag) {

3345-

targetVersion = await resolveTargetVersion(tag, timeoutMs);

3384+

const explicitSpec = resolveGlobalInstallSpec({

3385+

packageName: DEFAULT_PACKAGE_NAME,

3386+

tag,

3387+

env: packageInstallEnv,

3388+

});

3389+

targetVersion = await resolveTargetVersion(tag, timeoutMs, {

3390+

spec: explicitSpec,

3391+

command: npmMetadataCommand,

3392+

cwd: packageInstallCwd,

3393+

env: packageInstallEnv,

3394+

});

33463395

} else {

3347-

targetVersion = await resolveNpmChannelTag({ channel, timeoutMs }).then((resolved) => {

3396+

targetVersion = await resolveNpmChannelTag({

3397+

channel,

3398+

timeoutMs,

3399+

command: npmMetadataCommand,

3400+

cwd: packageInstallCwd,

3401+

env: packageInstallEnv,

3402+

}).then((resolved) => {

33483403

tag = resolved.tag;

33493404

fallbackToLatest = channel === "beta" && resolved.tag === "latest";

33503405

return resolved.version;

@@ -3367,7 +3422,7 @@ async function updateCommandInternal(opts: UpdateCommandOptions): Promise<void>

33673422

packageInstallSpec = resolveGlobalInstallSpec({

33683423

packageName: DEFAULT_PACKAGE_NAME,

33693424

tag,

3370-

env: process.env,

3425+

env: packageInstallEnv,

33713426

});

33723427

}

33733428

@@ -3485,8 +3540,12 @@ async function updateCommandInternal(opts: UpdateCommandOptions): Promise<void>

34853540

if (updateInstallKind === "package") {

34863541

const runtimePreflightError = await resolvePackageRuntimePreflightError({

34873542

tag,

3543+

spec: packageInstallSpec ?? undefined,

34883544

timeoutMs,

34893545

nodeRunner: managedServiceNodeRunner,

3546+

command: packageInstallTarget?.manager === "npm" ? packageInstallTarget.command : undefined,

3547+

cwd: packageInstallCwd,

3548+

env: packageInstallEnv,

34903549

});

34913550

if (runtimePreflightError) {

34923551

defaultRuntime.error(runtimePreflightError);

@@ -3591,6 +3650,8 @@ async function updateCommandInternal(opts: UpdateCommandOptions): Promise<void>

35913650

honorPackageRoot:

35923651

managedServiceRootRedirect !== null || managedServiceNodeRunner !== undefined,

35933652

nodeRunner: managedServiceNodeRunner,

3653+

installEnv: packageInstallEnv,

3654+

installTarget: packageInstallTarget,

35943655

})

35953656

: await runGitUpdate({

35963657

root,