Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deva.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
Loading