| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| tigerbeetle-x86_64-linux.zip | 2026-03-09 | 7.0 MB | |
| tigerbeetle-x86_64-windows-debug.zip | 2026-03-09 | 5.8 MB | |
| tigerbeetle-x86_64-windows.zip | 2026-03-09 | 7.8 MB | |
| vortex-driver-zig-aarch64-linux.zip | 2026-03-09 | 2.2 MB | |
| vortex-driver-zig-x86_64-linux.zip | 2026-03-09 | 2.2 MB | |
| tigerbeetle-aarch64-linux-debug.zip | 2026-03-09 | 12.4 MB | |
| tigerbeetle-aarch64-linux.zip | 2026-03-09 | 6.8 MB | |
| tigerbeetle-universal-macos-debug.zip | 2026-03-09 | 14.1 MB | |
| tigerbeetle-universal-macos.zip | 2026-03-09 | 14.6 MB | |
| tigerbeetle-x86_64-linux-debug.zip | 2026-03-09 | 12.3 MB | |
| 0.16.76 source code.tar.gz | 2026-03-06 | 1.9 MB | |
| 0.16.76 source code.zip | 2026-03-06 | 2.2 MB | |
| README.md | 2026-03-06 | 3.1 kB | |
| Totals: 13 Items | 89.4 MB | 0 | |
0.16.76
Supported upgrade versions
Oldest supported client version: 0.16.4 Oldest upgradable replica version: 0.16.72
Server
- Binary: Download the zip for your OS and architecture from this page and unzip.
- Docker:
docker pull ghcr.io/tigerbeetle/tigerbeetle:0.16.76 - Docker (debug image):
docker pull ghcr.io/tigerbeetle/tigerbeetle:0.16.76-debug
Clients
NOTE: Because of package manager caching, it may take a few minutes after the release for this version to appear in the package manager.
You cannot run a newer client against an older cluster: clients are only compatible
with replicas from their own release or newer, subject to the newer release's
Oldest supported client version.
- .NET:
dotnet add package tigerbeetle --version 0.16.76 - Go:
go mod edit -require github.com/tigerbeetle/tigerbeetle-go@v0.16.76 - Java: Update the version of
com.tigerbeetle.tigerbeetle-javainpom.xmlto0.16.76. - Node.js:
npm install --save-exact tigerbeetle-node@0.16.76 - Python:
pip install tigerbeetle==0.16.76
Changelog
Features
Expose CLI arguments to diagnose connectivity issues with AMQP and TigerBeetle during CDC.
Users can now specify --amqp-timeout-seconds and --tigerbeetle-timeout-seconds
(both default to 30), which define the maximum time to wait for a reply
from AMQP and TigerBeetle respectively.
Record request timing metrics for reserved VSR operations.
This gives users visibility into the latency of client registrations (the
first request a client sends to the cluster), using the register operation.
Internals
Add tidy check to flag functions with length [71, 72], as per TigerStyle.
This check intentionally incentivizes shortening the length to <=70 for functions that are just over, as a starting point towards the 70-line limit.
Various documentation improvements.
Use a fixed, high retry delay instead of exponential backoff to work around GitHub availability.
Various refactors and debug logging improvements in compaction.
Add logging to clarify the semantics of multiversion upgrade polling.