All notable changes to capstan are documented here. The format follows Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
[1.0.0] - 2026-08-23
First stable release. The public surface — Capstan.start_link/1 options and
refusals, the Sink / CheckpointStore / SnapshotStore behaviours, the
value-free halt catalog, and the telemetry event set — is now covered by the
semver contract: additive-only changes until 2.0. C3–C6 (batching, compressed
transactions, XA tracking, the adapter) remain additive roadmap rows.
Production hardening (since 0.3.0)
- Published source carries zero machine-local provenance markers — every
plan/task/closeout identifier across
lib/rewritten to semantic prose (the hex tarball shipslib/verbatim, comments included; verified zero by sweep). - Doc truth: "Three callbacks" → four (
handle_snapshot/2predates the sentence); the C1 memory shape (one transaction buffered whole in pipeline memory; snapshot mode adds onechunk_size-bounded chunk per table) now stated in the sink contract; fixture-capture instructions point at the env-driven port; ROADMAP carries no machine-local paths. - CI tests the DECLARED Elixir floor (
~> 1.15; a dedicated 1.15.8/OTP 26 leg) and enforces the coverage threshold on every push (90.91% over the shipped library, test-support harness excluded from the denominator); actions on the node-24 runtime. - The live exclusive-end resume tripwire is multi-uuid-correct: the checkpoint
is modeled as a real processed watermark, so the tripwire survives a
long-lived substrate whose
gtid_executedcarries fabricated foreign-uuid sets (some already ingtid_purged) — where a single-uuid checkpoint is refused 1236, the exact:data_gapsemantics the library implements. - The whole project compiles warning-free on Elixir 1.20 (was 11 test-compile warnings); 629 tests green in the combined run (unit + integration + live + docker-gated) against live MySQL 8.0 and 8.4.
[0.3.0] - 2026-08-22
Changed
- Strict option surface: an option key outside the documented set — at the top
level, in
connection:, insnapshot:, or in a store block — is refused with the new:unknown_optioninstead of silently defaulting (a misspelled key such asstream_timeout:forstream_timeout_ms:is loud, never ignored).child_spec's:idis accepted. Configs passing extra keys were previously tolerated and now refuse — the reason this is a minor bump. - Align the contributor guide and README with the released 0.2.0 surface: C1 streaming and C2 initial snapshot are complete; C3–C6 and the named C2 follow-ups remain open. Register the existing XA tracking ADR 0006 in ExDoc.
- Compile warning-clean on Elixir 1.20 (pin operators in bitstring
size(...), per the 1.20 hard deprecation); the supported range is unchanged — the pinned form is valid on the declared floor (~> 1.15).
Fixed
- Thread the documented streaming-liveness options (
reconnect_backoff,heartbeat_period_ms,stream_timeout_ms) throughCapstan.start_link/1: they were silently ignored (defaults always applied) and the promised:invalid_liveness_configrefusal forstream_timeout_ms <= heartbeat_period_mswas unreachable through the public entry point. The refusal now fires at config time, before any socket opens, and valid overrides reach the connection. - Bound the liveness/backoff values to the schedulable
Process.send_afterceiling (2^32-1 ms) and gaveCapstan.Connection's direct-wiring start the same value-shape refusal the public path enforces — an over-ceiling, non-positive, or non-integer value is a value-free refusal (:config_invalid/:invalid_liveness_config), never a later timer crash or a silently disabled master heartbeat. - README install snippet pins
~> 0.3.0(the 0.2.0 tarball shipped~> 0.1.0, which cannot resolve the release the same README documents).
0.2.0 - 2026-07-22
Added — C2 initial snapshot
A consistent backfill of the rows that pre-exist a pipeline's start, woven into the
continuously-running C1 stream so there is no gap and no duplicate at the snapshot→stream
handoff — proven live under concurrent load, resumable mid-backfill, strict-once in normal
operation, fail-closed on every silent-loss condition, Rule 1 end-to-end. Additive: absent the
:snapshot config, a pipeline is pure C1, byte-for-byte.
- Public API — a
snapshot: [tables:, store:, chunk_size:]block onCapstan.start_link/1; a new optionalCapstan.Sink.handle_snapshot/2(required only in snapshot mode) delivering a concrete list of%Capstan.Change{op: :snapshot}+ a value-freeCapstan.Snapshot.Meta; upsert-by-PK sink semantics (a hard precondition). A newCapstan.SnapshotStorebehaviour (read/1+write/2over a%Capstan.Snapshot.State{},InMemoryreference impl) persists the per-table PK cursor, separate from the GTID checkpoint. - Mechanism (ADR-0005) — cursor-gated suppression + a brief per-chunk
LOCK TABLES … READthat captures an exact GTID positionG(a provable lower bound on the chunk's read view). The read-only lock-free@@gtid_executedbracket was rejected: it leads InnoDB row-visibility under concurrent commit (a probe-confirmed silent corruption). The stream advances the GTID watermark; the snapshot advances the PK cursor — two authorities, never conflated (the snapshot adds no GTID; ADR-0001 untouched). No C1b, no ADR-0004 supersession — theP0pre-seed makes the dump and the watermark agree by construction. - New source privilege — the query account needs
LOCK TABLESon the snapshot tables (in addition toSELECT); noRELOAD/FTWRL. Added toscripts/capstan-preflight.sql. - Fail-closed snapshot halts (distinct value-free reason each, tripwired): order-faithful-PK
only (
:snapshot_pk_unsupported_type; a collation-ordered string PK is refused — ROADMAP C2a),:snapshot_table_no_primary_key,:snapshot_table_not_captured,:snapshot_lock_unavailable,:snapshot_schema_drifted,:snapshot_source_mismatch(@@server_uuidacross both connections),:snapshot_chunk_read_failed,:snapshot_bootstrap_gtid_read_failed,:snapshot_coordinator_down,:snapshot_config_drifted(the configuredsnapshot.tablesno longer match a durable:complete/mid-snapshot state — a table added or removed after a state exists halts rather than silently never backfilling it), theSnapshotStorefaults, and{:snapshot_sink_error, _}. Atables: :allsnapshot is refused:config_invalid— an explicit table list is required (ROADMAP C2b). - Delivery guarantee — strict-once in normal operation; the only duplicate window is a crash
between a chunk's
{:ok}and the durablepk_cursorpersist (the one in-flight chunk re-emits, C1's bounded posture; an upsert-by-PK sink converges). A second durable high-water,delivered_pk, is persisted BEFORE each chunk emit and backstops a DELETE that lands in that same window: on restart the cursor-gate forwards a streamed delete of an already-delivered key (k ≤ delivered_pk) so the row is swept, never left as a phantom. Effect-once across the crash window is the deferred sink-owned path (ROADMAP C1a).
Docs & tooling
- A test-environment guide (
docs/testing.md) and a runnable minimal example consumer (examples/print_consumer.exs). ADR-0005 now ships in the generated documentation. - Removed a reference to a private repository from the README and ADR-0001 (the downstream-consumer example is now stated generically).
0.1.0 - 2026-07-21
Added — C1 streaming spine
The initial streaming spine: connect to MySQL as a replica, tail the row-based binary log from a GTID position, assemble committed transactions, deliver them to a sink, and durably advance a processed-GTID checkpoint — halting fail-closed on every condition that could otherwise lose or corrupt data silently.
- Public API —
Capstan.start_link/1andchild_spec/1; a supervised pipeline (Capstan.Connectionowning the socket,Capstan.AssemblerServerowning assembly, delivery, and the checkpoint). Bad config is refused before any socket opens. - Position and dedup model (ADR-0001) — GTID set is the sole authoritative and sole persisted
position; dedup by set membership via the public
Capstan.Gtid(member?/2and the interval algebra). No scalar ordinal;%Capstan.Position{}file/posare diagnostic only. - Fail-closed server preconditions (ADR-0002) — a connect-time gate on
binlog_format,binlog_row_image,binlog_row_metadata,binlog_row_value_options(PARTIAL_JSONrefused), andgtid_mode, each with a distinct value-free reason;table_id-keyed schema resolution;ROWS_QUERY_LOG_EVENTdecoded and discarded (Rule 1); TLS on by default with an explicit peer-verification choice required (:tls_verification_unspecifiedotherwise). - Transaction shape and checkpoint semantics (ADR-0003) — three terminators (
XID,QUERY("COMMIT"), self-committing DDLQUERY); XA refused honestly as:unsupported_transaction_shapewith the buffer discarded and the checkpoint held; the checkpoint as a processed-GTID watermark that advances on delivered and filtered transactions;server_id-conflict discrimination on error 1236 (:server_id_conflict, not a livelock). - Sink contract —
Capstan.Sinkwithhandle_transaction/1,handle_schema_change/2, andcheckpoint/0;changestypedEnumerable.t()(single-pass safe); DDL statement text redacted to structuredschema/table/kind. - Lib-owned checkpointing —
Capstan.CheckpointStorebehaviour +InMemoryreference implementation, persisting one processedgtid_setstring per pipeline. - Rule 1 (value-free) — row values, DDL literals,
ROWS_QUERYSQL, and the connection password never reach a log line or telemetry payload; proven red-capable on all four vectors. - Telemetry — connection, transaction, schema-change, and gap events with a value-free metadata allowlist.
- Streaming liveness — a replication heartbeat requested from the server
(
:heartbeat_period_ms, default 15 000) plus a parent-side liveness window (:stream_timeout_ms, default 60 000; must exceed the heartbeat period or start-up fails closed), so a silent half-open partition can no longer hang the pipeline: the timeout emits[:capstan, :connection, :stream_timeout], kills the blocked reader, and reconnects; a persistent partition halts as:stream_stalled. TCPkeepaliveis the OS-level backstop.
Scope (ADR-0004)
C1 ships lib-owned checkpoint mode and resume-from-durable-checkpoint
(start_position: :checkpoint) only. Sink-owned checkpoint mode and explicit start positions
(%Capstan.Position{} override, :current) are deferred and refused fail-closed
(:sink_owned_mode_unsupported, :start_position_override_unsupported,
:start_position_current_unsupported).