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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to the Dakera deployment configurations will be documented i

## [Unreleased]

## [0.8.0] - 2026-05-29

### Changed

- Bump default dakera image `0.11.61` → `0.11.66` across all compose files (docker-compose.yml, docker-compose.ha.yml, docker-compose.local.yml), k8s deployment.yaml, README examples, and production-checklist.md
- v0.11.62: text_lengths rank fix (DAK-5826)
- v0.11.63–v0.11.64: async metric recording, pipeline instrumentation
- v0.11.65: cross-encoder session pool (RERANKER_POOL_SIZE=2, batch reranking Phase 3)
- v0.11.66: batch ONNX cross-encoder inference (Phase 3 complete, ~2× rerank speedup)

## [0.7.0] - 2026-05-27

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Production-grade single-node deployment with MinIO, caching, and health checks.
> **Version pinning**: The default image tags are pinned to the latest stable release.
> To run a specific version, set `DAKERA_IMAGE` and `DASHBOARD_IMAGE` in your `.env`:
> ```bash
> DAKERA_IMAGE=ghcr.io/dakera-ai/dakera:0.11.55
> DAKERA_IMAGE=ghcr.io/dakera-ai/dakera:0.11.66
> DASHBOARD_IMAGE=ghcr.io/dakera-ai/dakera-dashboard:0.3.29
> ```
> Pinning to explicit versions prevents unexpected upgrades in production.
Expand Down Expand Up @@ -503,7 +503,7 @@ The Helm chart has moved to the dedicated **[dakera-helm](https://github.com/dak

```bash
# Install from GHCR OCI
helm install dakera oci://ghcr.io/dakera-ai/dakera-helm/dakera --version 0.11.55 \
helm install dakera oci://ghcr.io/dakera-ai/dakera-helm/dakera --version 0.11.66 \
--namespace dakera --create-namespace \
--set dakera.rootApiKey=$(openssl rand -hex 32) \
--set minio.rootPassword=$(openssl rand -hex 16)
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.ha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
name: dakera-ha

x-dakera-common: &dakera-common
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.59}
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.66}
restart: unless-stopped
networks:
- dakera-ha-net
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.local.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
dakera:
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.59}
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.66}
ports:
- "3000:3000"
- "50051:50051"
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
# Dakera - AI Agent Memory Platform
# ==========================================================================
dakera:
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.61}
image: ${DAKERA_IMAGE:-ghcr.io/dakera-ai/dakera:0.11.66}
container_name: dakera
ports:
- "${DAKERA_PORT:-3000}:3000"
Expand Down
2 changes: 1 addition & 1 deletion examples/production-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Use this checklist before exposing Dakera to the internet or handling real workl
## Storage

- [ ] **Use persistent storage**: Use the default profile (MinIO-backed) or native S3, not in-memory mode
- [ ] **Pin image versions**: Set `DAKERA_IMAGE=ghcr.io/dakera-ai/dakera:0.11.55` explicitly — never use `latest` in production
- [ ] **Pin image versions**: Set `DAKERA_IMAGE=ghcr.io/dakera-ai/dakera:0.11.66` explicitly — never use `latest` in production
- [ ] **Mount volumes**: Ensure `dakera-cache`, `dakera-rocksdb`, and `minio-data` volumes are on reliable storage
- [ ] **Configure backups**: See [backup-restore.md](backup-restore.md) for backup procedures

Expand Down
6 changes: 3 additions & 3 deletions k8s/dakera/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
labels:
app.kubernetes.io/name: dakera
app.kubernetes.io/component: server
app.kubernetes.io/version: "0.11.55"
app.kubernetes.io/version: "0.11.66"
spec:
replicas: 1
selector:
Expand All @@ -21,7 +21,7 @@ spec:
labels:
app.kubernetes.io/name: dakera
app.kubernetes.io/component: server
app.kubernetes.io/version: "0.11.55"
app.kubernetes.io/version: "0.11.66"
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: "3000"
Expand All @@ -30,7 +30,7 @@ spec:
terminationGracePeriodSeconds: 30
containers:
- name: dakera
image: ghcr.io/dakera-ai/dakera:0.11.55
image: ghcr.io/dakera-ai/dakera:0.11.66
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down