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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to VoidLLM are documented in this file.

## [0.0.19] - 2026-05-14

### Fixes
- Admin TLS configuration (`server.admin.tls`) is now actually applied in dual-port mode. Previously `tls.enabled: true` was a silent no-op - the schema and validation existed but no listener consumed the cert/key. In single-port mode (admin sharing the proxy port) configuring TLS now emits a WARN since external termination is expected there. Thanks to @martinsotirov for the fix (#92)

---

## [0.0.18] - 2026-05-13

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY go.mod go.sum ./
RUN go mod download
COPY . .
COPY --from=ui-builder /app/ui/dist ./ui/dist
ARG VERSION=0.0.18
ARG VERSION=0.0.19
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build \
-ldflags="-s -w -X 'github.com/voidmind-io/voidllm/internal/api/health.Version=${VERSION}'" \
-o /voidllm ./cmd/voidllm
Expand Down
4 changes: 2 additions & 2 deletions chart/voidllm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: voidllm
description: Privacy-first LLM proxy and AI gateway with load balancing, RBAC, MCP gateway, and built-in admin UI. Self-hosted, single binary, sub-500us overhead.
type: application
version: 0.0.18
appVersion: "0.0.18"
version: 0.0.19
appVersion: "0.0.19"
home: https://voidllm.ai
icon: https://voidllm.ai/logo.svg
sources:
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ The Docker image sets `VOIDLLM_DATABASE_DSN=/data/voidllm.db` by default. Overri

```bash
curl http://localhost:8080/healthz
# {"status":"ok","uptime_seconds":42,"version":"0.0.18"}
# {"status":"ok","uptime_seconds":42,"version":"0.0.19"}
```
Loading