store_box 2.0.0
store_box: ^2.0.0 copied to clipboard
A fast, enjoyable, and secure NoSQL database written in pure Dart.
CHANGELOG.md #
2.0.0 #
- BREAKING: The API has been completely refactored to be static. You no longer need to create an instance of
StoreBox.- Migration: Change
final store = StoreBox(); await store.init();toawait StoreBox.init();.
- Migration: Change
- FEAT: Added a default box for simple, zero-configuration key-value storage with
StoreBox.put()andStoreBox.get(). - FIX: The package now works correctly on mobile devices by using
path_providerto find the correct application documents directory. - FIX: Fixed a bug where
Mapobjects could not be read from the database. - FEAT: Added
getAll()method toBoxto retrieve all items at once.
1.0.0 #
- Initial release.