Skip to content

Releases: simolus3/sqlite3.dart

sqlite3 2.7.6

22 May 21:11
d5daf8c
Compare
Choose a tag to compare
  • Export package:sqlite3/native_assets.dart, making it easier for libraries to support both the regular sqlite3 getter and the upcoming sqlite3NativeAssets variant.
  • Fix dereferencing null pointer when reading file names for temporary files in native VFS implementation.

sqlite3_flutter_libs 0.5.31

24 Feb 20:35
Compare
Choose a tag to compare

Update sqlite to 3.49.1

sqlite3 2.7.4

16 Feb 21:32
4de46af
Compare
Choose a tag to compare
  • Prepare support for accessing SQLite through native assets. This is available as a preview through package:sqlite3_native_assets.

sqlite3 2.7.3

08 Feb 13:51
10e90d3
Compare
Choose a tag to compare
  • Update SQLite to version 3.49.0.
  • Web: Support localtime datetime modifier in SQLite.
  • Introduce topics to dartdoc documentation.
  • Report locations of syntax errors in SqliteException.

sqlite3 2.7.0

20 Jan 16:38
Compare
Choose a tag to compare
  • Add support for commit and rollback hooks as well as a predicate that can revert transactions. Thanks to @jackd!

sqlite3 2.6.1

17 Jan 15:35
c4f1db9
Compare
Choose a tag to compare

Version 2.6.1 of the sqlite3 package fixes two issues:

  • Fix out-of-bound reads in the xWrite implementation of the OPFS-locks based file-system implementation when writing more than 64 KiB in one operation.
  • Support SQLite libraries compiled with SQLITE_OMIT_AUTOINIT.

Additionally, version 0.5.29 of sqlite3_flutter_libs upgrades sqlite to 3.48.0.

sqlite3 2.6.0

11 Jan 14:07
8365e04
Compare
Choose a tag to compare
  • Add SimpleOpfsFileSystem.deleteFromStorage to delete OPFS-based file systems.
  • Add jsonb, a Dart Codec converting Dart object from and to SQLite JSONB values.
  • Experimentally support encryption on the web through SQLite Multiple Ciphers. The readme provides more information on how to use encryption on the web.

sqlite3_flutter_libs 0.5.28

19 Dec 21:29
Compare
Choose a tag to compare
  • Update SQLite to 3.37.2.

sqlite3_flutter_libs 0.5.27

04 Dec 21:30
89f0ba6
Compare
Choose a tag to compare
  • Upgrade sqlite to version 3.47.1.
  • In addition to CocoaPods, this package now supports the Swift Package Manager for iOS and macOS builds.

sqlite3 2.5.0

24 Nov 20:30
62bcb24
Compare
Choose a tag to compare
  • Allow registering custom virtual file systems on all platforms. Previously, this was only supported on the web.
  • IndexedDB file system: Store ArrayBuffers instead of Blobs when it looks like storing blobs would cause issues.