Releases: powersync-ja/react-native-quick-sqlite
Releases · powersync-ja/react-native-quick-sqlite
v1.1.5
Patch Changes
- 40c6dd0: Fix race condition where table change notications would trigger before COMMIT had completed.
- 2165048: Use memory temp_store
v1.1.3
Patch Changes
- b12ec4d: This pull request improves the performance of releasing lock operations. Executing multiple lock operations, such as individual calls to
.execute
, should see a significant performance improvement.
v1.1.2
Patch Changes
- 4979882: Fixed incorrect imports of
sqlite3.h
to use local version.
v1.1.0
Minor Changes
- 3bb0212: Added
registerTablesChangedHook
to DB connections which reports batched table updates once writeTransaction
s and writeLock
s have been committed. Maintained API compatibility with registerUpdateHook
which reports table change events as they occur. Added listeners for when write transactions have been committed or rolled back.
v1.0.0
Major Changes
- 7c54e8a: Version 1.0.0 release out of beta
v0.1.1
Patch Changes
- 2802916: Fixed: Missing dependency for
uuid
and race condition where ommitting await
on some lock/transaction operations could deadlock the application's main thread.
v0.0.2
Patch Changes
- c17f91c: Added concurrent read/write connection support.