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 of v2.1.140 Home All releases olderv2.1.139 v2.1.163newer
Claude Code v2.1.140

Bridge Process Management Unified

What

The HTTP and SOCKS proxy bridge process shutdown routines have been merged into a single generic handler, fixing a subtle race where one bridge could be left dangling.

Details
  • The new shared handler KpK() correctly checks exitCode and signalCode before sending SIGTERM (previously only pid and killed were checked).
  • The setTimeout handle is now .unref()'d so it does not prevent the process from exiting if cleanup takes too long.
  • Log messages now use the bridge type as a variable: "Sent SIGTERM to HTTP bridge process" / "Sent SIGTERM to SOCKS bridge process" remain the same visible messages.
Evidence

KpK() function (search for "Sent SIGTERM to ${$} bridge process")

Strings lifted out of the shipped bundle, so the claim above can be checked against them.

See this entry in the whole of v2.1.140 →