2.1.176 リリース情報をCHANGELOGとAtomフィードに追加

anthropics/claude-code

本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">&lt;p&gt;• Session titles are now generated in the language of your conversation (set the language setting to pin a specific language)&lt;/p&gt;
+...(以下省略)...</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.mdfeed.xml を同時に編集 しています。従来エントリ(例: 2.1.153)が削除された点は、フィードが最新リリース情報に焦点を当てる方針が取られたことを示しています。手動更新は作業負荷と更新漏れリスクを伴いますが、変更範囲が限定的であるため導入コストは低く抑えられています。

まとめ

この変更により、CHANGELOG.mdfeed.xml の両方に 2.1.176 のリリースノートが追加され、ドキュメントと RSS フィードの情報が一致しました。利用者は公式サイトと RSS リーダーの双方で同一の変更点を取得でき、今後のリリースでも同様の手順を踏むことで整合性を維持できます。

記事メタデータ

Generated by:
gpt-oss-120b for DiffDaily
LLM Trace:
07b363f8

この記事はAIによって自動生成されています。内容の正確性については、必ずソースコードやPRを確認してください。

品質レビュー結果

Review Status:
リトライ後承認
Review Count:
4回 (改善を経て承認)
Reviewed by:
gpt-oss-120b for DiffDaily

Review Criteria:

記事構成 ✓ PASS

Title, Context, Technical Detailの存在と明確さ

リード文、背景、技術的な変更、設計判断、まとめの5つのセクションが揃っており、総論→各論→結論の流れが明確です。

カスタムMarkdown構文 ⚠ WARNING

シンタックスハイライト・GitHubリンク記法の正確性

コードブロックは `diff:CHANGELOG.md`・`xml:feed.xml` と正しい形式ですが、PR番号やIssue番号へのリンクが欠如しています。

対象読者への適合性 ✓ PASS

エンジニア向けの適切な技術レベルと表現

専門的な開発者向けの記述で、初心者向けの過度な解説はありません。

パラグラフ・ライティング ✓ PASS

トピックセンテンス・1段落1トピック・段落長

各セクションは総論パラグラフ→具体例→結論の構成で、トピックセンテンスが先頭にあり、段落は適切な長さで空行で区切られています。

Diff内容との照合 ⚠ WARNING

コードブロックとDiff内容の一致

CHANGELOG.md の diff は正確に掲載されていますが、feed.xml の `<content>` 部分は「...(以下省略)...」と省略しており、Diff 全体を完全に反映していません。

技術用語の正確性 ✓ PASS

技術用語の正確な使用

使用されている用語はPRおよびDiffと整合しており、誤用は見られません。

説明の技術的正確性 ✓ PASS

技術的主張の正確性と論理性

技術的な説明はDiffの内容と合致しており、根拠のない主張はありません。

事実の突合 ✓ PASS

PR情報による主張の裏付け(ハルシネーション検出)

記事中の事実はすべてPR・Diffで裏付けられており、外部知識の捏造はありません。

数値・固有名詞の確認 ⚠ WARNING

PR番号・コミットID・バージョン等の正確性

PR番号として `#ca9f604` を使用していますが、これはコミットハッシュであり、正しいPR番号形式ではありません。

タイトル・説明との一致 ✓ PASS

記事タイトル・説明とPR内容の一致

タイトルはPRの内容(CHANGELOG と feed.xml の更新)を正確に表しています。

外部知識の正確性 ✓ PASS

PRに記載のない外部知識(LTS、サポート状況など)の不使用

記事はPRに記載された範囲外のバージョンサポート情報やリリース日程等を含んでいません。

時間表現の正確性 ✓ PASS

時間表現がPR情報と一致しているか

日時表現はDiffに示された `2026-06-12T21:53:21Z` と一致しています。