Kuzu V0 136: Fixed
If a version like "v0.136 fixed" implies bug fixes or patches, ensure you:
The team worked through the night, poring over lines of code, testing patches, and stressing the system to find where it was breaking. It wasn't easy; several proposed fixes introduced new issues or broke existing functionality.
However, there was one member of the team, a quiet but incredibly skilled developer named Yui, who had a knack for understanding complex systems. She took a step back, re-read the documentation and issue reports, and then suggested a novel approach to solving the bug. Her solution involved not just fixing the immediate cause but also implementing additional checks to prevent similar issues in the future. kuzu v0 136 fixed
The unpatched version of Kuzu 0.136 suffered from a reproducible crash during multi-hop variable-length path queries. Specifically, when a query contained:
MATCH (a:Person)-[:KNOWS*1..5]->(b:Person)
WHERE a.id = 136
RETURN b.name
Users reported segmentation faults (SIGSEGV) when the query engine attempted to serialize intermediate results for paths longer than three hops. The issue was traced to a memory reuse bug in the RelMultiplicity iterator. If a version like "v0
If you are currently running the broken v0.136, do not simply rebuild from source. Follow this verified migration path:
Version 0.135 broke support for nested JSON objects exceeding three levels. Developers relying on Kuzu’s built-in JSON extractor received malformed outputs or outright segfaults. This was particularly painful for those using Kuzu as an ETL (Extract, Transform, Load) tool. Users reported segmentation faults (SIGSEGV) when the query
Kuzu v0.136 fixed reintroduces a recursive descent parser with enhanced stack overflow protection. The new parser handles arbitrarily deep JSON (tested up to 128 levels) and improves parsing speed by 18% compared to v0.134 (the last stable version). Additionally, error messages now include line and column numbers for malformed JSON, drastically improving debuggability.
A research lab at TU Berlin was using Kuzu to train graph neural networks (GNNs) on the YAGO3 dataset. The crash occurred every 2 hours during neighbor sampling. With the fixed version, they achieved 48-hour continuous uptime.
