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
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2025-09-18 🔄 **BREAKING: MAJOR REBRAND & REFACTOR**
## [0.9.0] - 2026-01-08

### Added
- **tmux bridge**: Connect container tmux client to host tmux server via TCP bridge
- `deva-bridge-tmux-host` (host-side) and `deva-bridge-tmux` (container-side)
- Build tmux 3.6a from source with SHA256 verification
- Documented as privileged host bridge in AGENTS.md
- **Gemini agent support**: Add `agents/gemini.sh` for Google Gemini CLI
- **Docker-in-Docker auto-mount**: `/var/run/docker.sock` auto-mounted with `--no-docker` opt-out
- **Version management**: `scripts/version-upgrade.sh` and `scripts/release-utils.sh`
- **Build resilience**: Use `gh api` instead of `curl` to avoid GitHub rate limits

### Fixed
- docker-entrypoint.sh: usermod error handling for mounted volumes (no longer fatal under set -e)
- Dockerfile: explicit chmod 755 for script permissions (fixes execute-only bug)

### Changed
- Environment variables for tmux bridge use `DEVA_BRIDGE_*` prefix

## [0.7.0] - 2025-09-18 - **BREAKING: MAJOR REBRAND & REFACTOR**

**Claude Code YOLO → deva.sh Multi-Agent Wrapper**

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.8.0"
VERSION="0.9.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