Skip to content

Commit 27b206d

Browse files
authored
Merge pull request #38 from powersync-ja/update-core
Update powersync-sqlite-core to 0.4.0
2 parents e87e9e9 + 122648e commit 27b206d

24 files changed

+48
-31
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
branches: ['master']
1111

1212
env:
13-
EM_VERSION: 3.1.64
13+
EM_VERSION: 4.0.9
1414
EM_CACHE_FOLDER: 'emsdk-cache'
1515

1616
jobs:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dependencies
2-
SQLITE_VERSION = 3.47.2
3-
MC_SQLITE_VERSION = 1.9.2
2+
SQLITE_VERSION = 3.50.1
3+
MC_SQLITE_VERSION = 2.1.3
44
SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=version-${SQLITE_VERSION}
55
MC_SQLITE_URL = https://github.com/utelle/SQLite3MultipleCiphers/releases/download/v${MC_SQLITE_VERSION}/sqlite3mc-${MC_SQLITE_VERSION}-sqlite-${SQLITE_VERSION}-amalgamation.zip
66
EXTENSION_FUNCTIONS = extension-functions.c

demo/hello/hello.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
// to use. Note that an asynchronous VFS requires an asynchronous build
55
// (Asyncify or JSPI). As of 2024-05-26, JSPI is only available behind
66
// a flag on Chromium browsers.
7-
// import SQLiteESMFactory from '../dist/wa-sqlite.mjs';
7+
// import SQLiteESMFactory from '../../dist/wa-sqlite.mjs';
88
import SQLiteESMFactory from '../../dist/wa-sqlite-async.mjs';
9-
// import SQLiteESMFactory from '../dist/wa-sqlite-jspi.mjs';
9+
// import SQLiteESMFactory from '../../dist/wa-sqlite-jspi.mjs';
1010

1111
// Uncomment one of the following imports to choose a VFS. Note that an
1212
// asynchronous VFS requires an asynchronous build, and an VFS using
@@ -19,11 +19,11 @@ import SQLiteESMFactory from '../../dist/wa-sqlite-async.mjs';
1919
// clear the appropriate storage for things to work.
2020
import { IDBBatchAtomicVFS as MyVFS } from '../../src/examples/IDBBatchAtomicVFS.js';
2121
// import { IDBMirrorVFS as MyVFS } from '../../src/examples/IDBMirrorVFS.js';
22-
// import { AccessHandlePoolVFS as MyVFS } from '../src/examples/AccessHandlePoolVFS.js';
23-
// import { OPFSAdaptiveVFS as MyVFS } from '../src/examples/OPFSAdaptiveVFS.js';
22+
// import { AccessHandlePoolVFS as MyVFS } from '../../src/examples/AccessHandlePoolVFS.js';
23+
// import { OPFSAdaptiveVFS as MyVFS } from '../../src/examples/OPFSAdaptiveVFS.js';
2424
// import { OPFSAnyContextVFS as MyVFS } from '../../src/examples/OPFSAnyContextVFS.js';
25-
// import { OPFSCoopSyncVFS as MyVFS } from '../src/examples/OPFSCoopSyncVFS.js';
26-
// import { OPFSPermutedVFS as MyVFS } from '../src/examples/OPFSPermutedVFS.js';
25+
// import { OPFSCoopSyncVFS as MyVFS } from '../../src/examples/OPFSCoopSyncVFS.js';
26+
// import { OPFSPermutedVFS as MyVFS } from '../../src/examples/OPFSPermutedVFS.js';
2727

2828
import * as SQLite from '../../src/sqlite-api.js';
2929

dist/mc-wa-sqlite-async.mjs

Lines changed: 1 addition & 2 deletions
Large diffs are not rendered by default.

dist/mc-wa-sqlite-async.wasm

329 KB
Binary file not shown.

dist/mc-wa-sqlite-jspi.mjs

Lines changed: 1 addition & 2 deletions
Large diffs are not rendered by default.

dist/mc-wa-sqlite-jspi.wasm

190 KB
Binary file not shown.

dist/mc-wa-sqlite.mjs

Lines changed: 1 addition & 2 deletions
Large diffs are not rendered by default.

dist/mc-wa-sqlite.wasm

190 KB
Binary file not shown.

dist/wa-sqlite-async-dynamic-main.mjs

Lines changed: 1 addition & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)