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.274 ·

Postgres query gains an explicit statement timeout under a wrapped transaction

A Postgres query now runs with an explicit 2-second statement timeout inside a wrapped transaction

TierUnder the hoodhow much it should matter to you
Useful1my rating, 1 to 5
Signal1worth watching, 1 to 5
AreaElsewherewhat it touches
KindImprovementsin v2.1.274,
Under the hood

A Postgres query now runs with an explicit 2-second statement timeout inside a wrapped transaction

What

A rewritten internal database query helper now wraps its work in an explicit transaction: BEGIN, then SET LOCAL statement_timeout = '2s', then COMMIT, run with Promise.allSettled and an abort check before it even starts. This replaces an older version that made a single call without this wrapping.

Why

This puts a hard 2-second cap on how long this particular database query can run, preventing it from hanging indefinitely and holding up whatever depends on its result.

See this entry in the whole of v2.1.274 →