Skip to content

v1.3.0

Choose a tag to compare

@github-actions github-actions released this 01 Aug 19:51
· 31 commits to master since this release

[1.3.0] - 2026-08-01

Added

  • Parallel reads over the REST API: read-only connections to the same
    database now run concurrently (per-file reader-writer lock with writer
    preference).

Changed

  • REST API endpoints (/db/*, /admin/*) offload blocking engine calls to
    a threadpool via asyncio.to_thread, keeping the event loop free.
  • Writes remain serialized (DuckDB single-writer model); the exclusive lock
    guarantees a read-only and a read-write connection never overlap.