All notable changes to this project are documented here. The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
0.7.0 - 2026-08-02
Three additions, and not one of them came from reading this code. Two are from
Audit III, which was conducted through a real application —
NoeticEcho/newgen-elixir — by reading how the driver is actually used and
treating every workaround that application had to write as evidence of something
missing. The third is from an issue that application's author filed.
That is a different way to find things than the two audits before it, and worth
naming: Audit I read lib/ and found 31 things, Audit II found 8, and a third
pass with the same eyes would have found fewer still. A caller finds different
things, because a caller meets the API rather than the implementation.
A minor under the 0.x rule: test/api_snapshot.txt gains three functions.
Nothing is removed and nothing changes shape.
Added
TypeDB.Answer.truncated?/1— whether TypeDB gave you the whole answer. Reported as #1 by an application that must refuse to build on a partial read: the only signal waswarning/1, which is free text, so the guard was a regular expression over a server message.The obvious substitute does not work, and both halves were measured against 3.12.1 with eight rows present:
answer_count_limit: 2truncates and warns,answer_count_limit: 8returns all eight and warns nothing. TypeDB warns only when it really had more — right behaviour, and exactly what makeslength(rows) == limituseless in both directions.It is defined as "the server attached a warning", deliberately not as a match against the notice's text: that text is the server's, this driver's versioning does not cover it, and a rephrasing would silently turn the guard back into
false. A warning of some other kind, should TypeDB ever attach one, therefore reads as truncated — erring toward refusing an answer rather than building on half of one.TypeDB.TruncationIntegrationTestpins what the server actually does against every TypeDB in the CI matrix, so a change there is a red build here rather than a short answer in your application.TypeDB.running?/1andTypeDB.Connection.running?/1— whether a connection can serve a request. Every other function raises%TypeDB.Error{kind: :config}against a connection that is not running, which is right for the common case of a typo and wrong for a caller that maps driver failures onto its own error type and has nowhere to put an exception. That caller had builtis_pid(Process.whereis(conn))instead — and that does not work:GenServer.start_link/3registers the name beforeinit/1returns, so a pid exists under it before the connection can serve anything, and a call in that window raises anyway.running?/1checks what a request actually needs. A test holdsinit/2open and asserts the difference; substituting theProcess.whereis/1version fails it.TypeDB.create_database_if_not_exists/3and its!twin on the facade, delegating toTypeDB.Database.create_if_not_exists/3. The function existed and the delegate did not, so an application working throughTypeDBalone never met it and reimplemented it as "list every database on the server, then check membership" — two round trips to answer a question about one database.
0.6.0 - 2026-08-02
A second full audit, at 367a393, and the refactor it produced. Eight findings,
none critical; all eight fixed in seven commits, each verified by reintroducing
the defect and watching the new test fail. AUDIT.md carries the findings and
what closed them.
This is a minor rather than a patch, on two counts: %TypeDB.HTTP.Httpc{}
gains a field, and the administrative modules gain optional arguments. Nothing is
removed and nothing changes shape, so existing code compiles and behaves as
before.
Added
:timeoutand:deadlineon every administrative call. None ofTypeDB.Database,TypeDB.UserorTypeDB.Servertook options, so none could be given a budget — although every one of them makes an HTTP request.Database.schema/3over a large database, andServer.health/2used as a readiness probe that should give up in half a second, were stuck with the connection's default sixty. All 32 now take them, as do the five convenience delegates onTypeDB. The old arities remain.TypeDB.JSON.Jasonis now executed by the suite, directly and end to end as the configured codec. It is documented in the README, ships in the package, and had 0.00% coverage.:jasonis declaredoptional: truefor the same reason:decimalis: used only if the host application has it, never fetched on its own.
Fixed
- A successful answer could be destroyed by the code that logs its warning.
Log.answer_warning/2looked the connection up after the response had arrived, and that lookup raises when the connection is gone — so a query that had fully succeeded returned%TypeDB.Error{kind: :config}instead of its answer. Both halves of the trigger are ordinary: a supervisor restarting the connection mid-request, and a read TypeDB truncated at its 10,000-answer cap. TypeDB.HTTP.Httpcstopped an:httpcprofile it did not start. Pointing a connection at your own profile — to share sockets, or for its proxy settings — lost that profile when the connection stopped. It now tracksowned?exactly asTypeDB.HTTP.Finchhas since 0.1.x, and names its own profile per instance, so two connections can no longer share one and take each other down.:httpnaming a module that does not exist, or is not an adapter, started a connection that failed every request.nilpassed too, becausenilis an atom. All three now fail atTypeDB.start_link/1as%TypeDB.Error{kind: :config}naming the option and the module, instead of{:error, {:undef, …}}naming neither.- Fifteen public functions answered a non-binary name or query with a bare
FunctionClauseError, which CONTRIBUTING forbids by name. They now raiseArgumentErrorsaying what was expected —invalid database name :social, expected a string. TypeDB.JSON's documentation described a fallback that cannot happen. TheJasonbranch is unreachable on every Elixir this driver supports, since the built-inJSONmodule always wins. The branch is kept — it is unreachable because of a version floor, not because it is wrong — and both moduledocs now say so.Database.create_if_not_exists/3could spend its:deadlinetwice. It is the one function in the driver that makes two requests for one call, and both were given the caller's full budget, sodeadline: 5_000could take ten seconds. The second request now gets what the first did not spend.:timeoutis deliberately unchanged: it bounds one attempt, and these are two.
Testing
- A flaky test of my own making, caught by CI rather than by me. The check
that every accepted option value is accepted feeds each call
timeout: 1— one millisecond, in the list precisely to prove that 1 is legal. It rescued onlyArgumentError. One millisecond is also long enough to expire, andexists?/3is documented to raise anything that is not a clean 404, so on a slow enough adapter the request timed out and a%TypeDB.Error{}escaped. It passed locally and failed on two of the five CI matrix entries. The rescue now ignores aTypeDB.Error— this test is about the option being accepted, not about the request succeeding — and still fails on anArgumentError, which was checked by making a validator reject the value.
Known limits
:deadlinecannot cut short a connect that is already blocking. It is enforced between attempts and by shortening each attempt's receive timeout; opening the socket is bounded by:connect_timeoutalone, so a call to a host that accepts nothing can outlive its deadline by up to one:connect_timeout. Size the two together. This is documented rather than fixed on purpose: deriving the connect timeout per request is impossible under the default adapter — Mint reads it from a pool built once — and doing it for the other two would make the same option mean different things depending on your transport. Now stated inTypeDB.Configand in the errors guide.
0.5.1 - 2026-08-02
Four claims the documentation made and nothing checked, run against a live server. Two held — a transaction handle really does pass between processes freely, and a connection really does survive its server being restarted, which was simply never written down. Two were wrong, and wrong in the way that matters: not about what the driver does, but about what it exposes you to, which is the kind of wrong that has readers guarding the wrong thing.
The only change under lib/ is one error message and one moduledoc;
test/api_snapshot.txt is byte for byte 0.5.0's. The single caller-visible
difference is text the guides already tell you not to branch on.
Added
- What happens when TypeDB restarts, and what to do about it.
TypeDB.Connectionnamed "a restarted server" as one of the three reasons reactive token renewal exists, and nothing said what an application sees while the server is away or whether it recovers on its own. It does, on every adapter: calls during the outage fail askind: :transportcarrying the adapter's own reason, and the first call after the port reopens succeeds — no reconnect, no restart, nothing to signal. A transaction that was open does not survive:query/3andcommit/2on it answer404 TSV12and the writes it held are gone, which is the case worth designing around. Errors and retries now says all of it. - A server stopped mid-traffic and started again.
TypeDB.RestartIntegrationTestwarms the adapter's pool, takes the server down, asserts what callers get while it is gone, brings it back and asserts recovery — sequentially and under a concurrent burst, since a pool that kept its dead sockets shows there and not in a single call. A CI job runs it against a real server on all three adapters. - The cross-process transaction promise.
TypeDB.Transaction's moduledoc opens by saying a handle "can be passed between processes freely", and the unit suite could not check it: every transaction there runs in the process that opened it. Now covered against a live server — queried from one process and committed from another, used by twenty at once, and committed after the opening process was killed.
Changed
- "TypeDB connection :x is not running" now says the outage may be
transient. The configuration lives in an ETS table the connection process
owns — which is what lets requests run in the caller's process — so it goes
down with it, and a call made while a supervisor is restarting the connection
raises
%TypeDB.Error{kind: :config}. The message only offered "add{TypeDB, name: :x, ...}to your supervision tree", which is the right advice for a typo and the wrong place to look for someone whose supervision tree already has it. It now names both possibilities. Measured: a thousand reads across a supervised connection killed under load gave one raise and 999 successes, with the name usable again immediately. guides/errors-and-retries.mddescribed:configas "raised at start-up". It is returned bystart_link/1and raised by every other call, including transiently while the connection is down. The table row and a new section say so.TypeDB.Given's escape-hatch warning named the wrong danger.encode/1forwards any map carrying a"kind"key untouched, and the moduledoc called that "not injection-safe". Injection is what it is safe against: the payload is JSON, and TypeDB type-checks every column a query declares, so against agiven $n: string;a value taggedintegeris400 GVN7, a concept is400 PEX9, and an invented"kind"is400 HSR2. The real exposure is narrower and different in kind — a query declaring a concept column will bind whatever entity a supplied iid names, which is an insecure direct object reference. A warning that names the wrong risk has readers guarding the wrong thing, so it now says what is true, and an integration test pins all four behaviours against a live server.
0.5.0 - 2026-08-02
The driver has checked option names since 0.3.0 and their values not at all,
while TypeDB.Config had been checking the same values at start-up since 0.1.0.
The two levels now agree. No public API changed — test/api_snapshot.txt is
byte for byte 0.4.3's — but code that passes a value the driver's own typespecs
forbid will now hear about it, so this is a minor.
Upgrading from 0.4.3
One change can be noticed by working code. answer_count_limit: 0,
timeout: "5000", commit: "true" — anything whose value the option cannot
take — now raises ArgumentError where it used to reach the server and come
back as 400 HSR2, or worse, quietly succeed. nil still means "unset" and is
accepted everywhere, so answer_count_limit: maybe_a_limit is unaffected. Run
your tests.
Changed
A per-call option value the option cannot take now raises
ArgumentError. Since 0.3.0 the driver has checked option names per call; their values still travelled to the server unchecked, whileTypeDB.Confighad rejected the same values at start-up since 0.1.0. Soanswer_count_limit: 0came back as an empty answer, and-1,"10"and1.5came back as400 HSR2— the request-parse code, the same one an oversized body gets, naming no option at all.transaction_timeout_millis: 0opened a transaction.:answer_count_limit,:transaction_timeout_millis,:schema_lock_acquire_timeout_millis,:timeout,:deadline,:commit,:include_instance_typesand:include_query_structureare now checked against the same rulesTypeDB.Configuses, and a test drives both levels through the same values so they cannot drift apart again.nilmeans "unset" everywhere and is accepted —answer_count_limit: maybe_a_limitkeeps working.Code passing a value the driver's own typespecs already forbade will now hear about it, which is why this is a minor rather than a patch.
0.4.3 - 2026-08-02
0.4.2's new recipes guide told people to bulk load in batches of 2,000 rows.
The real limit is on bytes, and a batch of 2,000 can exceed it. The only change
under lib/ is six lines of @doc; test/api_snapshot.txt is byte for byte
0.4.2's.
Fixed
TypeDB refuses a request body over 2 MiB, and nothing said so. Bisected against 3.12.1: 2047 KiB is accepted, 2048 KiB is not, and there is no server flag for it. The bulk-load recipe now batches by payload size rather than row count — the ceiling is bytes, so 2,000 rows of two short attributes is 620 KiB and fine while the same 2,000 rows carrying a kilobyte of text each is not — and an integration test pins the boundary either side.
The failure has two shapes, which is the part worth knowing: a body a little over the line comes back as
400 HSR2, while one far over it makes the server close the socket, so the driver reports:transport— whichretryable?/1calls retryable and:max_retrieswill re-send. The driver cannot tell that apart from a network blip, so the guides say it instead: a bulk load that reproducibly "times out" is a batch that is too big.
0.4.2 - 2026-08-02
Documentation and CI. Not one line under lib/ changed, and
test/api_snapshot.txt is byte for byte 0.4.1's — the release exists because
the package ships its guides, and there is a new one worth having.
Added
A fifth guide, Recipes: paging a
matchbigger than TypeDB's 10,000-answer cap (and whysortis not optional there), streaming a whole result set, bulk loading, upsert and whyputis not one, counting without fetching, deleting in batches, mapping rows onto your own structs, and a schema migration that can run on every boot. The other four guides explain how the driver behaves; this one is what an application has to work out for itself.Every recipe was run against a live TypeDB 3.12.1 and carries that run's numbers — 20,000 rows loaded in 2468ms, streamed back in pages of 1,000 in 1019ms, deleted in 1447ms. A new integration test executes the same queries, because parsing a guide is not running it and a
sortclause that stops being accepted parses perfectly.CI runs the token-renewal and TLS suites. Both verify headline claims — tokens renewed before they expire, and TLS verification on by default — and neither had ever run outside somebody's terminal, because a GitHub Actions service container cannot be given the server flags they need. Their jobs start TypeDB with
docker runinstead: one with a five-second token lifetime, one with encryption enabled and a CA minted in the job. The TLS job also adds the extra hostname the mismatch test needs, so that assertion stops skipping itself, and runs all three adapters.
Fixed
- The TLS suite's hostname-mismatch test failed with "Expected truthy, got
false" when the extra hostname did not resolve — testing DNS rather than TLS
and saying nothing about which. It now names the real problem. Found by
running the suite on a machine that had lost its
/etc/hostsentry.
0.4.1 - 2026-08-02
A crash on the way out, and the test suite that should have found it. No public
API change — test/api_snapshot.txt is byte for byte 0.4.0's.
Added
- An adapter parity suite: the same seven odd-but-legal server responses —
a redirect, a
204, a mis-cased header, a duplicated one, JSON under the wrong content type, a503with a TypeDB error body, an empty200— put through all three adapters, asserting they answer identically. The head-of- line bug in 0.4.0 survived three releases because each adapter was only ever exercised against a well-behaved server. Verified to catch a real divergence by turning Req's redirect following back on.
Fixed
Stopping a connection could crash it.
TypeDB.HTTP.Finch'sterminate/1stops the pool's supervisor and caught exits, and on OTP 29Supervisor.stop/3can raise instead:proc_lib:stop/3computes the remaining timeout aftersys:terminatereturns, and a value at or below zero reachesreceive … after NegativeTimeout, which raisesErlangError :timeout_value. Seen while stopping several connections at once against sockets that were not answering — a crash report from a process that had been asked to stop.The adapter now catches errors as well as exits, and
TypeDB.Connectioncontains anything an adapter'sterminate/1does, sinceTypeDB.HTTPis a public extension point and shutdown is the last place a third-party fault should be able to matter. Covered by a test adapter that raises, throws, exits and errors on the way out.
0.4.0 - 2026-08-02
One bug, and it is the one that matters most: the driver's central claim — requests run in the calling process, so N processes issue N concurrent requests — was true of two HTTP adapters out of three.
A minor rather than a patch because the fix changes an option's default, which
this project counts as breaking whatever the option is. No public API changed;
test/api_snapshot.txt is byte for byte 0.3.1's.
Upgrading from 0.3.1
Nothing to do unless you set :max_keep_alive_length on TypeDB.HTTP.Httpc
yourself. Its default is now 0 rather than 100, and if you had raised it
deliberately, read the entry below before setting it back.
Fixed
Under
:httpc, one slow query stalled every other request on the connection. The adapter let:httpcqueue up to 100 requests onto a socket that was already busy, and:httpcprefers an existing session to opening another even while it is in flight — so a query TypeDB was slow to answer held up everything behind it. Measured against 3.12.1 with a:schematransaction held for 500ms: under Finch the waiting one-shot took 503ms and a concurrent:readtook 2ms, while under:httpcboth sat until the request timeout and the waiting one failed outright. That made "N processes issue N concurrent requests" true of two adapters out of three.:max_keep_alive_lengthnow defaults to0, so a busy socket is never queued behind::httpcopens another, bounded by:max_sessions. It costs nothing — sequential throughput is unchanged and concurrent throughput improved, 437 req/s against 368 at 64-way with less than half the p99 — and the suite now runs a slow-request-beside-a-fast-one test against all three adapters. Raising the option above0is now documented as a decision about head-of-line blocking rather than a tuning knob.
Added
bench/given.exs, so "agivenstage is the fast way to write many rows" has a number rather than a plausible argument. 2,000 rows against a local server: 101ms withgiven_rows, 1541ms for a single request whose query text carries 2,000insertstatements, 8830ms for 2,000 requests. The middle one is the honest competitor, since it is also one round trip — so the 15× between them is query compilation, and it widens with the row count.- An integration test for the
:schemadefault's exclusive lock — the likeliest performance mistake a new user makes, warned about in two places and checked in none. Holding a:schematransaction open makes a one-shot query on the default wait for it, while a one-shot:readdoes not notice.
0.3.1 - 2026-08-02
A correctness fix in the documentation, which is where this one lived: the
README told people TypeDB does not cap answer counts, and it caps at 10,000.
No public API changed — test/api_snapshot.txt is byte for byte 0.3.0's — so
this is a patch, with one new log line as the only behaviour change.
Added
- The driver now logs a
:warningwhen TypeDB attaches a warning to an answer, which in practice means "your read was truncated". It honours:log_levellike every other line, and the text is passed through rather than interpreted — a warning is prose, not an error code. bench/answer_size.exs, so "answers arrive whole" has a number: for rows of two attributes, 488 bytes on the wire and 897 decoded, per row.- A README section on where credentials live: the password and a pre-issued
token stay in the connection process and reach no log line, crash report or
telemetry event; the bearer token TypeDB issues is in the connection's
:protectedETS table by design, because requests run in the caller's process. A new test asserts no telemetry event carries either.
Fixed
- The README said "TypeDB applies no cap of its own" on answer counts. It
caps at 10,000. A
matchover 20,000 entities returns exactly 10,000 rows and a warning;reduce $n = countover the same data says 20,000. There is no server flag for it, so:answer_count_limitis the only control — and nothing said that it raises the ceiling as well as lowering it. Anyone who read that sentence, ran an unboundedmatchand counted the result was silently missing every row past the ten-thousandth. Corrected in the README,TypeDB.ConfigandTypeDB.Options, and pinned by an integration test that inserts 12,000 entities and checks all three behaviours against a live server. - The retry example in Testing an application did not
retry. Its adapter fails the first two requests and the text claimed that
"two failures then a success exercises the retry path end to end", but
:max_retriesdefaults to1, so the published example demonstrated the give-up path while saying it demonstrated the other one. It now setsmax_retries: 2, and the suite compiles the guide's own adapter and runs both outcomes through it, so the claim cannot rot back. - Every
elixirblock in every guide and in the README is now parsed by the test suite, as the notebook's already was. Nothing compiles a guide, which makes prose edited into code invisible until a reader hits it.
0.3.0 - 2026-08-02
What using it finds. Everything here came from installing the published 0.2.2 package into an application that is not this repository and writing ordinary code against it: a typo that did nothing, a documented example that raised, and a retry helper that said no to the one error it exists for.
Upgrading from 0.2.2
One change can be noticed by working code. An option a function does not
accept now raises ArgumentError instead of being ignored. If a call passes
a key that was quietly doing nothing, it will now say so — which is the point,
but it is a compile-clean change that fails at runtime, so run your tests.
Everything else is additive.
Added
TypeDB.ConceptRow.to_typed_map/1, andtyped: trueonTypeDB.ConceptRow.to_struct/3.typed_value/2returned aDecimal, aTypeDB.Durationor aNaiveDateTimeone variable at a time; the two functions that convert a whole row returned the wire string, so the same row read natively or not depending on which you reached for.to_map/1is unchanged — it is the wire form on purpose, and now says so.
Changed
A per-call option the driver does not accept now raises
ArgumentError. It used to be dropped in silence and the default applied, socommmit: falsecommitted andgiven: [...]— forgiven_rows: [...]— ran the query with no rows at all, which surfaces as a server-side complaint about a variable being both an attribute and a value and names nothing that leads you to the typo.TypeDB.Confighas rejected unknown connection options since 0.1.0 with this exact reasoning; this is the rest of the surface:TypeDB.query/4,TypeDB.transaction/5, andTypeDB.Transaction.open/4,query/3,analyze/3,commit/2,rollback/2andclose/2. Found by running the published 0.2.2 package from an application that is not this repository.Code passing a stray option starts failing, which is the point — but it is a behaviour change, so it lands in a minor rather than a patch.
Fixed
TypeDB.Error.retryable?/1saidfalsefor an isolation conflict, which is the failure its own documentation is about. Two concurrent:writetransactions touching the same data end with the loser's commit rejected as400 STC2, and a400was otherwise the driver's signal that a request will fail identically forever — so a caller following the documented retry loop gave up on precisely the error that re-running fixes.retryable_codes/0is the new list of codes that override the status, pinned by an integration test that provokes a real conflict against a live server rather than asserting the code from the stub.TypeDB.ConceptRow.to_struct/3's documented example raised: itsmatchbinds the entity variable$p, which names no field of the struct. The example now carries theselectstage that makes it true, the docs say why it is not optional, and theArgumentErrornamesselectas the fix.TypeDB.Transaction.query/3's docs said an unencodable:given_rowsvalue raises kind:config. It has raised:encodesince 0.2.0.
0.2.2 - 2026-08-01
Evidence. Every number this file publishes is now produced by a script in the
repository, the supported TypeDB floor was measured instead of assumed, and the
tests that found the three fixes below did not exist a release ago. No public
API changed — test/api_snapshot.txt is byte for byte the one 0.2.1 shipped.
Added
- A bounded concurrency soak in the integration suite: 200 concurrent reads, 100 concurrent writes checked for exactly-once landing, and 25 concurrent transactions. The numbers the CHANGELOG has published since 0.1.0 were produced by hand; these run on every push.
- A coverage floor, enforced by CI.
- A fault-injection matrix: thirteen ways an adapter or a server can misbehave,
against every public call that reaches one, asserting that each produces a
%TypeDB.Error{}and leaves the connection alive. - Property-based round-trip tests over the wire boundary —
TypeDB.Duration,TypeDB.DateTimeTZ,TypeDB.GivenandTypeDB.Concept— where every subtle bug in this driver has actually been.stream_datais a test-only dependency and does not reach the package. bench/decode.exsandbench/transport.exs, the scripts behind the numbers quoted here. They were previously run by hand from a scratch directory that no longer exists, which made every figure in this file unfalsifiable.
Changed
- The supported TypeDB floor is 3.12.0, and it is now a measured one. The
suite was run down the published releases rather than reasoned about: 3.12.0
passes whole, 3.11.5 fails fourteen integration tests, and 3.5.0 fails more
broadly still. TypeQL's
givenstage — the driver's answer to query injection — is a syntax error before 3.12, so every parameterised query fails there, andUser.delete/2on an unknown user answers 400 rather than 404. 3.12.0 is in CI's integration matrix beside 3.12.1 andlatest, so the claim stays true. The README said "3.12 or newer" before this and happened to be right; it was not evidence. - Re-measured throughput, on the scripts now in
bench/, against a local TypeDB in this project's container — 400 requests per run, warm pool, a one-rowmatch. At 200-way concurrency Finch sustains ~1820 req/s and Req ~1640, both with a p99 under 130ms;:httpcmanages ~375 req/s at a p99 of 685ms. The README's table is these numbers, and now names the script that produced them. 0.1.0 published 77 req/s for:httpcat 200-way, which did not reproduce; the ratio is the finding and it holds, the absolute numbers are a property of whatever machine you run them on.
Fixed
TypeDB.Transaction.analyze/3returned{:ok, :ok}for a 200 with an empty body, where its spec promises{:ok, map()}. It now rejects a payload that is not a structure. Found by the fault matrix. (analyze/3's return is the one documented SemVer exemption, which is why this is a patch.)TypeDB.Duration.parse/1ran a regular expression once per component, and its trailing(.*)copied the rest of the string each time. It cost 16µs a duration where every other cast costs under half a microsecond. Scanning the number's length and slicing brings it to 1.6µs — ten times faster, for the same values: checked by re-parsing 200,000 generated durations, well-formed and malformed, through both implementations.TypeDB.Concept.cast/2askedCode.ensure_loaded?(Decimal)once per value. For an application that hasDecimalthat is a cached lookup costing nothing; for one that does not it is a code-server round trip, and it was the entire cost of casting a decimal — 22µs a value, against 0.4µs with the dependency present. The answer is now memoised in:persistent_term, which takes 50,000 casts withoutDecimalfrom 1099ms to 5ms.
0.2.1 - 2026-08-01
Documentation only. The single change under lib/ is six lines of moduledoc;
test/api_snapshot.txt is byte for byte the one 0.2.0 shipped.
These were written after 0.2.0 was tagged and were briefly listed under it in this file, which was wrong: a published release does not grow.
Added
- Four guides, published with the docs and shipped in the package: Transactions, Errors and retries, Telemetry and logging, and Testing an application.
- A Livebook notebook, with a Run in Livebook badge on the README: a database, a schema, reads and writes, a parameterised query that survives a hostile value, and a transaction. Its code blocks are parsed by the test suite, and the version it installs is checked against this project.
- A Limitations section in the README: answers arrive whole, a connection points at one server, retries block the caller, one connection is one HTTP pool.
Changed
- The documentation's module groups are ordered for reading rather than by accretion, and a test now asserts every published module is filed under exactly one of them.
0.2.0 - 2026-08-01
Work towards 1.0. Retry and timeout behaviour, observability, and the shape of the public surface — the three things 1.0 makes irreversible.
Upgrading from 0.1.0
Four changes can be noticed by working code, and each is deliberate:
- Backoff delays are now random within their bound. A test that asserted an
exact wait should assert the bound, or pass a function to
:retry_backoff. - More requests are retried — reads,
rollback,close,Database.create/2,User.set_password/3, and any response with a status in the new:retry_on_status. A test counting requests to the server may see more of them.max_retries: 0andretry_on_status: []restore the old behaviour. TypeDB.GivenandTypeDB.Duration.to_iso8601/1raise%TypeDB.Error{}with kind:encodewhere they raised:config. Code matching onkind: :configto catch an unencodable value must match:encode.- Five documented error codes were wrong and are corrected below. Code
matching on
TSV2,TSV3,TSV11orSRV5should re-read that entry — the driver was reporting what its test stub had invented, not what TypeDB answers.
Everything else is additive.
Added
:retry_max_delay— a ceiling on any single backoff, whichever form produced it, including a caller's own:retry_backofffunction. Defaults to5_000;:infinityopts out.:deadline— a wall-clock budget for a whole call, retries and the waits between them included. Defaults to:infinity. Each attempt is given whichever is smaller, its own:timeoutor what the budget has left, and a retry that could not finish inside the budget is not started. Available per connection and on every function that already took:timeout.:retry_on_status— statuses to retry in addition to transport failures and timeouts. Defaults to[429, 502, 503, 504];[]opts out. A numericretry-afteris honoured, bounded by:retry_max_delay.:log_level— the quietest level a connection will log at,:noneto silence it. Every driver log line now goes through one place, and theTypeDBmoduledoc lists all of them.[:typedb, :operation, …]— a span per call into the public API, with every retry and token renewal inside it, reporting:attemptsand a low-cardinality:routesafe to use as a metric tag.[:typedb, :transaction, …]— a span perTypeDB.transaction/5, from open to commit, with an:outcomeof:commit,:rollback,:closeor:commit_failed.[:typedb, :retry, :exhausted]— emitted when a call stops retrying, with:attempts. The event to alert on.TypeDB.Telemetry.attach_default_logger/1anddetach_default_logger/0— a line per operation, transaction, sign-in and give-up, off unless asked for.:database,:transaction_typeand:transaction_idin telemetry metadata, including for/v1/query, which carries its database in the request body.TypeDB.Error.retryable?/1andTypeDB.Error.retryable_statuses/0— whether retrying could plausibly help, for the layer above the driver: retrying a whole transaction or requeueing a job, where the unit of work is bigger than one HTTP call. Callers were otherwise copyingkind in [:transport, :timeout]out of the driver's internals.TypeDB.ConceptRow.to_struct/2— builds a struct from a row, raising on a variable that names no field.Kernel.struct/2silently returns the struct's defaults there, which theto_map/1docs previously warned about at length instead of solving.- An API snapshot test.
test/api_snapshot.txtrecords the whole published surface and the suite fails when the code and the file disagree, so a SemVer decision is forced at the moment the API changes rather than at release. - A versioning policy in CONTRIBUTING: what the version number covers — telemetry event names and metadata keys, error kinds, the option set and its defaults, the transport behaviour — and what it does not.
Changed
- The default backoff is jittered.
{:exponential, base}now draws uniformly from0..base * 2 ** (n - 1)instead of returning that value exactly, so callers that failed together no longer retry together. Pass a function to:retry_backofffor a delay you can predict. - Retry eligibility is decided per operation, not per HTTP method. Read
queries, opening a
:readtransaction,analyze,rollback,close,Database.create/2andUser.set_password/3are now retried; writes, schema changes,commit,User.create/3and opening a:writeor:schematransaction are not. - Retries exhausted and token renewals that fail now log at
:warning. Both were silent. TypeDB.GivenandTypeDB.Duration.to_iso8601/1raise%TypeDB.Error{}with the new kind:encoderather than:config.:configmeans the driver was configured wrongly at start-up; these mean an Elixir term has no TypeDB wire value.Error.kind()gains:encode.- CI now compiles and runs the unit suite on Windows through all three HTTP
adapters, so the claim that the driver is pure Elixir is proven rather than
assumed.
mix typedb.checkstill wants a POSIX shell there. - A
decimalattribute is now stripped of TypeQL'sdecsuffix whether or not the optionalDecimallibrary is loaded. Without it the fallback used to hand back"12.345dec"where theDecimalpath gave12.345, so the value differed in content, not just in type, depending on which dependencies happened to be installed. Found by the new optional-dependency CI job. - The supported TypeDB range is now stated as 3.12 or newer, where the
README said "3.x". Measured against 3.5.0, the driver does not work at all
there:
givenrows are rejected,/v1/serversdoes not exist, several error codes differ and insert-then-match fails. CI runs the integration suite against3.12.1andlatest. The exact floor between 3.5 and 3.12 is not established (tdb-vtg.6). - TypeDB.Transport and TypeDB.Token are internal and no longer published in the documentation. They were never meant to be called directly.
- Five error codes were wrong. Verified against a live TypeDB 3.12.1 and
corrected in the stub, the unit tests and the documentation: opening a
transaction on an unknown database answers
400 SRV3(not404 TSV2); committing a read transaction answers400 TSV2(not400 TSV3); any operation on a finished transaction answers404 TSV12(not404 TSV11);/v1/databases/{name}/schemaon an unknown database answers404 SRV3(not404 SRV5); and a one-shot query on an unknown database answers400 SRV3. Code matching on any of the old values must change. TypeDB.transaction/5no longer rolls back a failed:readblock. TypeDB rejects that with400 TSV3, so it was a wasted round trip; the transaction is closed instead, and its telemetry:outcomeis:close.TypeDB.Transaction.open/4raisesArgumentErrornaming the bad transaction type and the three accepted ones, where it raisedFunctionClauseError.Exception.message/1on a%TypeDB.Error{}now includes the HTTP status:[server 404] TSV2: Database not found.The rendered form is what reaches a log line and an exit reason, where nobody has the struct to inspect. Message text remains outside SemVer — match on:kindand:code.
0.1.0 - 2026-07-31
Initial release. Complete coverage of the TypeDB HTTP API v1, verified against TypeDB 3.12.1 on Elixir 1.20 / OTP 29.
Added
TypeDB— connection supervision, one-shot queries and bracketed transactions.TypeDB.Connection— lazy sign-in, transparent token renewal bounded by:max_auth_renewals, and per-connection configuration held in a read-concurrent ETS table so requests run in the caller's process.TypeDB.Database— list, get, create, create-if-not-exists, delete, schema and type-schema.exists?/2raises rather than answeringfalsewhen it could not reach the server, sincefalseis the answer that makes a caller create something that already exists.TypeDB.User— list, get, create, set password, delete.TypeDB.Server— health, version and cluster membership.TypeDB.Transaction— explicit:read,:writeand:schematransactions withquery/3,analyze/3,commit/2,rollback/2and idempotentclose/2, each taking its own:timeout.TypeDB.Answer—Ok,ConceptRowsandConceptDocuments; the latter two areEnumerable.TypeDB.ConceptRow—Access-backed rows, plusvalue/2,typed_value/2andto_map/1.TypeDB.Concept— structs for entities, relations, attributes, values and every type kind, with conversion of TypeDB values to native Elixir terms.TypeDB.DurationandTypeDB.DateTimeTZ— lossless representations of TypeDB'sdurationanddatetime-tzvalues, keeping the original wire string so TypeDB's nanosecond precision survives conversion to Elixir's coarser types.DateTimeTZ.new/2builds one for writing, from aNaiveDateTimeplus an IANA zone name or a UTC offset.TypeDB.Options— transaction and query options.TypeDB.Given— encodes input rows for TypeQL'sgivenstage into TypeDB's tagged wire form, making parameterised queries safe against TypeQL injection for arbitrary input. The API's raw-JSON form is not: TypeDB parses a bare string as a TypeQL literal, so a value containing a quote is a parse error.TypeDB.Error— a single exception type carrying TypeDB's stable error codes. Every function that can fail has both a{:ok, _} | {:error, %TypeDB.Error{}}form and a!form that raises, exceptTypeDB.transaction/5, which returns the block's own value.TypeDB.HTTP— a transport behaviour with three adapters:TypeDB.HTTP.Finch(the default, a Finch pool per connection),TypeDB.HTTP.Reqfor applications already running Finch through Req, andTypeDB.HTTP.Httpcfor deployments that must run on OTP alone. All three verify TLS by default and are covered by the same test suite.- TypeDB.Transport — request building, retries and response decoding, split out of the connection process.
- TypeDB.Token — reads a token's lifetime from its JWT claims so the driver can
renew before expiry instead of discovering it from a
401. TypeDB.Telemetry—[:typedb, :request, …]and[:typedb, :sign_in, …]spans. Logging is deliberately sparse and carries:typedb_connectionin its Logger metadata; see the "Logging" section ofTypeDB.TypeDB.JSON— a codec behaviour resolving to the built-inJSON, toJason, or to a codec you configure.mix typedb.check— validates.tqlfiles with TypeDB'stypeql-checkCLI.
Verified under load
- 200-way concurrent bursts, concurrent writes and long transactions straddling
token expiry, against servers configured with one- and five-second token
lifetimes: no failures, no lost writes. Renewals coalesce into a single sign-in
per generation, and
:max_auth_renewalsbounds how many times one request will renew before giving up. - Transport throughput measured against a local TypeDB 3.12.1, 400 requests per
run: Finch sustains ~1900 req/s at 200-way concurrency where
:httpcmanages 77 with multi-second tail latency. Finch is the default for that reason.
Verified against
- TypeDB 3.12.1 (HTTP API v1) on Elixir 1.20.2 / OTP 29, including an opt-in
suite that checks the TLS defaults against a server started with
--server.encryption.enabled.