| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-04-25 | 1.2 kB | |
| TypeDB 3.10.3 source code.tar.gz | 2026-04-25 | 1.3 MB | |
| TypeDB 3.10.3 source code.zip | 2026-04-25 | 1.8 MB | |
| Totals: 3 Items | 3.1 MB | 0 | |
Download from TypeDB Package Repository:
Pull the Docker image:
:::docker pull typedb/typedb:3.10.3```
## New Features
- **Optional function returns are checked and print WARN log lines**
Optional function returns are checked and any errors result in warnings being printed to the log. This is **temporary** to provide a path to non-breaking update and **will be escalated to query-compilation errors in a future release**.
The following cases are checked:
* A function which returns an optional variable is not declared as doing so.
* A variable being assigned an optional return value is not marked with `?`
* A variable which was assigned an optional value is re-used in the same stage (subject to the same rules as regular optional variables).
## Bugs Fixed
- **Fix statistics counting**
We fix one tracking error that means that statistics can still on rare occasions skip records that are being counted.-
## Code Refactors
## Other Improvements