CC Guide
2.1.94

Claude Code 2.1.94 - リリースノート

2026年4月7日
Claude Code

日本語サマリー

以下は Claude Code 2.1.94 のリリースノートの要約です。 ※今回のリリースに明示的な破壊的変更やセキュリティ修正は含まれていませんが、デフォルト挙動の変更(effortレベル)が一部ユーザーに影響する可能性があります。

重要な変更点・新機能

  • Amazon Bedrock (Mantle) のサポート追加: CLAUDE_CODE_USE_MANTLE=1 を設定することで利用可能になりました。
  • デフォルトの effort レベル変更: APIキー、Bedrock/Vertex/Foundry、Team、Enterpriseユーザー向けのデフォルト effort レベルが medium から high に変更されました(/effort で制御可能)。
  • プラグイン機能の向上: プラグインのフロントマターでの YAML スキルフック定義が無視される問題が修正され、"skills": [""] で宣言されたプラグインがディレクトリ名ではなく frontmatter の name を使用するよう改善了りました。また keep-coding-instructions フィールドがサポートされました。
  • フックとセッション機能の拡張: UserPromptSubmit フックに hookSpecificOutput.sessionTitle が追加され、セッショントイトルの設定が可能になりました。また、--resume が同一リポジトリの他のワークツリーから直接セッションを再開できるように改善されました。
  • [VSCode] UIとパフォーマンスの改善: セッション開始時のコールドオープンの処理が削減され、ドロップダウンメニューの誤選択バグが修正されました。また、settings.json のパース失敗時に権限ルールが未適用であることを知らせる警告バナーが追加されました。

重要なバグ修正

  • API制限とエラー処理の改善: 429レート制限エラー時に長時間サイレント待機してエージェントがフリーズする問題が修正され、即座にエラーが表示されるようになりました。macOSのコンソールログイン失敗時のサイレントエラーも表出されるようになり claude doctor で診断可能になりました。
  • マルチバイト文字(CJK等)の破損を修正: ストリーミングのチャンク境界で UTF-8 シーケンスが分割されることにより、CJK(日本語等を含む)文字が U+FFFD として文字化け(破損)する重大なバグが修正されました。
  • レンダリングとターミナルの修正: 長時間実行中のセッションで過去の差分(diff)が繰り返し表示されたり空白ページになる問題や、tmux/xterm.js環境でのリンク二重タブ表示、ネイティブターミナルのカーソル追跡(アクセシビリティ)問題など、複数のUI・ターミナル描画バグが修正されました。
  • 環境変数とSDKの修正: settings.jsonenv で設定された FORCE_HYPERLINK が無視される問題や、SDK/printモードでストリーミング途中の割り込み時に会話履歴が保存されない問題が修正されました。また、Amazon Bedrock での Sonnet 3.5 v2 呼び出し時に us. 推論プロファイル ID が使用されるよう修正されました。

原文(Release Notes)

What's changed

  • Added support for Amazon Bedrock powered by Mantle, set CLAUDE_CODE_USE_MANTLE=1
  • Changed default effort level from medium to high for API-key, Bedrock/Vertex/Foundry, Team, and Enterprise users (control this with /effort)
  • Added compact Slacked #channel header with a clickable channel link for Slack MCP send-message tool calls
  • Added keep-coding-instructions frontmatter field support for plugin output styles
  • Added hookSpecificOutput.sessionTitle to UserPromptSubmit hooks for setting the session title
  • Plugin skills declared via "skills": ["./"] now use the skill's frontmatter name for the invocation name instead of the directory basename, giving a stable name across install methods
  • Fixed agents appearing stuck after a 429 rate-limit response with a long Retry-After header — the error now surfaces immediately instead of silently waiting
  • Fixed Console login on macOS silently failing with "Not logged in" when the login keychain is locked or its password is out of sync — the error is now surfaced and claude doctor diagnoses the fix
  • Fixed plugin skill hooks defined in YAML frontmatter being silently ignored
  • Fixed plugin hooks failing with "No such file or directory" when CLAUDE_PLUGIN_ROOT was not set
  • Fixed ${CLAUDE_PLUGIN_ROOT} resolving to the marketplace source directory instead of the installed cache for local-marketplace plugins on startup
  • Fixed scrollback showing the same diff repeated and blank pages in long-running sessions
  • Fixed multiline user prompts in the transcript indenting wrapped lines under the caret instead of under the text
  • Fixed Shift+Space inserting the literal word "space" instead of a space character in search inputs
  • Fixed hyperlinks opening two browser tabs when clicked inside tmux running in an xterm.js-based terminal (VS Code, Hyper, Tabby)
  • Fixed an alt-screen rendering bug where content height changes mid-scroll could leave compounding ghost lines
  • Fixed FORCE_HYPERLINK environment variable being ignored when set via settings.json env
  • Fixed native terminal cursor not tracking the selected tab in dialogs, so screen readers and magnifiers can follow tab navigation
  • Fixed Bedrock invocation of Sonnet 3.5 v2 by using the us. inference profile ID
  • Fixed SDK/print mode not preserving the partial assistant response in conversation history when interrupted mid-stream
  • Improved --resume to resume sessions from other worktrees of the same repo directly instead of printing a cd command
  • Fixed CJK and other multibyte text being corrupted with U+FFFD in stream-json input/output when chunk boundaries split a UTF-8 sequence
  • [VSCode] Reduced cold-open subprocess work on starting a session
  • [VSCode] Fixed dropdown menus selecting the wrong item when the mouse was over the list while typing or using arrow keys
  • [VSCode] Added a warning banner when settings.json files fail to parse, so users know their permission rules are not being applied