nebula_db 2.0.2
nebula_db: ^2.0.2 copied to clipboard
A production-grade relational database engine written in pure Dart. Features include WAL, MVCC, B-Tree indexing, SQL execution, and crash recovery.
2.0.2 — 2026-04-29 #
Fixed #
-
Fixed a critical packaging issue where core source files were located outside the
lib/directory, causing import failures when usingpackage:nebula_db/.... -
Resolved multiple "file not found" errors affecting modules such as:
engine/sql/storage/catalog/index/
-
Fixed invalid exports in
nebula_db.dartthat referenced non-existent or unpublished files.
Changed #
-
Reorganized the project structure to comply with Dart package conventions:
- Moved all source files under the
lib/directory
- Moved all source files under the
-
Established a clean public API entry point:
lib/nebula_db.dart
Improved #
-
Full compatibility with:
- Flutter (Windows, Web, Android)
- Dart package resolution system (
pub get,pub.dev)
-
Improved developer experience when integrating the package via
pub.devor local path dependencies
Notes #
- ⚠️ This release fixes a critical packaging issue present in version
2.0.1 - Users are strongly advised to upgrade immediately