release: v2.38.0
This commit is contained in:
parent
ebd2408ffc
commit
1b2ff19615
9 changed files with 21 additions and 9 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -6,6 +6,17 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.38.0] - 2026-03-20
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **gsd**: ADR-004 — derived-graph reactive task execution (#1546)
|
||||||
|
- add anthropic-vertex provider for Claude on Vertex AI (#1533)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **ci**: reduce GitHub Actions minutes ~60-70% (~10k → ~3-4k/month) (#1552)
|
||||||
|
- **gsd**: reactive batch verification + dependency-based carry-forward (#1549)
|
||||||
|
- **gsd**: enforce backtick file paths in task plan IO sections (#1548)
|
||||||
|
|
||||||
## [2.37.1] - 2026-03-20
|
## [2.37.1] - 2026-03-20
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
@ -1419,7 +1430,8 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
### Changed
|
### Changed
|
||||||
- License updated to MIT
|
- License updated to MIT
|
||||||
|
|
||||||
[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.37.1...HEAD
|
[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.38.0...HEAD
|
||||||
|
[2.38.0]: https://github.com/gsd-build/gsd-2/compare/v2.37.1...v2.38.0
|
||||||
[2.37.1]: https://github.com/gsd-build/gsd-2/compare/v2.37.0...v2.37.1
|
[2.37.1]: https://github.com/gsd-build/gsd-2/compare/v2.37.0...v2.37.1
|
||||||
[2.37.0]: https://github.com/gsd-build/gsd-2/compare/v2.36.0...v2.37.0
|
[2.37.0]: https://github.com/gsd-build/gsd-2/compare/v2.36.0...v2.37.0
|
||||||
[2.36.0]: https://github.com/gsd-build/gsd-2/compare/v2.35.0...v2.36.0
|
[2.36.0]: https://github.com/gsd-build/gsd-2/compare/v2.35.0...v2.36.0
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd-build/engine-darwin-arm64",
|
"name": "@gsd-build/engine-darwin-arm64",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD native engine binary for macOS ARM64",
|
"description": "GSD native engine binary for macOS ARM64",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd-build/engine-darwin-x64",
|
"name": "@gsd-build/engine-darwin-x64",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD native engine binary for macOS Intel",
|
"description": "GSD native engine binary for macOS Intel",
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd-build/engine-linux-arm64-gnu",
|
"name": "@gsd-build/engine-linux-arm64-gnu",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD native engine binary for Linux ARM64 (glibc)",
|
"description": "GSD native engine binary for Linux ARM64 (glibc)",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd-build/engine-linux-x64-gnu",
|
"name": "@gsd-build/engine-linux-x64-gnu",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD native engine binary for Linux x64 (glibc)",
|
"description": "GSD native engine binary for Linux x64 (glibc)",
|
||||||
"os": [
|
"os": [
|
||||||
"linux"
|
"linux"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd-build/engine-win32-x64-msvc",
|
"name": "@gsd-build/engine-win32-x64-msvc",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
"description": "GSD native engine binary for Windows x64 (MSVC)",
|
||||||
"os": [
|
"os": [
|
||||||
"win32"
|
"win32"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "gsd-pi",
|
"name": "gsd-pi",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "GSD — Get Shit Done coding agent",
|
"description": "GSD — Get Shit Done coding agent",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gsd/pi-coding-agent",
|
"name": "@gsd/pi-coding-agent",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"description": "Coding agent CLI (vendored from pi-mono)",
|
"description": "Coding agent CLI (vendored from pi-mono)",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"piConfig": {
|
"piConfig": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@glittercowboy/gsd",
|
"name": "@glittercowboy/gsd",
|
||||||
"version": "2.37.1",
|
"version": "2.38.0",
|
||||||
"piConfig": {
|
"piConfig": {
|
||||||
"name": "gsd",
|
"name": "gsd",
|
||||||
"configDir": ".gsd"
|
"configDir": ".gsd"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue