release v1.5.6
This commit is contained in:
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.5.6] - 2026-01-24
|
||||
|
||||
- GitHub: connect your account in Settings with device-flow auth to enable GitHub tools.
|
||||
- Sessions: start new sessions from GitHub issues with seeded context (title, body, labels, comments).
|
||||
- Sessions: start new sessions from GitHub pull requests with PR context baked in (including diffs).
|
||||
- Git: manage pull requests in the Git view with AI-generated descriptions, status checks, ready-for-review, and merge actions.
|
||||
- Mobile: fixed CommandAutocomplete dropdown scrolling (thanks to @nelsonPires5).
|
||||
|
||||
|
||||
## [1.5.5] - 2026-01-23
|
||||
|
||||
- Navigation: URLs now sync the active session, tab, settings, and diff state for shareable links and reliable back/forward (thanks to @TaylorBeeston).
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openchamber-monorepo",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"description": "OpenChamber monorepo workspace for web, ui, and desktop runtimes",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/desktop",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"desktopPrerequisites": [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "openchamber-desktop"
|
||||
version = "1.5.5"
|
||||
version = "1.5.6"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
||||
|
||||
@@ -454,30 +454,6 @@ struct IssueCommentResponse {
|
||||
updated_at: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct PullListItem {
|
||||
number: u64,
|
||||
title: String,
|
||||
html_url: String,
|
||||
state: String,
|
||||
#[serde(default)]
|
||||
draft: bool,
|
||||
#[serde(default)]
|
||||
merged_at: Option<String>,
|
||||
#[serde(default)]
|
||||
user: Option<IssueUser>,
|
||||
#[serde(default)]
|
||||
body: Option<String>,
|
||||
#[serde(default)]
|
||||
base: Option<Value>,
|
||||
#[serde(default)]
|
||||
head: Option<Value>,
|
||||
#[serde(default)]
|
||||
mergeable: Option<bool>,
|
||||
#[serde(default)]
|
||||
mergeable_state: Option<String>,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct PullFileResponse {
|
||||
filename: String,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
||||
"productName": "OpenChamber",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"identifier": "ai.opencode.openchamber",
|
||||
"build": {
|
||||
"beforeDevCommand": "bun run dev",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/ui",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"main": "src/main.tsx",
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
## [1.5.6] - 2026-01-24
|
||||
|
||||
- GitHub: added backend support for PRs/issues workflows; UI comes later.
|
||||
|
||||
|
||||
## [1.5.5] - 2026-01-23
|
||||
|
||||
- Settings: agent and command overrides now prefer plural directories while still honoring legacy singular folders.
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "openchamber",
|
||||
"displayName": "OpenChamber",
|
||||
"description": "AI coding assistant powered by OpenCode",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"publisher": "fedaykindev",
|
||||
"private": true,
|
||||
"repository": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@openchamber/web",
|
||||
"version": "1.5.5",
|
||||
"version": "1.5.6",
|
||||
"private": false,
|
||||
"type": "module",
|
||||
"main": "./server/index.js",
|
||||
|
||||
Reference in New Issue
Block a user