CHANGELOGとAtomフィードにv2.1.183リリース情報を追加
v2.1.183 のリリースノートを CHANGELOG.md に追記し、同内容を feed.xml の Atom フィードへ反映させることで、ユーザーと自動化ツールが最新情報を取得できるようにします。
背景
CHANGELOG.md はプロジェクトの公式リリース履歴として利用され、開発者だけでなく CI/CD パイプラインや外部通知システムが参照します。今回の v2.1.183 では安全性向上や UI 改善など多数の変更が含まれ、利用者への周知が必要でした。feed.xml は Atom 形式で提供され、RSS リーダーや自動デプロイツールが購読できるため、同様に更新が求められます。
技術的な変更
CHANGELOG.md に v2.1.183 用の見出しと 20 行以上の箇条書きが新規追加されました。主な追加項目は以下の通りです。
@@ -1,5 +1,25 @@
# Changelog
+## 2.1.183
+
+- Improved auto mode safety: destructive git commands (`git reset --hard`, `git checkout -- .`, `git clean -fd`, `git stash drop`) are now blocked when you didn't ask to discard local work, `git commit --amend` is blocked when the commit wasn't made by the agent this session, and `terraform destroy`/`pulumi destroy`/`cdk destroy` are blocked unless you asked for the specific stack
+- Added a warning when the requested model is deprecated or automatically updated to a newer model, shown on stderr in print mode (`-p`) and now also covering models set in agent frontmatter
+- Added `attribution.sessionUrl` setting to omit the claude.ai session link from commits and PRs in web and Remote Control sessions
+- Added `/config --help` to list all available shorthand keys for `/config key=value`
+- Changed `/config` toggle behavior: Enter and Space both change the selected setting, and Esc now saves and closes instead of reverting
+- Removed the startup "setup issues" line under the logo — run `/doctor` to see configuration issues or use `--debug`
+- Fixed `thinking.disabled.display: Extra inputs are not permitted` 400 errors on subagent spawns and session-title generation for affected configurations
+- Fixed WebSearch returning empty results in subagents
+- Fixed the terminal cursor being stranded above the prompt after navigating history in vim mode with the native cursor enabled
+- Fixed fullscreen TUI corruption (statusline mid-screen, duplicated spinner rows, merged text) in Windows Terminal under heavy nested-subagent load
+- Fixed turns silently completing with no visible output when the model returned only a thinking block; Claude now re-prompts once
+- Fixed user-level skills appearing multiple times in slash-command autocomplete when multiple plugins are enabled
+- Fixed MCP servers requiring authentication exposing auth-stub tools to the model in headless/SDK mode
+- Fixed tmux teammate panes failing to launch when the shell has slow rc-file initialization, and keystrokes typed during agent spawn leaking into the new tmux pane instead of the leader prompt
+- Fixed background tasks started by a teammate being killed when the teammate finishes a turn
+- Fixed scheduled task and webhook trigger deliveries being treated as keyboard input; they now classify as task notifications and can no longer approve a pending action or set the session title in auto mode
+- Fixed focus mode showing "Ran N PostToolUse hooks" timing lines under each response
## 2.1.181
feed.xml では <updated> タグを最新のタイムスタンプに更新し、v2.1.183 用の <entry> 要素が新規に挿入されました。エントリはリリースページへのリンク、タイトル、更新時刻、そして HTML 化されたリスト項目を content に格納しています。
@@ -6,7 +6,30 @@
<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-17T22:07:34Z</updated>
+ <updated>2026-06-19T01:20:44Z</updated>
+ <entry>
+ <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.183</id>
+ <title>Claude Code v2.1.183</title>
+ <link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.183"/>
+ <updated>2026-06-19T01:20:44Z</updated>
+ <content type="html"><p>• Improved auto mode safety: destructive git commands (git reset --hard, git checkout -- ., git clean -fd, git stash drop) are now blocked when you didn't ask to discard local work, git commit --amend is blocked when the commit wasn't made by the agent this session, and terraform destroy/pulumi destroy/cdk destroy are blocked unless you asked for the specific stack</p>
+<p>• Added a warning when the requested model is deprecated or automatically updated to a newer model, shown on stderr in print mode (-p) and now also covering models set in agent frontmatter</p>
+...(以下略)...</content>
+ </entry>
<entry>
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.181</id>
<title>Claude Code v2.1.181</title>
設計判断
プロジェクトは 人間向け の CHANGELOG.md と 自動購読向け の feed.xml という二本柱でリリース情報を提供しています。今回の変更は両媒体に同一内容を追加し、情報の食い違いを防止する設計方針を具現化しています。feed.xml のエントリ構造は必ず「タイトル・リンク・更新日時・HTML コンテンツ」を含めることを前提にしており、今後のリリース追加作業がテンプレート化しやすくなる点が特徴です。また、<updated> タグを同期させることでフィード全体の新鮮さが保たれ、外部ツールのキャッシュ無効化が容易になります。
まとめ
本PRは v2.1.183 のリリースノートを CHANGELOG.md と feed.xml の双方に追加し、ユーザーと自動化システムが同時に最新情報を取得できるようにしました。ドキュメントと Atom フィードの一貫更新は、リリース情報の可視性と信頼性を高める重要な設計選択です。