v2.1.191 のリリース情報をCHANGELOGとfeed.xmlで同期
本リリースでは /rewind コマンドの追加 や多数のバグ修正・パフォーマンス改善が行われ、CHANGELOG.md と feed.xml の両方が同時に更新されました。ユーザーはローカルの changelog を、ツールは Atom フィードを通じて同一情報を取得できるようになります。
背景
CHANGELOG.md はリリースノートの一次情報源として機能し、利用者が新機能と修正点を一目で把握できるように整備されています。本 PR により バージョン 2.1.191 の項目が新規追加され、23 行の箇条書きが挿入されました。これにより、ドキュメントと実装の整合性が保たれ、リリース情報の信頼性が向上します。
技術的な変更
変更対象ファイルは CHANGELOG.md と feed.xml の二つです。 CHANGELOG.md では ## 2.1.191 見出し以下に新機能・修正・改善点がすべて列挙され、既存の ## 2.1.190 には影響がありません。
@@ -1,5 +1,28 @@
# Changelog
+## 2.1.191
+
+- Added `/rewind` support for resuming a conversation from before `/clear` was run
+- Fixed scroll position jumping to the bottom while reading earlier output during a streaming response
+- Fixed background agents resurrecting after being stopped — stopping an agent from the tasks panel is now permanent
+- Fixed `/voice` showing a generic "not available" message when disabled by an organization's policy — it now explains the restriction
+- Fixed `/login` URL opening truncated in Windows Terminal when it wraps across lines
+- Fixed Cmd+click on links in fullscreen mode for Ghostty over ssh/tmux
+- Fixed `claude agents` sending builtin slash commands like `/usage` to background sessions as prompt text instead of showing a hint
+- Fixed `claude agents` job rows showing full filesystem paths for pasted images instead of the `[Image #N]` placeholder
+- Fixed hooks with comma-separated matchers (e.g. "Bash,PowerShell") silently never firing
+- Fixed `/permissions` Recently-denied tab: approving a denial now persists on close instead of being silently discarded
+- Fixed the agent panel jumping by one row when scrolling the roster past the overflow cap
+- Fixed the welcome splash art overflowing the default 80×24 macOS Terminal window
+- Fixed managed settings: `forceRemoteSettingsRefresh` now takes effect when set via MDM or file policy, and the fetch sends `Cache-Control: no-cache` to prevent proxies from serving stale responses
+- Improved sandbox network permission dialog: hosts you allow with "Yes" are now remembered for the rest of the session instead of re‑prompting on every connection
+- Improved MCP server reliability: capability discovery (`tools/list`, `prompts/list`, `resources/list`) now retries transient network errors with short backoff
+- Improved MCP OAuth: discovery and token requests now retry once after transient network errors, and headless environments skip the browser popup and go straight to the paste‑the‑URL prompt
+- Improved MCP error messages: HTTP 404 errors now show the URL and point to your MCP config
+- Improved vim mode prompt‑history search (NORMAL `/`) to hint how to reach slash commands
+- Reduced CPU usage during streaming responses by ~37% by coalescing text updates to 100ms
+- Reduced long‑session memory growth from terminal output cache
+
## 2.1.190
- Bug fixes and reliability improvements
feed.xml では <updated> タグのタイムスタンプが最新に更新され、新エントリ が v2.1.191 用に追加されています。エントリは HTML 形式の <content> に同一の箇条書きを含み、RSS リーダーは整形されたテキストをそのまま表示できます。
<updated>2026-06-24T21:58:06Z</updated>
<entry>
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.191</id>
<title>Claude Code v2.1.191</title>
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.191"/>
<updated>2026-06-24T21:58:06Z</updated>
<content type="html">
<p>• Added /rewind support for resuming a conversation from before /clear was run</p>
<p>• Fixed scroll position jumping to the bottom while reading earlier output during a streaming response</p>
…(以下同様に全 23 項目が列挙)
</content>
</entry>
設計判断
リリース情報を HTML 形式の <content> に埋め込む設計 は、機械可読性と人間可読性の両立を意図しています。各変更点は <p> タグで区切られ、RSS クライアントはそのまま段落として表示できる一方、XML パーサは構造化されたデータとして処理できます。また、古いエントリ(例:v2.1.163)が削除された点は、フィードサイズを抑えて最新情報へのフォーカスを保つためのトレードオフと見ることができます。
まとめ
CHANGELOG.md と feed.xml の同時更新により、開発者はローカルの changelog を、ツールは Atom フィードを通じて同一のリリースノートを取得できます。情報の二重化は透明性を高め、継続的インテグレーションや自動デプロイパイプラインでの利用を容易にします。