From a208b073b0edf54d6545055e8fc4691126ff61d0 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Thu, 7 May 2026 10:52:50 +0200 Subject: [PATCH] Bump opencode to 1.14.40 Rolls up upstream v1.14.34 through v1.14.40 (no v1.14.36 was published). Highlights: .well-known/opencode remote config support; HTTP_PROXY honored in desktop app; CORS/CSP fixes; warp-session-to-workspace feature; PTY auth tickets; v2 session failure events; debug info CLI command. No container-level changes. --- CHANGELOG.md | 15 +++++++++++++++ Dockerfile | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f0fdb9..e84aa4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ Tags follow `v{opencode_version}[letter]` — bare tag for the first build on a --- +## v1.14.40 — 2026-05-07 + +Bump opencode to 1.14.40. + +Rolls up upstream releases v1.14.34 → v1.14.40 (no v1.14.36). Highlights: + +- **v1.14.40:** support `.well-known/opencode` configs that point to a separate remote config file; assistant text preserved in signed reasoning blocks; CORS, network options, web terminal, and Cloudflare AI Gateway provider fixes; Mistral Medium 3.5 variants restored. +- **v1.14.39:** desktop app respects `HTTP_PROXY` and friends; storage reads return `null` instead of failing when keys are missing. +- **v1.14.38:** embedded UI requests work with arbitrary `connect-src` origins under the default CSP; desktop trusts system CA certificates for HTTPS. +- **v1.14.37:** cancelling a task now cancels child subtask sessions; v2 session rendering improvements (cleaner tool states, better compaction summaries); new "warp a session into another workspace or back to local project" feature; Windows titlebar stable across zoom changes. +- **v1.14.35:** preserve diff patch boundaries so session diffs render correctly when file contents themselves contain `diff --git` text. +- **v1.14.34:** PTY connection tickets for authenticated terminal websockets; v2 session failure events for clients to detect failed runs; improved shell command handling for Bash/PowerShell/cmd; new `debug info` command; `--username` option for basic-auth server connections. + +No container-level changes in this release. Dockerfile bump only. + ## v1.14.33 — 2026-05-03 **Bump opencode to 1.14.33. Named volume for opencode config, skillset auto-deploy, Context7 MCP.** diff --git a/Dockerfile b/Dockerfile index 431d20a..8f9c9ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG DEBIAN_VERSION=trixie-slim FROM debian:${DEBIAN_VERSION} AS base ARG TARGETARCH -ARG OPENCODE_VERSION=1.14.33 +ARG OPENCODE_VERSION=1.14.40 LABEL maintainer="joakimp" LABEL description="Portable opencode developer container"