Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All releases Home olderv2.1.113 v2.1.116newer

Claude Code v2.1.114

1 entries read diff v2.1.113 → v2.1.114 Markdown

This is a minimal patch release (from v2.1.113) containing a single bug fix that adds null-safety when accessing application state during tool permission requests, preventing a potential crash.

Find
Pick an entry · j / k steps through
1 entry

Bug Fixesopen

#

  • Fix potential crash during tool permission prompts: added optional chaining (?.) when accessing getAppState() and toolPermissionContext.mode in the permission request handler. Previously, if getAppState returned null or undefined (e.g., during teardown or an edge-case race condition), the application could throw a TypeError. The fix changes getAppState().toolPermissionContext.mode to getAppState?.()?.toolPermissionContext.mode, gracefully handling the null case. (search for "tengu_tool_use_show_permission_request" in function Qy at line ~573815)

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Verbatim
Official · Anthropic

Anthropic’s official release notes

Published verbatim by Anthropic for v2.1.114. Text is unmodified from the upstream changelog. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

  • Fixed a crash in the permission dialog when an agent teams teammate requested tool permission
System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.