Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
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.
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
The hook execution system now supports individual timeout configurations for each command within a hook. Previously, all commands shared a single global timeout, but now each command can specify its own timeout value.
Usage Example: When configuring hooks, you can now specify a timeout for individual commands:
{
"hook_event_name": "pre-commit",
"commands": [
{
"command": "npm test",
"timeout": 30 // 30 seconds timeout
},
{
"command": "npm run lint",
"timeout": 10 // 10 seconds timeout
}
]
}
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
A new hook event type SubagentStop has been added to the available hook events. This allows you to configure commands that run when a subagent completes its execution.
Available hook events now include:
PreToolUse - Before a tool is executedPostToolUse - After a tool completesNotification - For notification eventsStop - When the main process stopsSubagentStop - When a subagent completes (NEW)Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
The hook system now passes the complete hook configuration object to commands instead of just the userFacingInput field. This provides hooks with more context about the event that triggered them.
Before: Hooks received only userFacingInput as JSON After: Hooks receive the entire hook configuration object including hook_event_name and other metadata
What's wrong with this entry?
node:stream and stream modules{ cwd } from node:processPassThrough stream imports for improved stream handlingOther releases about the same thing. Found by shared names or similar wording; neither means one caused the other.
What's wrong with this entry?
What's wrong with this entry?
Published verbatim by Anthropic for v1.0.41. 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.
tool_decision eventThe system prompt was not captured for this release, so this page cannot say whether it moved.