Changelog
v0.2.0
Released 20 October 2025.
The agent learns to take a backup, put it back, and do both across every supported Postgres major.
Agent
Added
- AddedEnd-to-end streaming backup pipeline:
pg_dump→zstd→ authenticated encryption → upload. Nothing of size is written to local disk. - AddedInverse restore pipeline: download → decrypt → decompress →
pg_restore, closing the dev-mode loop. - AddedLocked-flag
pg_dumpandpg_restoreadapters. The agent always emits Postgres custom format with a fixed set of flags. - AddedCross-version matrix:
pg_dumppinned to the source's major,pg_restorechosen asmax(source, target), with a small unencrypted descriptor sidecar so the restore knows which binary pair to ask for. - AddedEnd-to-end test matrix that runs backup and restore against real Postgres 13 through 18 in Docker.