2.1.176 リリース情報をCHANGELOGとAtomフィードに追加
本PRは CHANGELOG.md にバージョン 2.1.176 のリリースノートを追記し、同内容を feed.xml に新規 <entry> として反映させることで、ドキュメントと RSS フィードの情報を同期させます。
背景
CHANGELOG.md はプロジェクトの変更履歴を一元管理するファイルであり、利用者が過去の修正や機能追加を遡る際の唯一の情報源です。外部ツールや RSS リーダーは feed.xml を通じて最新リリース情報を取得するため、両ファイルの内容が一致していることが情報取得の正確性に直結します。今回の更新は、直近のバグ修正と機能追加が多数含まれる 2.1.176 を正式に記録し、フィードでも同情報を提供することが目的です。
技術的な変更
CHANGELOG.md へは新しいバージョンセクションが挿入され、25 行の追加が行われました。主な項目はセッションタイトルの言語自動生成、フッターリンク正規表現設定、Bedrock 資格情報キャッシュの改善、モデル選択に関する複数のバグ修正などです。
@@ -1,5 +1,30 @@
# Changelog
+## 2.1.176
+
+- Session titles are now generated in the language of your conversation (set the `language` setting to pin a specific language)
+- Added `footerLinksRegexes` setting for regex‑matched link badges in the footer row, configurable via user or managed settings
+- Improved Bedrock credential caching: credentials from `awsCredentialExport` are now cached until their `Expiration` instead of a fixed 1 hour
+- Fixed `availableModels` enforcement: alias model picks can no longer be redirected to a blocked model via `ANTHROPIC_DEFAULT_*_MODEL` environment variables, and `/fast` now refuses to toggle when it would switch to a model outside the allowlist
+- Fixed auto mode failing on Fable 5 for organizations without Opus 4.8 enabled — the classifier now falls back to the best available Opus model
+- Fixed hook `if` conditions for Read/Edit/Write tool paths: documented patterns like `Edit(src/**)`, `Read(~/.ssh/**)`, and `Read(.env)` now match correctly
+- Fixed Linux sandbox failing to start when `.claude/settings.json` is a symlink with an absolute target
+- Fixed `/copy` and mouse-selection copy not reaching the system clipboard inside tmux over SSH, and tmux paste buffer not loading on versions older than 3.2
+- Fixed Remote Control connecting from web/mobile silently switching the session's model
+- Fixed Remote Control disconnect notifications showing a bare numeric code instead of a human‑readable reason, and connection failures adding a duplicate line to the conversation transcript
+- Fixed Remote Control sessions not disconnecting when you sign in to a different account
+- Fixed `/cd` and worktree moves leaving the session reporting the previous directory's git branch
+- Fixed `claude agents`: pressing back in one window no longer detaches other windows attached to the same session
+- Fixed backgrounded sessions showing "Working" forever when `/bg` mid‑turn had nothing left to continue
+- Fixed background agent search by PR URL: PRs opened during scheduled wakeups or while a job was blocked now appear in `claude agents` search
+- Fixed the agents view input showing no text cursor on Windows
+- Fixed `claude --bg -cn <name>` not seeding the session name
+- Fixed background sessions to neutralize Windows network paths in persisted state before respawn
+- Fixed background‑session respawn rejecting malformed resume IDs from corrupted state files
+- Fixed the Windows background‑service daemon not starting when `~/.claude/daemon` has the ReadOnly attribute set
+- Fixed cloud sessions failing with "Could not resolve authentication method" when idle for too long before being claimed
+- Background sessions now show clearer guidance when a window left open across an auto‑update can't submit a reply, and `claude daemon status` explains version‑skew behavior
+
## 2.1.175
***
feed.xml では <updated> タグが最新の日時に更新され、新しい <entry> が追加されています。エントリにはリリース ID、タイトル、リンク、更新日時、そして上記変更点を HTML 形式で列挙した <content> が含まれ、既存の 2.1.153 エントリは削除されています。
@@
<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-12T04:23:45Z</updated>
+ <updated>2026-06-12T21:53:21Z</updated>
+ <entry>
+ <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.176</id>
+ <title>Claude Code v2.1.176</title>
+ <link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.176"/>
+ <updated>2026-06-12T21:53:21Z</updated>
+ <content type="html"><p>• Session titles are now generated in the language of your conversation (set the language setting to pin a specific language)</p>
+...(以下省略)...</content>
+ </entry>
***
- <entry>
- <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.153</id>
- <title>Claude Code v2.1.153</title>
- ...
- </entry>
設計判断
本PRでは 自動同期スクリプトやビルドステップは導入されておらず、開発者が手作業で CHANGELOG.md と feed.xml を同時に編集 しています。従来エントリ(例: 2.1.153)が削除された点は、フィードが最新リリース情報に焦点を当てる方針が取られたことを示しています。手動更新は作業負荷と更新漏れリスクを伴いますが、変更範囲が限定的であるため導入コストは低く抑えられています。
まとめ
この変更により、CHANGELOG.md と feed.xml の両方に 2.1.176 のリリースノートが追加され、ドキュメントと RSS フィードの情報が一致しました。利用者は公式サイトと RSS リーダーの双方で同一の変更点を取得でき、今後のリリースでも同様の手順を踏むことで整合性を維持できます。