dart_seq_hive_cache 1.0.0 dart_seq_hive_cache: ^1.0.0 copied to clipboard
An extension for `dart_seq` that provides a local database for log events using Hive
Unreleased #
1.0.0 #
- First stable release 🎉
- Updated
dart_seq
to 2.0.0
1.0.0-pre.1 #
- Changed SDK constraint to
^3.0.0
- Updated
dart_seq
to 1.0.0 - Added GitHub Actions workflows
0.0.6 #
- Fix invalid implementation of
peek
where only the first entry is returned multiple times
0.0.5 #
- Updated to
dart_seq
0.1.0 - Removed
registerSeqEventTypeAdapter
fromSeqHiveCache.create
factory- If you still want to override the default
SeqEventTypeAdapter
you can do so by callingHive.registerAdapter(MySeqEventTypeAdapter(), override: true)
after callingSeqHiveCache.create
- If you still want to override the default
0.0.4 #
- Fix use of invalid type id
0.0.3 #
- Make unique id publicly and statically accessible
- Added ability to disable registering the default SeqEvent type adapter
- Simplify reading back exceptions
- Updated to
dart_seq
0.0.4
0.0.2 #
- Removed dependency on
path_provider
in favour ofdart:io
(removes compatibility with web platforms)
0.0.1 #
- Initial release 🎉
- Supports creating an
SeqHiveCache
for use in anSeqLogger