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.239 Home All releases olderv2.1.238 v2.1.240newer
Claude Code v2.1.239

Stall detection separates real hangs from clock jumps

You'll notice
Useful2 Signal1
Diagnostics

A system clock jump no longer gets misreported as Claude Code hanging.

What

The event-loop stall detector now measures elapsed time with a monotonic clock as well as the wall clock, so a system clock jump is no longer reported as a stall.

Details
  • New reported fields: monotonic stall duration, clock jump, whether a slow terminal write was blocking, and whether a resume signal (SIGCONT) was seen, meaning the machine had been suspended.
  • Reporting is deferred to the next tick so measuring the stall does not lengthen it.
  • Runs whenever the detector is started.
Evidence

monotonic_stall_ms

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

Related

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

See this entry in the whole of v2.1.239 →