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.0.42 Home All releases olderv2.0.41 v2.0.43newer
Claude Code v2.0.42

Plugin Hook Filtering

What: Function-type hooks are now filtered out when serializing plugin hooks.

Details:

  • Function Er2() at line 472146 adds .filter((Q) => Q.type !== "function") to hook serialization
  • Prevents function-type hooks from being included in serialized plugin configurations
  • Evidence: Er2() at line 472146-472151

Why it matters: Function-type hooks cannot be serialized to JSON, so filtering them prevents serialization errors.

See this entry in the whole of v2.0.42 →