docs: update changelog for v2.18.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
6998ef2ae4
commit
6eddc6d5a2
1 changed files with 25 additions and 1 deletions
26
CHANGELOG.md
26
CHANGELOG.md
|
|
@ -6,6 +6,29 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.18.0] - 2026-03-16
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- **Milestone queue reorder** — `/gsd queue` supports reordering milestone execution priority with dependency-aware validation, persistent ordering via `.gsd/QUEUE-ORDER.json` (#460)
|
||||||
|
- **`.gsd/KNOWLEDGE.md`** — persistent project-specific context file loaded into agent prompts. New `/gsd knowledge` command with `rule`, `pattern`, and `lesson` subcommands for adding entries (#585)
|
||||||
|
- **Dynamic model discovery** — runtime model enumeration from provider APIs (Ollama, OpenAI, Google, OpenRouter) with per-provider TTL caching and discovery adapters. New `ProviderManagerComponent` TUI for managing providers with auth status and model counts (#581)
|
||||||
|
- **Expanded preferences wizard** — all configurable fields now exposed in the setup wizard, model ID validation, and `updatePreferencesModels()` for safe read-modify-write of model config (#580)
|
||||||
|
- **Comprehensive documentation** — 12 new docs covering getting started, auto-mode, commands, configuration, token optimization, cost management, git strategy, team workflows, skills, migration, troubleshooting, and architecture (#605)
|
||||||
|
- **`resolveProjectRoot()`** — all GSD commands resolve the effective project root from worktree paths instead of using raw `process.cwd()`, preventing path confusion across worktree boundaries (#602)
|
||||||
|
- **1,813 lines of new tests** — 13 new test files covering discovery cache, model discovery, model registry, models-json-writer, auto-worktree, derive-state-deps, in-flight tool tracking, knowledge, memory leak guards, preferences wizard fields, queue order, queue reorder E2E, and stale worktree cwd
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **Heap OOM during long-running auto-mode sessions** — four sources of unbounded memory growth: activity log serialized all entries for SHA1 dedup (now streaming writes with lightweight fingerprint), uncleaned `activityLogState` Map between sessions, unbounded `completedUnits` array (now capped at 200), and `dirEntryCache`/`dirListCache` growing without bounds (now evicted at 200 entries) (#611)
|
||||||
|
- **Stale worktree cwd after milestone completion** — three-layer fix: `escapeStaleWorktree()` at auto-mode entry, unconditional cwd restore in `stopAuto()`, and cwd restore on partial merge failure (#608)
|
||||||
|
- **Worktree created from integration branch instead of main** — `createAutoWorktree` reads integration branch from META.json, merge targets integration branch not hardcoded main (#606)
|
||||||
|
- **Milestone merge skipped in branch isolation mode** — branch-mode fallback detects `milestone/*` branch and performs squash-merge (#603)
|
||||||
|
- **`parseContextDependsOn()` destroys unique milestone ID case** — was lowercasing IDs, breaking dependency resolution (#604)
|
||||||
|
- **Tool-aware idle detection** — prevents false interruption of long-running tasks in auto-mode (#596)
|
||||||
|
- **Remote questions onboarding crash** — extracted `saveRemoteQuestionsConfig` into compiled src/ helper to avoid cross-boundary .ts import (#592)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Auto-mode artifact writes scoped to active milestone worktree, preventing cross-milestone pollution (#590)
|
||||||
|
|
||||||
## [2.17.0] - 2026-03-15
|
## [2.17.0] - 2026-03-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -738,7 +761,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.17.0...HEAD
|
[Unreleased]: https://github.com/gsd-build/gsd-2/compare/v2.18.0...HEAD
|
||||||
|
[2.18.0]: https://github.com/gsd-build/gsd-2/compare/v2.17.0...v2.18.0
|
||||||
[2.17.0]: https://github.com/gsd-build/gsd-2/compare/v2.16.0...v2.17.0
|
[2.17.0]: https://github.com/gsd-build/gsd-2/compare/v2.16.0...v2.17.0
|
||||||
[2.16.0]: https://github.com/gsd-build/gsd-2/compare/v2.15.1...v2.16.0
|
[2.16.0]: https://github.com/gsd-build/gsd-2/compare/v2.15.1...v2.16.0
|
||||||
[2.15.1]: https://github.com/gsd-build/gsd-2/releases/tag/v2.15.1
|
[2.15.1]: https://github.com/gsd-build/gsd-2/releases/tag/v2.15.1
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue