@livestore/wa-sqlite 1.0.3-dev.6 → 1.0.5-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,6 +6,7 @@ Changes include:
6
6
  - Change API to expose synchronous functions
7
7
  - Keeps `open_v2` but additionally exposes `open_v2Sync` which is synchronous
8
8
  - Add `serialize`, `deserialize` and `backup` functions
9
+ - Add `session_` extension functions
9
10
  - `src/types/index.d.ts`
10
11
  - Adjust types to match the new sync API
11
12
  - No longer `declare` `SQLiteAPI` / `SQLiteVFS` globally but export it properly
@@ -15,7 +16,7 @@ Changes include:
15
16
 
16
17
  ---
17
18
 
18
- [![wa-sqlite CI](https://github.com/rhashimoto/wa-sqlite/actions/workflows/ci.yml/badge.svg?branch=breaking-changes)](https://github.com/rhashimoto/wa-sqlite/actions/workflows/ci.yml?branch=breaking-changes)
19
+ [![wa-sqlite CI](https://github.com/rhashimoto/wa-sqlite/actions/workflows/ci.yml/badge.svg)](https://github.com/rhashimoto/wa-sqlite/actions/workflows/ci.yml)
19
20
 
20
21
  # wa-sqlite
21
22
  This is a WebAssembly build of SQLite with support for writing SQLite virtual filesystems completely in Javascript. This allows alternative browser storage options such as IndexedDB and Origin Private File System. Applications can opt to use either a synchronous or asynchronous (using Asyncify or JSPI) SQLite library build (an asynchronous build is required for asynchronous extensions).