Update CHANGELOG and feed.xml for v2.1.179
This change adds the release notes for version v2.1.179 to both CHANGELOG.md and the Atom feed (feed.xml). By synchronizing these documentation sources, users can discover the latest bug fixes and improvements through the repository’s changelog or an RSS reader.
背景
The purpose of the pull request is to publish the newly fixed issues and enhancements introduced in version 2.1.179. The project maintains a single source of truth in CHANGELOG.md, and mirrors the entries in feed.xml for external consumption.
技術的な変更
CHANGELOG.md receives a new version header ## 2.1.179 followed by nine bullet‑point entries that describe specific fixes and one performance improvement. The diff shows only added lines, preserving all previous version sections unchanged.
@@ -1,5 +1,17 @@
# Changelog
+## 2.1.179
+
+- Fixed mid-stream connection drops: partial responses are now preserved instead of showing a raw error, and the spinner no longer gets stuck at "running tool"
+- Fixed mouse-wheel scrolling in WSL2 under Windows Terminal and VS Code (regression in 2.1.172)
+- Fixed a sandbox `denyRead`/`allowRead` glob over a large directory tree making the Bash tool description enormous and the session unusable on Linux
+- Fixed the feedback survey capturing a single-digit reply as a session rating immediately after a turn completes
+- Fixed the welcome screen stacking multiple promotional banners — at most one promo now shows per session
+- Fixed Ctrl+O not showing the subagent's transcript when viewing a subagent
+- Fixed clicking the prompt input not returning focus from the subagent/footer panel
+- Fixed remote session background tasks appearing stuck as "still running" between turns
+- Improved plugin loading performance in remote sessions
+
## 2.1.178
*** End of diff
feed.xml is updated in two ways: the top‑level <updated> timestamp is changed to 2026-06-16T20:22:06Z, and a new <entry> element representing version 2.1.179 is inserted. The entry includes an <id>, <title>, <link>, matching <updated> timestamp, and an HTML <content> block that repeats the nine bullet points from the changelog.
@@ -6,7 +6,22 @@
<author><name>Anthropic</name></author>
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md"/>
<link rel="self" type="application/atom+xml" href="https://raw.githubusercontent.com/anthropics/claude-code/main/feed.xml"/>
- <updated>2026-06-15T21:35:48Z</updated>
+ <updated>2026-06-16T20:22:06Z</updated>
+ <entry>
+ <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.179</id>
+ <title>Claude Code v2.1.179</title>
+ <link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.179"/>
+ <updated>2026-06-16T20:22:06Z</updated>
+ <content type="html"><p>• Fixed mid-stream connection drops: partial responses are now preserved instead of showing a raw error, and the spinner no longer gets stuck at "running tool"</p>
+<p>• Fixed mouse-wheel scrolling in WSL2 under Windows Terminal and VS Code (regression in 2.1.172)</p>
+<p>• Fixed a sandbox denyRead/allowRead glob over a large directory tree making the Bash tool description enormous and the session unusable on Linux</p>
+<p>• Fixed the feedback survey capturing a single-digit reply as a session rating immediately after a turn completes</p>
+<p>• Fixed the welcome screen stacking multiple promotional banners — at most one promo now shows per session</p>
+<p>• Fixed Ctrl+O not showing the subagent's transcript when viewing a subagent</p>
+<p>• Fixed clicking the prompt input not returning focus from the subagent/footer panel</p>
+<p>• Fixed remote session background tasks appearing stuck as "still running" between turns</p>
+<p>• Improved plugin loading performance in remote sessions</p></content>
+ </entry>
<entry>
*** End of diff
設計判断
The modification is confined to documentation files, leaving the application code untouched; therefore there is no impact on runtime behavior or compatibility. This manual update approach keeps the release notes explicit and reviewable within the same pull request. Future releases are expected to follow the same pattern, updating both CHANGELOG.md and feed.xml together.
まとめ
In summary, the PR brings version 2.1.179’s bug‑fix list to both the human‑readable changelog and the machine‑readable Atom feed, ensuring that all consumers receive consistent release information.