| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-07-13 | 1.2 kB | |
| TypeDB 3.12.1 source code.tar.gz | 2026-07-13 | 1.5 MB | |
| TypeDB 3.12.1 source code.zip | 2026-07-13 | 2.0 MB | |
| Totals: 3 Items | 3.5 MB | 0 | |
Download from TypeDB Package Repository:
Pull the Docker image:
:::docker pull typedb/typedb:3.12.1```
## New Features
## Bugs Fixed
- **Fix writes deadlock for huge commits**
Fix a deadlock in large (> configured RocksDB write buffer manager limit) commits, by undoing the `allow_stall` parameter in the write buffer manager. This means that write buffers can now temporarily exceed the configured memory budget.
## Code Refactors
## Other Improvements
- **String comparison fix**
Fix the bug where during retrieval of a string attribute, the comparison bounds were applied incorrectly, discarding more answers than expected.
- **Fix runtime error handling in fetch stages executed in write queries**
Fixes a niche bug (#7864) in handling of runtime errors when fetch queries are executed in write transactions by delaying `Arc::into_inner(snapshot)` till the iterator holding a copy of the Arc is dropped.