Sweep 19 Sep 2026 · 02:36Z Build v2.1.278 500 read Stable v2.1.267 Latest v2.1.278 Next v2.1.278 Feeds RSS JSON llms.txt Unofficial
Claude Code v2.1.269 ·

Session-event signing moved from local key material to a delegated async signer

Session-event signing now delegates to an external signer instead of signing locally with an in-process key

TierUnder the hoodhow much it should matter to you
Useful2my rating, 1 to 5
Signal2worth watching, 1 to 5
AreaPermissionswhat it touches
KindInternal Changesin v2.1.269,
Under the hood

Session-event signing now delegates to an external signer instead of signing locally with an in-process key

What

Session events used to be signed synchronously using Node's built-in cryptography library with a raw private key held in the process. Signing is now asynchronous and delegates the actual signing operation to an injected signer object, rather than performing the cryptographic signature in-process against local key material.

Why

Moving signing to a delegated, asynchronous signer means the private key material no longer needs to live directly in the process doing the signing, which can support setups where signing happens through a separate, more controlled component.

See this entry in the whole of v2.1.269 →