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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog

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): harden legacy package handoff · openclaw/ope...
steipete · 2026-05-18 · via Recent Commits to openclaw:main

@@ -32,6 +32,7 @@ import { GATEWAY_SERVICE_KIND, GATEWAY_SERVICE_MARKER } from "../../daemon/const

3232

import { resolveGatewayInstallEntrypoint } from "../../daemon/gateway-entrypoint.js";

3333

import { disableCurrentOpenClawUpdateLaunchdJob } from "../../daemon/launchd.js";

3434

import { resolveGatewayRestartLogPath } from "../../daemon/restart-logs.js";

35+

import { summarizeGatewayServiceLayout } from "../../daemon/service-layout.js";

3536

import {

3637

readGatewayServiceState,

3738

resolveGatewayService,

@@ -1208,6 +1209,35 @@ async function tryInstallShellCompletion(opts: {

12081209

}

12091210

}

121012111212+

async function tryRealpathOrResolve(value: string): Promise<string> {

1213+

try {

1214+

return await fs.realpath(path.resolve(value));

1215+

} catch {

1216+

return path.resolve(value);

1217+

}

1218+

}

1219+1220+

async function resolveManagedServicePackageUpdateRoot(params: {

1221+

root: string;

1222+

}): Promise<{ root: string; previousRoot: string } | null> {

1223+

const command = await resolveGatewayService()

1224+

.readCommand(process.env)

1225+

.catch(() => null);

1226+

const layout = await summarizeGatewayServiceLayout(command);

1227+

const serviceRoot = layout?.packageRoot;

1228+

if (!serviceRoot || layout.entrypointSourceCheckout === true) {

1229+

return null;

1230+

}

1231+

const [currentRootReal, serviceRootReal] = await Promise.all([

1232+

tryRealpathOrResolve(params.root),

1233+

tryRealpathOrResolve(serviceRoot),

1234+

]);

1235+

if (currentRootReal === serviceRootReal) {

1236+

return null;

1237+

}

1238+

return { root: serviceRoot, previousRoot: params.root };

1239+

}

1240+12111241

async function runPackageInstallUpdate(params: {

12121242

root: string;

12131243

installKind: "git" | "package" | "unknown";

@@ -1218,6 +1248,7 @@ async function runPackageInstallUpdate(params: {

12181248

jsonMode: boolean;

12191249

managedServiceEnv?: NodeJS.ProcessEnv;

12201250

invocationCwd?: string;

1251+

honorPackageRoot?: boolean;

12211252

}): Promise<UpdateRunResult> {

12221253

const manager = await resolveGlobalManager({

12231254

root: params.root,

@@ -1231,6 +1262,7 @@ async function runPackageInstallUpdate(params: {

12311262

runCommand,

12321263

timeoutMs: params.timeoutMs,

12331264

pkgRoot: params.root,

1265+

honorPackageRoot: params.honorPackageRoot === true,

12341266

});

12351267

const pkgRoot = installTarget.packageRoot;

12361268

const packageName =

@@ -2722,7 +2754,7 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

27222754

}

27232755

const updateStepTimeoutMs = timeoutMs ?? DEFAULT_UPDATE_STEP_TIMEOUT_MS;

272427562725-

const root = await resolveUpdateRoot();

2757+

let root = await resolveUpdateRoot();

27262758

if (postCoreUpdateResume) {

27272759

if (

27282760

postCoreUpdateChannel !== "stable" &&

@@ -2852,6 +2884,21 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

28522884

let fallbackToLatest = false;

28532885

let packageInstallSpec: string | null = null;

28542886

let packageAlreadyCurrent = false;

2887+

let managedServiceRootRedirect: { root: string; previousRoot: string } | null = null;

2888+2889+

if (updateInstallKind === "package") {

2890+

managedServiceRootRedirect = await resolveManagedServicePackageUpdateRoot({ root });

2891+

if (managedServiceRootRedirect) {

2892+

root = managedServiceRootRedirect.root;

2893+

if (!opts.json) {

2894+

defaultRuntime.log(

2895+

theme.muted(

2896+

`Targeting managed gateway service package root: ${managedServiceRootRedirect.root}`,

2897+

),

2898+

);

2899+

}

2900+

}

2901+

}

2855290228562903

if (updateInstallKind !== "git") {

28572904

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

@@ -2929,6 +2976,11 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

29292976

if (fallbackToLatest) {

29302977

notes.push("Beta channel resolves to latest for this run (fallback).");

29312978

}

2979+

if (managedServiceRootRedirect) {

2980+

notes.push(

2981+

`Package update targets managed service root ${managedServiceRootRedirect.root} instead of invoking root ${managedServiceRootRedirect.previousRoot}.`,

2982+

);

2983+

}

29322984

if (explicitTag && !canResolveRegistryVersionForPackageTarget(tag)) {

29332985

notes.push("Non-registry package specs skip npm version lookup and downgrade previews.");

29342986

}

@@ -3062,6 +3114,7 @@ export async function updateCommand(opts: UpdateCommandOptions): Promise<void> {

30623114

jsonMode: Boolean(opts.json),

30633115

managedServiceEnv: prePackageServiceStop?.serviceEnv,

30643116

invocationCwd,

3117+

honorPackageRoot: managedServiceRootRedirect !== null,

30653118

})

30663119

: await runGitUpdate({

30673120

root,