Kuzu V0 136 Fixed Info
The source code has found a new home through open-source developers who have forked and updated the project under the moniker LadybugDB. Developers seeking to deploy this embedded graph database technology can safely build upon the v0.11.3 framework, confident that the core data integrity, memory leaks, and concurrency bugs have been thoroughly addressed.
One of Kùzu's standout features is its seamless integration with the modern data stack, allowing zero-copy data transfers via Apache Arrow and direct querying from DuckDB. This release irons out minor type-mapping discrepancies between Arrow data types and Kùzu’s internal logical types, specifically improving the handling of timestamp zones and nullability constraints. Performance Impact: What Users Can Expect
Utilizes a highly optimized columnar storage format tailored for rapid scans and graph traversals.
COPY Person FROM '/data/people.csv' WITH (HEADER=true); COPY Movie FROM '/data/movies.csv' WITH (HEADER=true); COPY ACTED_IN FROM '/data/acted_in.csv' WITH (HEADER=true); kuzu v0 136 fixed
If you are building graph-based applications—from recommendation engines to fraud detection—staying current with these "fixed" releases is essential for maintaining data integrity and query performance. What is Kùzu?
Analytical Cypher queries frequently rely on structural groupings and dense data metrics ( MATCH ... RETURN x, COUNT(*), AVG(y) ). Kùzu relies on low-level hash tables specifically configured for multi-threaded grouping. In earlier versions, aggregating high-cardinality columns occasionally triggered edge-case boundary miscalculations when dynamically scaling the hash slots.
A Kùzu database file is portable and can be moved across different operating systems as long as they are running the same version of the database. Releases · kuzudb/kuzu - GitHub The source code has found a new home
: Cleaned up internal memory usage functions to optimize the system's footprint. Expanded Query Features :
: Corrected a parsing layout glitch during massive CSV and Parquet bulk-ingestion pipelines that previously triggered intermittent thread panics. Comprehensive Feature Overview
| Category | Specific Fix in v0.11.2 / v0.11.3 | Benefit | | :--- | :--- | :--- | | | Fixed i128 minimum value check during parsing. | Ensures correct handling of very large integers, preventing silent data corruption. | | Delete Operations | Fixed a bug in DETACH DELETE on local relationship tables. | Guarantees that when you delete a node, all its connecting relationships are reliably removed, maintaining graph consistency. | | Indexing & Search | Implemented fts update functionality. | Enabled updates to a Full-Text Search index, making it dynamic and practical for real-world applications. | | Data Types & Structures | Implemented casting between union types and fixed nested unions/lists/arrays. | Provided greater flexibility and reliability for complex data manipulations within the graph. | | Query Execution | Fixed an issue in OnDiskGraph vertex scanning during transactions and fixed a flat select bug (from v0.7.1 ). | These fixes enhance transaction safety and ensure accurate results in specific query scenarios. | | Extension Management | Bundled four core extensions ( algo , fts , json , vector ) directly in v0.11.3 . | This eliminated the previous requirement for a local extension server, simplifying the setup process. | | Performance & Cleanup | Cleaned up unused memory estimation functions and fixed LSQB benchmark runs. | Reduced potential memory overhead and improved performance testing for developers. | | Build & Packaging | Improved static link extension error messages, enabled Rust static extensions, updated setuptools , and removed an uv dependency. | Streamlined the build process for developers integrating Kùzu, especially for those using Rust or packaging the database. | What is Kùzu
Kuzu’s development trajectory remains focused on bridging structured analytical queries with unstructured machine learning workflows. Feature Category Capability v0.13.6 Impact & Fixes Single-file storage footprint
Note: While Kùzu’s GitHub repository releases are updated frequently, the "fixed" focus in this era centers on stabilizing the major architectural changes introduced earlier in 2025. 1. Robustness in Data Loading and Parallelism
Users upgrading to Kùzu v0.13.6 will experience a noticeable improvement in database reliability, particularly during long-running analytical sessions.
Kùzu v0.1.3.6 Released: Key Fixes and Stability Improvements