Skip to content

Releases: andpor/react-native-sqlite-storage

Bug fixes release

26 Jul 10:11
Compare
Choose a tag to compare
1. Fix for Cordova issue #517: reject ALTER, REINDEX and REPLACE operations in readTransactions
2. Stop remaining transaction callback in case of an error with no error handler returning false

Bug fixes and enhancements

05 Jul 08:24
Compare
Choose a tag to compare
  • Backward incompatible change. Boolean params will now be coverted and stored as int type, 0 and 1, in compliance with SQLite specifications. Issue #63
  • Database decoupled from the Activity lifecycle on Android. With this change, the database will not be closed without explicit instructions to close it. SQLitePluginPackage constructor change. Pull Request #62
  • Correct handling for executeSql with object as sql value (solves a possible crash on iOS)
  • Backfill cordova-sqlite-storage fix - readTransaction allows modification in case of extra semicolon before SQL. Issue #460

Database location changes & bug fixes

21 Jun 07:37
Compare
Choose a tag to compare
  • Default location changes for iOS for App Store iCloude compliance - backward incompatible release. Default now is no-sync location instead of docs.
  • Ability to point to read-only db file in app bundle directly without requiring it to be copied elsewhere.
  • Check if db is open before throwing an exception (triggered in android lock workaround)
  • Fix for issue #57. Can't find variable: Blob

rnpm support and bug fix release

13 May 07:49
Compare
Choose a tag to compare
rnpm linking for iOS - contributed by @clozr
Backfill Cordova read transaction bug fix.

Bug fixes and enhancements

30 Mar 17:31
Compare
Choose a tag to compare
  1. Allow retrieval of pre-populated db files from user defined locations in application bundle as well as the sandbox.
  2. Implement Activity lifecycle mgmt in Android native
  3. Fix issue #37 - Int Column type value overflow
  4. Fix issue #38 - Transactions not aborted with Promise runtime
  5. Backfill fixes from Cordova SQLite Storage
    • add sqlBatch to facilitate batch exec of simple SQL statements (Android + iOS)
    • add echoTest for plugin integrity test

Minor bug fixes

17 Mar 11:30
Compare
Choose a tag to compare
  1. Expose a bulk data retrieval interface from JS
  2. Fix JS 'strict' mode execution errors

Bug fixes

28 Dec 18:06
Compare
Choose a tag to compare
  1. Fix runtime reflection error in SQLiteArray and SQLiteObject in pure Java Android implementation.

Android native and bug fixes

26 Dec 10:35
Compare
Choose a tag to compare
  1. Android Native SQLite connectivity
  2. Change how React parameters are processed to map a Number to Java Double
  3. Implement hooks for activity life cycle and automatic db closing on destroy
  4. Fix How To Get Started instructions for Android

Support for Promise based API.

16 Nov 07:24
Compare
Choose a tag to compare

Final release with basic JS callbacks

09 Nov 11:07
Compare
Choose a tag to compare

This is a full feature version of the plugin supporting basic JavaScript function callbacks.