From 388911b25318464191371097ca32c800f1a54a91 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Mon, 2 Feb 2026 19:04:59 +0200 Subject: [PATCH] release v1.6.3 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- packages/desktop/package.json | 2 +- packages/desktop/src-tauri/Cargo.lock | 2 +- packages/desktop/src-tauri/Cargo.toml | 2 +- packages/desktop/src-tauri/tauri.conf.json | 2 +- packages/ui/package.json | 2 +- packages/vscode/CHANGELOG.md | 6 ++++++ packages/vscode/package.json | 2 +- packages/web/package.json | 2 +- 10 files changed, 22 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a02c09d..2a739c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.6.3] - 2026-02-2 + +- Web: improved server readiness check to use the `/global/health` endpoint for more reliable startup detection. +- Web: added login rate limit protection to prevent brute-force attempts on the authentication endpoint (thanks to @Jovines). +- VSCode: improved server health check with the proper health API endpoint and increased timeout for steadier startup (thanks to @wienans). +- Settings: dialog no longer persists open/closed state across app restarts. + + ## [1.6.2] - 2026-02-1 - Usage: new multi-provider quota dashboard to monitor API usage across OpenAI, Google, and z.ai (thanks to @nelsonPires5). diff --git a/package.json b/package.json index 169e5d10..b5a4f4b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.6.2", + "version": "1.6.3", "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 0dc1ddde..73639119 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.6.2", + "version": "1.6.3", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.lock b/packages/desktop/src-tauri/Cargo.lock index 796c22ad..663a33df 100644 --- a/packages/desktop/src-tauri/Cargo.lock +++ b/packages/desktop/src-tauri/Cargo.lock @@ -2994,7 +2994,7 @@ dependencies = [ [[package]] name = "openchamber-desktop" -version = "1.6.2" +version = "1.6.3" dependencies = [ "anyhow", "axum", diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index bb3fda88..17504bb0 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.6.2" +version = "1.6.3" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index 2630fd26..efc30536 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.6.2", + "version": "1.6.3", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "bun run dev", diff --git a/packages/ui/package.json b/packages/ui/package.json index a8937e40..59ab5aea 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.6.2", + "version": "1.6.3", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 80ace0e3..97103028 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.6.3] - 2026-02-2 + +- Improved server health check with the proper health API endpoint and increased timeout for steadier startup (thanks to @wienans). +- Settings dialog no longer persists open/closed state across extension restarts. + + ## [1.6.2] - 2026-02-1 - Added multi-provider quota dashboard in settings to monitor API usage across OpenAI, Google, and z.ai with auto-refresh support (thanks to @nelsonPires5). diff --git a/packages/vscode/package.json b/packages/vscode/package.json index c49d3b81..495fba41 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.6.2", + "version": "1.6.3", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index b2a297f5..fc705beb 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.6.2", + "version": "1.6.3", "private": false, "type": "module", "main": "./server/index.js",