From 971e4bc8e05c3a9d2f32d45487f43e42ea2eb2a8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 17 Jul 2026 00:34:09 +0300 Subject: [PATCH 1/2] chore(build): bump add-on runtime to Node 24 --- openclaw_assistant/Dockerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/openclaw_assistant/Dockerfile b/openclaw_assistant/Dockerfile index eeaf974..4addc99 100644 --- a/openclaw_assistant/Dockerfile +++ b/openclaw_assistant/Dockerfile @@ -4,7 +4,7 @@ FROM ${BUILD_FROM} # Base image is Debian Bookworm (glibc). This avoids musl-related native module issues # that occur on Alpine (e.g. clipboard, node-llama-cpp). -# Install base packages (without nodejs/npm - we'll get Node 22 from NodeSource) +# Install base packages (without nodejs/npm - we'll get Node 24 from NodeSource) # build-essential provides gcc/cc needed by Homebrew for OpenClaw's brew-managed dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ bash \ @@ -34,19 +34,21 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* -# Install Node.js 22 LTS from NodeSource (Debian Bookworm ships Node 18, but OpenClaw requires 20+) -# Use explicit keyring + apt source instead of setup_22.x pipe script for deterministic builds. +# Install Node.js 24 LTS from NodeSource. +# OpenClaw supports Node >=24.15.0, and this keeps the image compatible with the +# current mcporter releases without relying on an older pinned CLI line. +# Use explicit keyring + apt source instead of setup_24.x pipe script for deterministic builds. RUN mkdir -p /etc/apt/keyrings \ && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \ | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \ && chmod 644 /etc/apt/keyrings/nodesource.gpg \ - && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" \ + && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" \ > /etc/apt/sources.list.d/nodesource.list \ && apt-get update \ && apt-get install -y --no-install-recommends nodejs \ && NODE_VERSION="$(node -v)" \ && echo "$NODE_VERSION" \ - && echo "$NODE_VERSION" | grep -E '^v22\.' \ + && echo "$NODE_VERSION" | grep -E '^v24\.' \ && rm -f /etc/apt/sources.list.d/nodesource.list /etc/apt/keyrings/nodesource.gpg \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* From 99be0ed6e630c99d2d7af78510eef47a9d7a8a03 Mon Sep 17 00:00:00 2001 From: TechArtDev Date: Fri, 17 Jul 2026 16:45:27 +0300 Subject: [PATCH 2/2] chore(release): 0.5.83 --- openclaw_assistant/CHANGELOG.md | 5 +++++ openclaw_assistant/config.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/openclaw_assistant/CHANGELOG.md b/openclaw_assistant/CHANGELOG.md index 5271cce..c22324d 100644 --- a/openclaw_assistant/CHANGELOG.md +++ b/openclaw_assistant/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to the OpenClaw Assistant Home Assistant Add-on will be documented in this file. +## [0.5.83] - 2026-07-17 + +### Changed +- Bump the add-on runtime from Node 22 to Node 24 LTS so the image stays within OpenClaw's published support matrix and is compatible with current `mcporter` releases that require Node `>=24`. + ## [0.5.82] - 2026-07-15 ### Fixed diff --git a/openclaw_assistant/config.yaml b/openclaw_assistant/config.yaml index c2e6e7b..4cee7d0 100644 --- a/openclaw_assistant/config.yaml +++ b/openclaw_assistant/config.yaml @@ -1,5 +1,5 @@ name: OpenClaw Assistant -version: "0.5.82" +version: "0.5.83" slug: openclaw_assistant description: Run OpenClaw Assistant (OpenClaw-compatible) as a Home Assistant add-on. url: https://github.com/techartdev/OpenClawHomeAssistant