Releases: simolus3/sqlite3.dart
Releases · simolus3/sqlite3.dart
sqlite3_flutter_libs 0.5.26
- Upgrade sqlite to version
3.47.0
.
sqlite3 2.4.7
- Web: Improve performance of in-memory and IndexedDB file system implementations.
sqlite3 2.4.6
- WebAssembly: Call
_initialize
function of sqlite3 module if one is present. - Support version 1.0.0 of
package:web
.
sqlite3 2.4.5
- Fix a bug in the OPFS-locks implementation causing a deadlock when the
xSleep
VFS call is issued on web builds. - Fix selecting large integers (being represented as a
BigInt
in Dart) not working when compiled with dartdevc.
sqlite3_flutter_libs 0.5.22
- Upgrade sqlite to version
3.46.0
.
sqlite3 2.4.3
- Migrate away from legacy web APIs:
dart:html
,dart:js
,dart:indexeddb
andpackage:js
are no longer imported from this package. - Experimentally support being compiled to WebAssembly. Strong caveats apply, please check #230 before relying on this!
sqlite3_flutter_libs 0.5.21
- Upgrade sqlite to version
3.45.3
.
sqlite3 2.4.2
- Fix string and blob arguments to prepared statements never being deallocated (#225).
sqlite3 2.4.1
- Allow version
0.7.x
of thejs
package. - Reduce size of
sqlite3.wasm
bundle by removing symbols not referenced in Dart.
sqlite3 2.4.0
- Add
isReadOnly
andisExplain
getters to prepared statements. - Set
NativeCallable.keepIsolateAlive
tofalse
for callables managed by this package.