Skip to content

Releases: tinyplex/tinybase

v4.7.3

28 Mar 16:45

Choose a tag to compare

Updates peer dependencies.

v4.7.2

22 Mar 14:36

Choose a tag to compare

Updates peer dependencies and fixes #139.

v4.7.1

16 Mar 16:29

Choose a tag to compare

Updates peer dependencies.

v4.7.0

12 Mar 01:48

Choose a tag to compare

This release includes the new persister-libsql module, which provides a Persister for Turso's LibSQL database.

Use the Persister by passing in a reference to the LibSQL client to the createLibSQLPersister function; something like:

const client = createClient({url: 'file:my.db'});

const client = createClient({url: 'file:my.db'});

const persister = createLibSqlPersister(store, client, {
  mode: 'tabular',
  tables: {
    load: {items: {tableId: 'items', rowIdColumnName: 'value'}},
    save: {items: {tableName: 'items', rowIdColumnName: 'value'}},
  },
});

This is the first version of this functionality, so please provide feedback on how it works for you!

v4.6.14

11 Mar 17:54

Choose a tag to compare

Updates peer dependencies.

v4.6.13

02 Mar 13:51

Choose a tag to compare

Updates peer dependencies.

v4.6.12

25 Feb 16:24

Choose a tag to compare

Updates peer dependencies.

v4.6.11

22 Feb 18:47

Choose a tag to compare

This release updates support for ElectricSQL to v0.94 and a few other peer dependencies.

v4.6.10

18 Feb 15:44

Choose a tag to compare

This updates peer dependencies.

v4.6.9

13 Feb 15:48

Choose a tag to compare

Updates a few peer dependencies.