From 8c6eb3c44d68f0ae789743128ef97841b9592b8a Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Wed, 28 Jan 2026 02:23:27 +0200 Subject: [PATCH] release v1.5.9 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- packages/desktop/package.json | 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 +- 9 files changed, 24 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf4f275..d42a4643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.5.9] - 2026-01-28 + +- Worktrees: migrated to Opencode SDK worktree implementation; sessions in worktrees are now completely isolated. +- Git: integrate worktree commits back to a target branch with commit previews and guided conflict handling. +- Files: toggle markdown preview when viewing files (thanks to @Jovines). +- Files: open the file viewer in fullscreen for focused review and editing (thanks to @TaylorBeeston). +- Plans: switch between markdown preview and edit mode in the Plan view. +- UI: Files, Diff, Git, and Terminal now follow the active session/worktree directory, including new-session drafts. +- Web: plan lists no longer error when the plans directory is missing. + + ## [1.5.8] - 2026-01-26 - Plans: new Plan/Build mode switching support with dedicated Plan content view with per-session context. diff --git a/package.json b/package.json index 83eb960a..d17353b7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openchamber-monorepo", - "version": "1.5.8", + "version": "1.5.9", "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 0f5e5397..af6e6647 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/desktop", - "version": "1.5.8", + "version": "1.5.9", "private": true, "type": "module", "desktopPrerequisites": [ diff --git a/packages/desktop/src-tauri/Cargo.toml b/packages/desktop/src-tauri/Cargo.toml index 5882fa25..33d090e9 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.5.8" +version = "1.5.9" edition = "2021" publish = false diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index b7c472d5..c5c37b74 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.5.8", + "version": "1.5.9", "identifier": "ai.opencode.openchamber", "build": { "beforeDevCommand": "bun run dev", diff --git a/packages/ui/package.json b/packages/ui/package.json index 61fc98ea..992874bc 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/ui", - "version": "1.5.8", + "version": "1.5.9", "private": true, "type": "module", "main": "src/main.tsx", diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 7a26a39a..29d77934 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.5.9] - 2026-01-28 + +- Agent Manager: migrated to Opencode SDK worktree implementation; sessions in worktrees are now completely isolated. +- Agent Manager: worktree setup commands are now persistant per project and automatically saved/restored. + + ## [1.5.8] - 2026-01-26 - Plans: added new Plan/Build mode switching support. diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 259eb1f8..15a69226 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.5.8", + "version": "1.5.9", "publisher": "fedaykindev", "private": true, "repository": { diff --git a/packages/web/package.json b/packages/web/package.json index 7f62170a..2731c8d4 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -1,6 +1,6 @@ { "name": "@openchamber/web", - "version": "1.5.8", + "version": "1.5.9", "private": false, "type": "module", "main": "./server/index.js",