Kuzu V0 136 Fixed [portable] Online

Kuzu V0 136 Fixed [portable] Online

MATCH (p:Person)-[:ACTED_IN]->(m:Movie) RETURN p.name, COUNT(m) AS movie_count ORDER BY movie_count DESC;

Scanning vertices on an active OnDiskGraph during uncommitted transactions occasionally fetched inconsistent states, breaking ACID compliance boundaries. kuzu v0 136 fixed

Kuzu v0.1.36 was not merely a "bug fix" patch; it was a structural update that hardened the database's relational capabilities. By implementing Foreign Keys and refining the data ingestion pipeline, Kuzu solidified its position as a robust solution for applications requiring the flexibility of Cypher with the data integrity of traditional RDBMS systems. MATCH (p:Person)-[:ACTED_IN]->(m:Movie) RETURN p

Updated Windows wheels and refined TypeScript types to align with the core implementation. Version Migration Guide Updated Windows wheels and refined TypeScript types to

MATCH (a:Person)-[:KNOWS*1..5]->(b:Person) WHERE a.id = 136 RETURN b.name

# Install specific version pip install kuzu==0.1.36 # if Python package

The core fix rewrites the DFSTraversal state machine. Previously, the engine reused a single adjacency list iterator across multiple recursion levels without deep copying the context. The fixed version now when branching, eliminating use-after-free errors.