From 1893f797fb94377817d71a05aac66a54e9841f39 Mon Sep 17 00:00:00 2001 From: Hunter Bown Date: Tue, 26 May 2026 13:25:55 -0500 Subject: [PATCH] docs: update CHANGELOG for v0.8.47 work Add entries for deadlock fix (#1856), composer text selection (#2228), and project context loading tracing (#2227). Add community credits for @Fire-dtx and @imkingjh999. --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 007fc825..3ffd8207 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,12 +14,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 support. Home, End, Ctrl+A, and Ctrl+E now clear the selection to prevent accidental deletions on the next keystroke (#2228). +### Changed + +- **Project context loading now logs the source file.** A tracing info + line is emitted when AGENTS.md, CLAUDE.md, or another context file is + successfully loaded into the system prompt, making it easier to verify + which file was used during prompt assembly (#2227). + ### Fixed - **Deadlock when spawning multiple concurrent sub-agents.** Replaced `RwLock`-based serialisation with a `Semaphore(1)` in `ToolCallRuntime`, preventing re-entrant tool calls from deadlocking on the same lock (#1856). +### Community + +Thanks to contributors whose PRs landed in this release: +**@Fire-dtx** (#1856), +**@imkingjh999** (#2228). + ## [0.8.46] - 2026-05-26 ### Added