Skip to content

Commit 76938f7

Browse files
authored
chore(kiloclaw): upgrade openclaw 2026.4.9 → 2026.4.15 (#2801)
Bump version pin across 5 releases (v2026.4.13 was never published). 374 changelog entries analyzed — zero code-level impact on KiloClaw. All CLI flags, config keys, env vars, and plugin interfaces unchanged. Changes: - Dockerfile: version pin 2026.4.9 → 2026.4.15, cache bust v66 - .dev.vars.example: fix stale OPENCLAW_VERSION example (was 2026.4.5) - e2e/docker-image-testing.md: fix stale version comment
1 parent 5e8952f commit 76938f7

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

services/kiloclaw/.dev.vars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ FLY_IMAGE_DIGEST=
9898
# Used by the worker to self-register the version → image tag mapping in KV,
9999
# enabling per-user version tracking. Without this, version tracking fields
100100
# will be null and instances fall back to FLY_IMAGE_TAG directly.
101-
OPENCLAW_VERSION=2026.4.5
101+
OPENCLAW_VERSION=2026.4.15
102102

103103
# Legacy fallback for existing instances without per-user apps.
104104
# New instances get per-user apps (acct-{hash}) created automatically.

services/kiloclaw/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN npm install -g pnpm
5555
# Patch: bump model discovery timeout from 5s to 60s — shared-cpu machines
5656
# under boot load routinely need 27-35s for the first TLS+fetch to complete.
5757
# Remove this sed patch once openclaw exposes a configurable timeout.
58-
RUN npm install -g openclaw@2026.4.9 \
58+
RUN npm install -g openclaw@2026.4.15 \
5959
&& OC_DIST=/usr/local/lib/node_modules/openclaw/dist \
6060
&& FOUND_FILES=$(find "$OC_DIST" -name 'provider-models-*.js' | wc -l | tr -d ' ') \
6161
&& if [ "$FOUND_FILES" -eq 0 ]; then echo "ERROR: provider-models-*.js not found in openclaw dist" >&2; exit 1; fi \
@@ -202,8 +202,8 @@ RUN mkdir -p /root/.openclaw \
202202
&& mkdir -p /root/clawd/skills
203203

204204
# Copy helper scripts (used at runtime by the controller/gateway)
205-
# Build cache bust: 2026-03-17-v65-remove-startup-script
206-
RUN echo "11"
205+
# Build cache bust: 2026-04-24-v66-openclaw-2026.4.15
206+
RUN echo "12"
207207
COPY openclaw-pairing-list.js /usr/local/bin/openclaw-pairing-list.js
208208
COPY openclaw-device-pairing-list.js /usr/local/bin/openclaw-device-pairing-list.js
209209

services/kiloclaw/e2e/docker-image-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ docker rm kiloclaw-gateway
141141
```bash
142142
# Check versions
143143
docker run --rm kiloclaw:test node --version # v24.14.1
144-
docker run --rm kiloclaw:test openclaw --version # 2026.4.5
144+
docker run --rm kiloclaw:test openclaw --version # 2026.4.15
145145

146146
# Check directories
147147
docker run --rm kiloclaw:test ls -la /root/.openclaw

0 commit comments

Comments
 (0)