release: v2.47.0
This commit is contained in:
parent
91c1547856
commit
55c8988900
9 changed files with 26 additions and 9 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -6,6 +6,22 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.47.0] - 2026-03-25
|
||||
|
||||
### Added
|
||||
- **agent-core**: add externalToolExecution mode for external providers
|
||||
- **provider**: add Claude Code CLI provider extension
|
||||
|
||||
### Fixed
|
||||
- **claude-code-cli**: render tool calls above text response
|
||||
- **ci**: update FILE-SYSTEM-MAP.md path after docs→docs-internal move
|
||||
- isInheritedRepo false negative when parent has stale .gsd; defense-in-depth local .git check in bootstrap
|
||||
- **claude-code-cli**: resolve SDK executable path and update model IDs
|
||||
- make planning doctrine demoable definition audience-appropriate
|
||||
- **prompts**: migrate remaining 4 prompts to use DB-backed tool API instead of direct write
|
||||
- make workflow event hash platform-deterministic
|
||||
- reconcile stale task DB status from disk artifacts (#2514)
|
||||
|
||||
## [2.46.1] - 2026-03-25
|
||||
|
||||
### Fixed
|
||||
|
|
@ -1829,7 +1845,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.46.1...HEAD
|
||||
[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.47.0...HEAD
|
||||
[2.47.0]: https://github.com/gsd-build/gsd-2/compare/v2.46.1...v2.47.0
|
||||
[2.46.1]: https://github.com/gsd-build/gsd-2/compare/v2.46.0...v2.46.1
|
||||
[2.46.0]: https://github.com/gsd-build/gsd-2/compare/v2.45.0...v2.46.0
|
||||
[2.45.0]: https://github.com/gsd-build/gsd-2/compare/v2.44.0...v2.45.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-arm64",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.0",
|
||||
"description": "GSD native engine binary for macOS ARM64",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-darwin-x64",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.0",
|
||||
"description": "GSD native engine binary for macOS Intel",
|
||||
"os": [
|
||||
"darwin"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd-build/engine-linux-arm64-gnu",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.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.46.1",
|
||||
"version": "2.47.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.46.1",
|
||||
"version": "2.47.0",
|
||||
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
||||
"os": [
|
||||
"win32"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "gsd-pi",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.0",
|
||||
"description": "GSD — Get Shit Done coding agent",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@gsd/pi-coding-agent",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.0",
|
||||
"description": "Coding agent CLI (vendored from pi-mono)",
|
||||
"type": "module",
|
||||
"piConfig": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@glittercowboy/gsd",
|
||||
"version": "2.46.1",
|
||||
"version": "2.47.0",
|
||||
"piConfig": {
|
||||
"name": "gsd",
|
||||
"configDir": ".gsd"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue