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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https://

## [Unreleased]

## [1.20.7] - 2026-07-12

### Fixed
- `--save-session` (and a persisted `auto_save=true`) now also persists
one-shot (`-p` / positional-arg) sessions to disk. Previously the flag
only set an in-memory config field that the one-shot dispatch path never
read, so scripted/CI single-prompt runs were silently never saved.
- MCP mode (`serve --mcp`) now redirects raw fd 1 writes, not just Go's
`os.Stdout` variable, to stderr on Unix. Subprocess/library writes below
the Go runtime could otherwise still corrupt the JSON-RPC stdout stream.
- `/set cloud_sync` (the documented key) now works; previously only the
undocumented `cloudsync` alias was recognized.

## [1.20.6] - 2026-07-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

// Version is set at build time via -ldflags "-X main.Version=x.y.z"
var Version = "1.20.6"
var Version = "1.20.7"

const Name = "qmax-code"

Expand Down
Loading