diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro
index 076b4cb..e8b66de 100644
--- a/src/pages/changelog.astro
+++ b/src/pages/changelog.astro
@@ -71,6 +71,8 @@ import BaseLayout from '../layouts/BaseLayout.astro';
Modernized title bar buttons. Updated window controls to compact rounded buttons with tighter spacing and better active feedback. Files: TitleBar.tsx
Terminal too close to sidebar shadow. Increased left padding in terminal content area. Files: TerminalPane.tsx
Fixed crash in read_file_range on out-of-bounds slice. Added bounds clamping to prevent panic when requesting lines beyond EOF (e.g., start_line: 350 on a 259-line file). Now returns safe empty output for extreme or inverted ranges instead of crashing.
+ Fixed reasoning blocks being dropped during final answer transition. Changed filter logic to preserve reasoning blocks when clearing stale text content. Files: useChat.ts
+ Fixed caret sync issues in Command Center textarea. Added shared autosize helper for consistent height updates and implemented explicit Shift+Enter newline insertion with proper caret position restoration. Files: CommandCenter.tsx