release: v2.71.0
This commit is contained in:
parent
6bf76274a3
commit
cf6f0613dd
9 changed files with 36 additions and 9 deletions
29
CHANGELOG.md
29
CHANGELOG.md
|
|
@ -6,6 +6,32 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.71.0] - 2026-04-11
|
||||
|
||||
### Added
|
||||
- **mcp-server**: add secure_env_collect tool via MCP form elicitation
|
||||
|
||||
### Fixed
|
||||
- **tui**: clear pinned output on message_end to prevent duplicate display
|
||||
- **tui**: clear pinned latest output on turn completion
|
||||
- **tui**: restore pinned output above editor during tool execution
|
||||
- TOCTOU file locking race conditions in event log and custom workflow graph
|
||||
- **tui**: mask secure extension input values in interactive mode
|
||||
- **claude-code**: harden MCP elicitation schema handling
|
||||
- **claude-code**: accept secure_env_collect MCP elicitation forms
|
||||
- **interactive**: keep MCP tool output ordered and restore secure prompt fallback
|
||||
- **interactive**: preserve MCP tool output stream ordering
|
||||
- **gsd**: resolve workflow MCP test typing regressions
|
||||
- **mcp**: return isError flag on workflow tool execution failures
|
||||
- **discuss**: add structuredQuestionsAvailable conditional to all gates
|
||||
- **discuss**: add multi-round questioning to new-project discuss phase
|
||||
- **gsd**: harden claude-code workflow MCP bootstrap
|
||||
- **web**: drop provisional pre-tool question text
|
||||
|
||||
### Changed
|
||||
- extract deriveStateFromDb logic into composable helpers
|
||||
- **pr**: drop web-layer changes from MCP stream-order fix
|
||||
|
||||
## [2.70.1] - 2026-04-11
|
||||
|
||||
### Fixed
|
||||
|
|
@ -2714,7 +2740,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.70.1...HEAD
|
||||
[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.71.0...HEAD
|
||||
[2.71.0]: https://github.com/gsd-build/gsd-2/compare/v2.70.1...v2.71.0
|
||||
[2.70.1]: https://github.com/gsd-build/gsd-2/compare/v2.70.0...v2.70.1
|
||||
[2.70.0]: https://github.com/gsd-build/gsd-2/compare/v2.69.0...v2.70.0
|
||||
[2.69.0]: https://github.com/gsd-build/gsd-2/compare/v2.68.1...v2.69.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-arm64",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD native engine binary for macOS ARM64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-x64",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD native engine binary for macOS Intel",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-arm64-gnu",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD native engine binary for Linux ARM64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-x64-gnu",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD native engine binary for Linux x64 (glibc)",
|
||||
"os": [
|
||||
"linux"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-win32-x64-msvc",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
||||
"os": [
|
||||
"win32"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "GSD — Get Shit Done coding agent",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd/pi-coding-agent",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"description": "Coding agent CLI (vendored from pi-mono)",
|
||||
"type": "module",
|
||||
"piConfig": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@glittercowboy/gsd",
|
||||
"version": "2.70.1",
|
||||
"version": "2.71.0",
|
||||
"piConfig": {
|
||||
"name": "gsd",
|
||||
"configDir": ".gsd"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue