release v1.6.3

This commit is contained in:
Bohdan Triapitsyn
2026-02-02 19:04:59 +02:00
parent 24bb8d8f95
commit 388911b253
10 changed files with 22 additions and 8 deletions
+8
View File
@@ -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).
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/desktop",
"version": "1.6.2",
"version": "1.6.3",
"private": true,
"type": "module",
"desktopPrerequisites": [
+1 -1
View File
@@ -2994,7 +2994,7 @@ dependencies = [
[[package]]
name = "openchamber-desktop"
version = "1.6.2"
version = "1.6.3"
dependencies = [
"anyhow",
"axum",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openchamber-desktop"
version = "1.6.2"
version = "1.6.3"
edition = "2021"
publish = false
+1 -1
View File
@@ -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",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/ui",
"version": "1.6.2",
"version": "1.6.3",
"private": true,
"type": "module",
"main": "src/main.tsx",
+6
View File
@@ -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).
+1 -1
View File
@@ -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": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@openchamber/web",
"version": "1.6.2",
"version": "1.6.3",
"private": false,
"type": "module",
"main": "./server/index.js",