Releases: andpor/react-native-sqlite-storage
Releases · andpor/react-native-sqlite-storage
Bug fixes release
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
- 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
- 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
rnpm linking for iOS - contributed by @clozr
Backfill Cordova read transaction bug fix.
Bug fixes and enhancements
- Allow retrieval of pre-populated db files from user defined locations in application bundle as well as the sandbox.
- Implement Activity lifecycle mgmt in Android native
- Fix issue #37 - Int Column type value overflow
- Fix issue #38 - Transactions not aborted with Promise runtime
- 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
- Expose a bulk data retrieval interface from JS
- Fix JS 'strict' mode execution errors
Bug fixes
Android native and bug fixes
- Android Native SQLite connectivity
- Change how React parameters are processed to map a Number to Java Double
- Implement hooks for activity life cycle and automatic db closing on destroy
- Fix How To Get Started instructions for Android
Support for Promise based API.
Final release with basic JS callbacks
This is a full feature version of the plugin supporting basic JavaScript function callbacks.