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

## [Unreleased]

## [1.20.8] - 2026-07-13

### Added
- Added the OpenCode backend. Enable a provider with `/providers enable <id>`,
then select an enabled `provider/model` in `/orch` or switch directly with
`/opencode`. OpenCode sessions resume natively and receive qmax tools through
a managed MCP configuration.
- Added per-user, opt-in OpenCode providers for Z.AI Coding Plan, Groq, and
OpenRouter. Provider keys are kept in the OS keychain; only providers the
current user enables are shown in the model picker.

### Fixed
- OpenCode model discovery now receives the enabled provider's keychain-backed
environment variables, so Groq and OpenRouter models appear in `/orch`.
- Switching to OpenCode now rejects model overrides from other backends and
validates setup before replacing the active agent.
- OpenCode standard permissions now apply a managed policy, and enabling a
provider warns when a literal API key remains in the user's OpenCode config.

## [1.20.7] - 2026-07-12

### Fixed
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.7"
var Version = "1.20.8"

const Name = "qmax-code"

Expand Down
Loading