diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2c427..b76a3c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ Tags follow `v{opencode_version}[letter]` — bare tag for the first build on a --- +## v1.14.25 — 2026-04-25 + +Bump opencode to 1.14.25. Also includes container-level changes since v1.14.22b: +- Add `python3-pip` and `python3-venv` to base image (fixes Mason LSP installs). +- Add `devbox-nvim-data` named volume for neovim plugin/Mason persistence. +- Add `devbox-zoxide` named volume for zoxide directory history persistence. +- Bake devbox-shell bridge line into `/etc/skel-devbox/.bash_aliases`. +- Add CHANGELOG.md with full release history. + ## v1.14.22b — 2026-04-23 **Fix Mason LSP installs, persist nvim data, devbox-shell bridge.** diff --git a/Dockerfile b/Dockerfile index 187644d..24b713c 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.22 +ARG OPENCODE_VERSION=1.14.25 LABEL maintainer="joakimp" LABEL description="Portable opencode developer container"