Skip to content

Commit fdccba8

Browse files
authored
Merge pull request #70 from powersync-ja/release/0.9.1
Release v0.9.1
2 parents a804199 + c39e475 commit fdccba8

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

.github/workflows/test.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
test:
3131
runs-on: ubuntu-latest
3232
strategy:
33+
fail-fast: false
3334
matrix:
3435
include:
3536
- sqlite_version: "3440200"

packages/sqlite_async/CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1+
## 0.9.1
2+
3+
- Support version ^0.2.0 of package:sqlite3_web
4+
- Fix update notifications to only fire outside transactions
5+
- Fix update notifications to be debounced on web
6+
17
## 0.9.0
28

3-
- Support the latest version of package:web and package:sqlite3_web
9+
- Support the latest version of package:web and package:sqlite3_web
410

5-
- Export sqlite3 `open` for packages that depend on `sqlite_async`
11+
- Export sqlite3 `open` for packages that depend on `sqlite_async`
612

713
## 0.8.3
814

9-
- Updated web database implementation for get and getOptional. Fixed refreshSchema not working in web.
15+
- Updated web database implementation for get and getOptional. Fixed refreshSchema not working in web.
1016

1117
## 0.8.2
1218

packages/sqlite_async/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlite_async
22
description: High-performance asynchronous interface for SQLite on Dart and Flutter.
3-
version: 0.9.0
3+
version: 0.9.1
44
repository: https://github.com/powersync-ja/sqlite_async.dart
55
environment:
66
sdk: ">=3.4.0 <4.0.0"
@@ -12,8 +12,8 @@ topics:
1212
- flutter
1313

1414
dependencies:
15-
sqlite3: "^2.4.4"
16-
sqlite3_web: ^0.1.3
15+
sqlite3: "^2.4.7"
16+
sqlite3_web: ^0.2.0
1717
async: ^2.10.0
1818
collection: ^1.17.0
1919
mutex: ^3.1.0

packages/sqlite_async/test/watch_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ void main() {
258258
final db = await testUtils.setupDatabase(path: path);
259259
await createTables(db);
260260

261-
const baseTime = 10;
261+
const baseTime = 20;
262262

263263
const throttleDuration = Duration(milliseconds: baseTime);
264264
// delay must be bigger than throttleDuration, and bigger
@@ -300,6 +300,7 @@ void main() {
300300
// [0, 2, 2]: The watch is triggered during the transaction,
301301
// but executes after the transaction (single connection).
302302
// [0]: No updates triggered.
303+
// [2, 2]: Timing issue?
303304
});
304305
});
305306
}

0 commit comments

Comments
 (0)