Skip to content

Releases: OP-Engineering/op-sqlite

2.0.9

29 Dec 20:50
0c82882
Compare
Choose a tag to compare

What's Changed

  • Clean up code to make it more C++ and use references to prevent copying strings arounds by @ospfranco in #31

Full Changelog: 2.0.8...2.0.9

Allow writing to result set

29 Dec 18:47
77ddee2
Compare
Choose a tag to compare

Previously it was not possible to write to the returned data by the queries (because they are HostObjects). This is now enabled, including adding new properties to the objects.

const res = db.execute('SELECT * FROM User');

res.rows!._array[0].myWeirdProp = 'quack_changed';

res.rows!._array[0].name = 'quack_changed';

Full Changelog: 2.0.7...2.0.8

Turbo Module

10 Dec 08:50
bbe5490
Compare
Choose a tag to compare

Module has been converted into a Turbo Module, no functionality change but it future proofs the package

Turbo Module

08 Dec 17:33
6639392
Compare
Choose a tag to compare
2.0.7-rc1

Improve statement error handling

07 Dec 15:37
fd70bcf
Compare
Choose a tag to compare

Fixes some errors when parsing the remaining of an statement when it is empty

react-native-macOS support

06 Dec 08:09
7a82369
Compare
Choose a tag to compare

It now compiles under macOS 10.13 (High Sierra)

Prepared Statements

05 Dec 15:16
e2cec32
Compare
Choose a tag to compare

What's Changed

  • Prepared Statements by @ospfranco in #24
  • Fixes some memory leaks while hot reloading

Full Changelog: 2.0.1...2.0.2

Fixes Expo Reload

05 Dec 06:29
dc8f5d6
Compare
Choose a tag to compare

Fixes reload/hot reload on expo dev client

2.0.0

04 Dec 13:54
3375904
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.0.14...2.0.0

The use of the location param has changed! This is a breaking change! check out the README

Bug and crash fixes

26 Nov 12:48
57b3c08
Compare
Choose a tag to compare

What's Changed

  • fix: metadata type to 'UNKNOWN' when type is NULL by @KusStar in #14
  • Add methods to remove hooks by @KusStar in #15

New Contributors

Full Changelog: 1.0.13...1.0.14