diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ec3d957..014d36a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.7.2] - 2026-02-20 + +- Chat: question prompts now guide you to unanswered items before submit, making tool-question flows faster. +- Chat: fixed auto-send queue to wait for the active session to be idle before sending, reducing misfires during agent messages. +- Chat: improved streaming activity rendering and session attention indicators, so active progress and unread signals stay more consistent. +- UI: added Plan view in the context sidebar panel for quicker access to plan content while you work (thanks to @nelsonPires5). +- Settings: model variant options now refresh correctly in draft/new-session flows, avoiding stale selections. +- Reliability: provider auth failures now show clearer re-auth guidance when tokens expire, making recovery faster (thanks to @yulia-ivashko). + + ## [1.7.1] - 2026-02-18 - Chat: slash commands now follow server command semantics (including multiline arguments), so command behavior is more consistent with OpenCode CLI. diff --git a/package.json b/package.json index 04c40fc3..0453801b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.7.1", + "version": "1.7.2", "description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes", "private": true, "type": "module", diff --git a/packages/desktop/package.json b/packages/desktop/package.json index a61b43fc..8d044215 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.7.1", + "version": "1.7.2", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.lock b/packages/desktop/src-tauri/Cargo.lock index 720a86e4..9d5c503a 100644 --- a/packages/desktop/src-tauri/Cargo.lock +++ b/packages/desktop/src-tauri/Cargo.lock @@ -2670,7 +2670,7 @@ dependencies = [ [[package]] name = "openchamber-desktop" -version = "1.7.1" +version = "1.7.2" dependencies = [ "anyhow", "base64 0.22.1", diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index e51276c6..717777a1 100644 --- a/packages/desktop/src-tauri/Cargo.toml +++ b/packages/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openchamber-desktop" -version = "1.7.1" +version = "1.7.2" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index 4fe98888..6cd2c88e 100644 --- a/packages/desktop/src-tauri/tauri.conf.json +++ b/packages/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/schema.json", "productName": "OpenChamber", - "version": "1.7.1", + "version": "1.7.2", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "node ./scripts/dev-web-server.mjs", diff --git a/packages/ui/package.json b/packages/ui/package.json index f18903ea..b53f1477 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.7.1", + "version": "1.7.2", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 233946d6..7ad720cb 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.7.2] - 2026-02-20 + +- Chat: question prompts now guide you to unanswered items before submit, making tool-question flows faster. +- Chat: fixed auto-send queue to wait for the active session to be idle before sending, reducing misfires during agent messages. +- Chat: improved streaming activity rendering and session attention indicators, so active progress and unread signals stay more consistent. +- UI: added Plan view in the context sidebar panel for quicker access to plan content while you work (thanks to @nelsonPires5). +- Settings: model variant options now refresh correctly in draft/new-session flows, avoiding stale selections. +- Reliability: provider auth failures now show clearer re-auth guidance when tokens expire, making recovery faster (thanks to @yulia-ivashko). + ## [1.7.1] - 2026-02-18 - Chat: slash commands now follow server command semantics (including multiline arguments), so command behavior is more consistent with OpenCode CLI. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 426cd01e..d6f5052d 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -2,7 +2,7 @@ "name": "openchamber", "displayName": "OpenChamber", "description": "AI coding assistant powered by OpenCode", - "version": "1.7.1", + "version": "1.7.2", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index 40d617ef..0475363b 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.7.1", + "version": "1.7.2", "private": false, "type": "module", "main": "./server/index.js",