From a1fb64a6ba807f238f6fbd15171e6c65b4319f19 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 7 Apr 2026 04:25:48 +0000 Subject: [PATCH] release: v2.65.0 --- CHANGELOG.md | 33 ++++++++++++++++++++++++- native/npm/darwin-arm64/package.json | 2 +- native/npm/darwin-x64/package.json | 2 +- native/npm/linux-arm64-gnu/package.json | 2 +- native/npm/linux-x64-gnu/package.json | 2 +- native/npm/win32-x64-msvc/package.json | 2 +- package.json | 2 +- packages/pi-coding-agent/package.json | 2 +- pkg/package.json | 2 +- 9 files changed, 40 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36bcc9696..b5bdb0ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,36 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Unreleased] +## [2.65.0] - 2026-04-07 + +### Added +- **gsd**: persistent notification panel with TUI overlay, widget, and web API +- **gsd**: wire blocking behavior and strict mode for enhanced verification +- **gsd**: add post-execution cross-task consistency checks +- **gsd**: add pre-execution plan verification checks + +### Fixed +- **gsd**: wrap long notification messages and fit overlay to content +- **gsd**: remove background color from backdrop, fix message truncation +- **gsd**: restore consistent overlay height to prevent ghost artifacts +- **gsd**: improve notification overlay backdrop and content-fit sizing +- **gsd**: only unlink notification lock when owned, prevent foreign lock deletion +- **gsd**: add backdrop dimming and viewport padding to notification overlay +- **gsd**: add intent + phase guards to resume context fallback (#3615) +- **gsd**: inject task context for unstructured resume prompts (#3615) +- **pi-coding-agent**: restore extension tools after session switch (#3616) +- **agent-loop**: schema overload cap ignores bash execution errors (#3618) +- **bg-shell**: prevent signal handler accumulation + cap alert queue +- **gsd**: coerce plain-string provides field to array in complete-slice (#3585) +- address PR #3468 review findings +- **gsd**: persist autoStartTime across session resume so elapsed timer survives /exit +- **gsd**: add enhanced_verification preferences to mergePreferences +- **headless**: treat discuss and plan as multi-turn commands + +### Changed +- **interactive**: cap rendered chat components + kill orphan descendants +- **tui**: render-skip, frame isolation, Text cache guard, dispose + ## [2.64.0] - 2026-04-06 ### Added @@ -2406,7 +2436,8 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Changed - License updated to MIT -[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.64.0...HEAD +[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.65.0...HEAD +[2.65.0]: https://github.com/gsd-build/gsd-2/compare/v2.64.0...v2.65.0 [2.64.0]: https://github.com/gsd-build/gsd-2/compare/v2.63.0...v2.64.0 [2.63.0]: https://github.com/gsd-build/gsd-2/compare/v2.62.1...v2.63.0 [2.62.1]: https://github.com/gsd-build/gsd-2/compare/v2.62.0...v2.62.1 diff --git a/native/npm/darwin-arm64/package.json b/native/npm/darwin-arm64/package.json index 88f8cc221..2331e73d1 100644 --- a/native/npm/darwin-arm64/package.json +++ b/native/npm/darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-darwin-arm64", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD native engine binary for macOS ARM64", "os": [ "darwin" diff --git a/native/npm/darwin-x64/package.json b/native/npm/darwin-x64/package.json index 1fc03ade2..a409467c6 100644 --- a/native/npm/darwin-x64/package.json +++ b/native/npm/darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-darwin-x64", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD native engine binary for macOS Intel", "os": [ "darwin" diff --git a/native/npm/linux-arm64-gnu/package.json b/native/npm/linux-arm64-gnu/package.json index 1424ab1ef..debe6ca92 100644 --- a/native/npm/linux-arm64-gnu/package.json +++ b/native/npm/linux-arm64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-linux-arm64-gnu", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD native engine binary for Linux ARM64 (glibc)", "os": [ "linux" diff --git a/native/npm/linux-x64-gnu/package.json b/native/npm/linux-x64-gnu/package.json index 8d1a3e4e1..4cc18e6d3 100644 --- a/native/npm/linux-x64-gnu/package.json +++ b/native/npm/linux-x64-gnu/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-linux-x64-gnu", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD native engine binary for Linux x64 (glibc)", "os": [ "linux" diff --git a/native/npm/win32-x64-msvc/package.json b/native/npm/win32-x64-msvc/package.json index 58c4bb6ee..6f3902411 100644 --- a/native/npm/win32-x64-msvc/package.json +++ b/native/npm/win32-x64-msvc/package.json @@ -1,6 +1,6 @@ { "name": "@gsd-build/engine-win32-x64-msvc", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD native engine binary for Windows x64 (MSVC)", "os": [ "win32" diff --git a/package.json b/package.json index 935a4f57b..dd19c6350 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gsd-pi", - "version": "2.64.0", + "version": "2.65.0", "description": "GSD — Get Shit Done coding agent", "license": "MIT", "repository": { diff --git a/packages/pi-coding-agent/package.json b/packages/pi-coding-agent/package.json index beefc7c5f..3a6fa004d 100644 --- a/packages/pi-coding-agent/package.json +++ b/packages/pi-coding-agent/package.json @@ -1,6 +1,6 @@ { "name": "@gsd/pi-coding-agent", - "version": "2.64.0", + "version": "2.65.0", "description": "Coding agent CLI (vendored from pi-mono)", "type": "module", "piConfig": { diff --git a/pkg/package.json b/pkg/package.json index b68592381..6c026c26f 100644 --- a/pkg/package.json +++ b/pkg/package.json @@ -1,6 +1,6 @@ { "name": "@glittercowboy/gsd", - "version": "2.64.0", + "version": "2.65.0", "piConfig": { "name": "gsd", "configDir": ".gsd"