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

推荐订阅源

博客园 - 三生石上(FineUI控件)
月光博客
月光博客
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Vercel News
Vercel News
MyScale Blog
MyScale Blog
爱范儿
爱范儿
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
H
Help Net Security
Last Week in AI
Last Week in AI
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
宝玉的分享
宝玉的分享
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
博客园 - 叶小钗
D
Docker

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
test: preseed dev channel in Parallels update · openclaw/...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -854,6 +854,14 @@ mkdir -p "$bootstrap_root"

854854

`set -eu

855855

rm -rf ${shellQuote(`${home}/openclaw`)}

856856

export PATH=${shellQuote(`/tmp/openclaw-smoke-pnpm-bootstrap/node_modules/.bin:${guestPath}`)}

857+

${guestNode} - <<'JS'

858+

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

859+

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

860+

const configPath = path.join(process.env.HOME || ${JSON.stringify(home)}, ".openclaw", "openclaw.json");

861+

const config = JSON.parse(fs.readFileSync(configPath, "utf8"));

862+

config.update = { ...(config.update || {}), channel: "dev" };

863+

fs.writeFileSync(configPath, JSON.stringify(config, null, 2) + "\\n");

864+

JS

857865

/usr/bin/env NODE_OPTIONS=--max-old-space-size=4096 OPENCLAW_DISABLE_BUNDLED_PLUGINS=1 ${guestNode} ${guestOpenClawEntry} update --channel dev --yes --json

858866

${guestNode} ${guestOpenClawEntry} --version

859867

${guestNode} ${guestOpenClawEntry} update status --json`,

Original file line numberDiff line numberDiff line change

@@ -143,7 +143,7 @@ Wait-OpenClawGateway

143143

Invoke-OpenClaw models set ${psSingleQuote(input.auth.modelId)}

144144

Invoke-OpenClaw config set agents.defaults.skipBootstrap true --strict-json

145145

Invoke-OpenClaw config set tools.profile minimal

146-

Invoke-OpenClaw config set models.providers.openai '{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}' --strict-json

146+

Invoke-OpenClaw config set models.providers.openai ${psSingleQuote('{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}')} --strict-json

147147

${windowsAgentWorkspaceScript("Parallels npm update smoke test assistant.")}

148148

Set-Item -Path ('Env:' + ${psSingleQuote(input.auth.apiKeyEnv)}) -Value ${psSingleQuote(input.auth.apiKeyValue)}

149149

Invoke-OpenClaw agent --local --agent main --session-id parallels-npm-update-windows --message 'Reply with exact ASCII text OK only.' --thinking minimal --json`;

Original file line numberDiff line numberDiff line change

@@ -798,6 +798,13 @@ if ((Test-Path $logPath) -or (Test-Path $donePath)) {

798798

$portableGit = Join-Path (Join-Path (Join-Path $env:LOCALAPPDATA 'OpenClaw\\deps') 'portable-git') ''

799799

$env:PATH = "$portableGit\\cmd;$portableGit\\mingw64\\bin;$portableGit\\usr\\bin;$env:PATH"

800800

where.exe git.exe

801+

$configPath = Join-Path $env:USERPROFILE '.openclaw\\openclaw.json'

802+

$config = Get-Content $configPath -Raw | ConvertFrom-Json

803+

if ($null -eq $config.update) {

804+

$config | Add-Member -MemberType NoteProperty -Name update -Value ([pscustomobject]@{})

805+

}

806+

$config.update | Add-Member -Force -MemberType NoteProperty -Name channel -Value 'dev'

807+

$config | ConvertTo-Json -Depth 100 | Set-Content -Path $configPath -Encoding utf8

801808

$env:OPENCLAW_DISABLE_BUNDLED_PLUGINS = '1'

802809

Invoke-OpenClaw update --channel dev --yes --json

803810

if ($LASTEXITCODE -ne 0) { throw "openclaw update failed with exit code $LASTEXITCODE" }

@@ -883,7 +890,7 @@ Invoke-OpenClaw config set agents.defaults.skipBootstrap true --strict-json

883890

if ($LASTEXITCODE -ne 0) { throw "config set failed" }

884891

Invoke-OpenClaw config set tools.profile minimal

885892

if ($LASTEXITCODE -ne 0) { throw "tools profile config set failed" }

886-

Invoke-OpenClaw config set models.providers.openai '{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}' --strict-json

893+

Invoke-OpenClaw config set models.providers.openai ${psSingleQuote('{"baseUrl":"https://api.openai.com/v1","models":[],"timeoutSeconds":300}')} --strict-json

887894

if ($LASTEXITCODE -ne 0) { throw "openai provider timeout config set failed" }

888895

${windowsAgentWorkspaceScript("Parallels Windows smoke test assistant.")}

889896

Set-Item -Path ('Env:' + ${psSingleQuote(this.auth.apiKeyEnv)}) -Value ${psSingleQuote(this.auth.apiKeyValue)}

Original file line numberDiff line numberDiff line change

@@ -332,6 +332,14 @@ console.log(resolveUbuntuVmName("Ubuntu missing"));

332332

expect(combined).toContain("where.exe git.exe");

333333

});

334334
335+

it("preseeds dev update channel before stable-to-dev update lanes", () => {

336+

const macos = readFileSync(TS_PATHS.macos, "utf8");

337+

const windows = readFileSync(TS_PATHS.windows, "utf8");

338+
339+

expect(macos).toContain('channel: "dev"');

340+

expect(windows).toContain("Name channel -Value 'dev'");

341+

});

342+
335343

it("passes aggregate model overrides into each OS fresh lane", () => {

336344

const script = readFileSync(TS_PATHS.npmUpdate, "utf8");

337345