Skip to content

chore(openclaw): 升级 OpenClaw 至 2026.5.18#258

Closed
xzq-xu wants to merge 1 commit into
mainfrom
chore/openclaw-2026.5.18
Closed

chore(openclaw): 升级 OpenClaw 至 2026.5.18#258
xzq-xu wants to merge 1 commit into
mainfrom
chore/openclaw-2026.5.18

Conversation

@xzq-xu
Copy link
Copy Markdown
Collaborator

@xzq-xu xzq-xu commented May 19, 2026

OpenClaw 版本更新

项目
当前版本 2026.4.8
最新版本 2026.5.18
Release https://github.com/openclaw/openclaw/releases/tag/v2026.5.18

CHANGELOG 摘要

展开查看

Changes

  • Agents: clarify that fixes should default to clean bounded refactors, lean internals, and explicit plugin SDK/API deprecation paths.
  • Dependencies: update @openclaw/proxyline to 0.3.3.
  • Dependencies: update Pi packages to 0.75.1 and raise the minimum supported Node.js 22 line to 22.19.
  • Docker/Podman: add OPENCLAW_IMAGE_APT_PACKAGES as the runtime-neutral image build arg for extra apt packages while keeping OPENCLAW_DOCKER_APT_PACKAGES as a legacy fallback. (#62431) Thanks @urtabajev.
  • Gateway/ACPX: attribute startup probe, config, runtime, and resource-count costs in restart traces without changing readiness behavior. (#83300) Thanks @samzong.
  • Gateway: overlap startup logging and plugin-service startup with channel sidecars to reduce restart ready latency while preserving /readyz sidecar gating. (#83301) Thanks @samzong.
  • Plugins/admin-http-rpc: allow trusted admin HTTP RPC clients to start and wait for web QR login flows. (#83259) Thanks @liorb-mountapps.
  • Mac app: redesign Settings pages with consistent card layouts, cached navigation, cleaner permissions/voice/skills/cron/exec/debug panes, and steadier spacing around the native sidebar.
  • Skills: rename the repo-local Codex closeout review skill and helper to autoreview while preserving the Codex-first fallback behavior.
  • Skills: add a meme-maker skill for curated template search, local SVG/PNG rendering, Imgflip hosted rendering, and Know Your Meme provenance links.
  • Browser: surface pending and recently handled modal dialogs in snapshots, return blockedByDialog when an action opens a modal, and allow browser dialog --dialog-id to answer pending dialogs.
  • Agents/tools: shorten built-in tool descriptions and schema hints across media, messaging, sessions, cron, Gateway, web, image/PDF, TTS, nodes, and plan tools while preserving routing guardrails.
  • Skills: add node inspector debugging, fused diagram generation, and throwaway spike workflow skills.
  • CLI/plugins: add `de

集成面检查清单

对照 ee/docs/OpenClaw集成面清单.md,逐项确认新版本兼容性:

  • 配置 Schemaopenclaw.json Zod strict schema 是否接受我们写入的全部字段
  • 文件系统路径/root/.openclaw/ 目录结构是否变更
  • Session 文件格式sessions.json / .jsonl 结构是否变更
  • Channel Plugin SDKopenclaw/plugin-sdk API 是否有 breaking change
  • Gateway 协议 — 端口 (18789/9721)、/healthz、认证方式是否变更
  • CLI 行为openclaw gateway 参数是否变更
  • Gene/Skill 注入SKILL.md 格式、extraDirs 机制是否变更
  • 安全管道tools.exec.* 配置项、Security WebSocket 协议是否变更
  • 镜像验证./verify.sh <image:tag> 全部 PASS

此 PR 由 GitHub Actions 自动创建。

合并后请:

  1. 构建新镜像:./build.sh openclaw --version 2026.5.18
  2. 运行验证:./verify.sh <image:tag>
  3. 在引擎版本管理中发布新版本

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 9acd791eaf

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

# ---------- 构建参数 ----------
ARG OPENCLAW_VERSION=2026.4.8
ARG IMAGE_VERSION=v2026.4.8
ARG OPENCLAW_VERSION=2026.5.18
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Pin the Node base to the new floor

When building openclaw@2026.5.18 on any runner that already has an older cached node:22-bookworm-slim, the image can still be built from a Node 22 patch below 22.19 because build.sh never passes NODE_VERSION and docker_build does not use --pull; this OpenClaw release raises the supported Node 22 floor to 22.19, so the npm install -g openclaw@${OPENCLAW_VERSION} step or runtime can fail depending on cache state. Please pin the default base to at least 22.19 or force pulling a fresh base for this bump.

Useful? React with 👍 / 👎.

@xzq-xu xzq-xu force-pushed the chore/openclaw-2026.5.18 branch from 9acd791 to 8d57906 Compare May 20, 2026 08:59
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 8d57906d86

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

# ---------- 构建参数 ----------
ARG OPENCLAW_VERSION=2026.4.8
ARG IMAGE_VERSION=v2026.4.8
ARG OPENCLAW_VERSION=2026.5.18
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Raise Node base floor for OpenClaw 2026.5.18

Bumping OPENCLAW_VERSION to 2026.5.18 introduces a runtime/build compatibility gap because this release requires Node.js 22.19+, but the Docker base is still ARG NODE_VERSION=22 and the openclaw build path in nodeskclaw-artifacts/build.sh only passes OPENCLAW_VERSION/IMAGE_VERSION (no NODE_VERSION override and no forced pull), so cached node:22-bookworm-slim layers below 22.19 can still be reused and cause install/start failures. Fresh evidence: this commit specifically updates to 2026.5.18 at the flagged line while leaving the Node floor unchanged.

Useful? React with 👍 / 👎.

@Xy718
Copy link
Copy Markdown
Contributor

Xy718 commented May 21, 2026

由最新 OpenClaw 升级 PR #262 覆盖,关闭旧版本升级 PR。

@Xy718 Xy718 closed this May 21, 2026
@Xy718 Xy718 deleted the chore/openclaw-2026.5.18 branch May 21, 2026 11:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants