Skip to content

Release v0.9.1 #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- sqlite_version: "3440200"
Expand Down
12 changes: 9 additions & 3 deletions packages/sqlite_async/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
## 0.9.1

- Support version ^0.2.0 of package:sqlite3_web
- Fix update notifications to only fire outside transactions
- Fix update notifications to be debounced on web

## 0.9.0

- Support the latest version of package:web and package:sqlite3_web
- Support the latest version of package:web and package:sqlite3_web

- Export sqlite3 `open` for packages that depend on `sqlite_async`
- Export sqlite3 `open` for packages that depend on `sqlite_async`

## 0.8.3

- Updated web database implementation for get and getOptional. Fixed refreshSchema not working in web.
- Updated web database implementation for get and getOptional. Fixed refreshSchema not working in web.

## 0.8.2

Expand Down
6 changes: 3 additions & 3 deletions packages/sqlite_async/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sqlite_async
description: High-performance asynchronous interface for SQLite on Dart and Flutter.
version: 0.9.0
version: 0.9.1
repository: https://github.com/powersync-ja/sqlite_async.dart
environment:
sdk: ">=3.4.0 <4.0.0"
Expand All @@ -12,8 +12,8 @@ topics:
- flutter

dependencies:
sqlite3: "^2.4.4"
sqlite3_web: ^0.1.3
sqlite3: "^2.4.7"
sqlite3_web: ^0.2.0
async: ^2.10.0
collection: ^1.17.0
mutex: ^3.1.0
Expand Down
3 changes: 2 additions & 1 deletion packages/sqlite_async/test/watch_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ void main() {
final db = await testUtils.setupDatabase(path: path);
await createTables(db);

const baseTime = 10;
const baseTime = 20;

const throttleDuration = Duration(milliseconds: baseTime);
// delay must be bigger than throttleDuration, and bigger
Expand Down Expand Up @@ -300,6 +300,7 @@ void main() {
// [0, 2, 2]: The watch is triggered during the transaction,
// but executes after the transaction (single connection).
// [0]: No updates triggered.
// [2, 2]: Timing issue?
});
});
}
Loading