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.219 Home All releases olderv2.1.218 v2.1.220newer
Claude Code v2.1.219

Memory sync no longer suppresses pushes for the whole session

You'll notice
Useful4 Signal0
Memory Sync

One failed memory sync no longer silently stops all memory pushes for the rest of your session.

What

A single memory push failure used to silently stop all further debounced pushes and change notifications for the rest of the session; suppression now applies only to individual stores.

Details
  • The per-scope memory watcher state dropped its pushSuppressedReason field, along with the session-wide suppression it drove (logged as "suppressing retry for the rest of this session")
  • The two early-returns keyed on that field are gone, and change events now always re-arm the debounce timer
  • Per-store suppression remains, carrying a suppressedUntilMs expiry, and the "unlink cleared store suppression for" recovery path is unchanged
Evidence

memory-watcher[, pushSuppressedReason

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.219 →