diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f8908..a7c1626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2026-07-07 + ### Changed - Replace claude-trace (@mariozechner/claude-trace) with cctrace (thevibeworks/cctrace) as the `--trace` backend. cctrace is a @@ -23,6 +25,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 at image build into a standalone binary at `~/.local/bin/cctrace` (no bun needed at runtime) +### Added +- Docker build DNS preflight checks and tunable build args +- `deva.sh sessions` / `deva.sh insight` / raw `ccx` passthrough + commands routed through deva.sh +- Container context generated dynamically into `.claude/CLAUDE.md` + and `AGENTS.md` (replaces the stale checked-in copy) + +### Fixed +- Statusline data dir no longer hard-coded into containers; + state defaults to `~/.claude/statusline`, ending split-brain + quota caches between host and container (#388) +- `CCX_VERSION` build-arg was never passed to image builds (dead + `ATLAS_CLI_VERSION` wiring); released images silently pinned ccx + from Dockerfile ARG defaults instead of versions.env +- `--debug` output no longer crashes on empty `USER_VOLUMES` + under `set -u` on bash < 4.4 (#397) +- Stale `lroolle/ccx` mocks in the version-upgrade test that + failed CI at HEAD since the ccx migration + +### Docs +- Request Tracing section for `--trace`/cctrace in advanced-usage +- Codex `--browser-mcp` clarifications: runs an isolated + in-container Chromium; the desktop Chrome plugin is host-only + and cannot be mounted into the container (#397) + ## [0.12.0] - 2026-05-27 ### Added diff --git a/deva.sh b/deva.sh index 2ed2c5c..e956f62 100755 --- a/deva.sh +++ b/deva.sh @@ -13,7 +13,7 @@ if [ -n "${DEVA_DOCKER_TAG+x}" ]; then DEVA_DOCKER_TAG_ENV_SET=true fi -VERSION="0.12.0" +VERSION="0.13.0" DEVA_DOCKER_IMAGE="${DEVA_DOCKER_IMAGE:-ghcr.io/thevibeworks/deva}" DEVA_DOCKER_TAG="${DEVA_DOCKER_TAG:-latest}" DEVA_CONTAINER_PREFIX="${DEVA_CONTAINER_PREFIX:-deva}"