Skip to content
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
2 changes: 1 addition & 1 deletion demos/supabase-anonymous-auth/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.1.0"
version: "1.1.1"
realtime_client:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-edge-function-auth/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.1.0"
version: "1.1.1"
realtime_client:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-simple-chat/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.1.0"
version: "1.1.1"
realtime_client:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion demos/supabase-todolist/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ packages:
path: "../../packages/powersync"
relative: true
source: path
version: "1.1.0"
version: "1.1.1"
powersync_attachments_helper:
dependency: "direct main"
description:
Expand Down
11 changes: 8 additions & 3 deletions packages/powersync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
## 1.1.1

- Fix error occasionally occurring when calling powersync.connect() right when opening the database.
- Update getting started docs

## 1.1.0

- Fix delete operations rejected by the server not being reverted locally.
- Expand `SyncStatus` to include `connected`, `downloading`, `uploading` status, as well as the last errors.
- Fix `SyncStatus.connected` to be updated when calling `PowerSyncDatabase.disconnect()`.
- Fix network error messages only containing a single character in some cases.
- Update `sqlite_async` dependency:
- Supports catching errors in transactions and continuing the transaction.
- Add `tx.closed` and `db/tx.getAutoCommit()`
- Supports catching errors in transactions and continuing the transaction.
- Add `tx.closed` and `db/tx.getAutoCommit()`
- Update `uuid` dependency:
- Now uses `CryptoRNG` from `uuid` package now that the performance improvements are upstream.
- Now uses `CryptoRNG` from `uuid` package now that the performance improvements are upstream.
- Requires Dart ^3.2.0 / Flutter ^3.16.0.

## 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/powersync/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: powersync
version: 1.1.0
version: 1.1.1
homepage: https://powersync.com
repository: https://github.com/powersync-ja/powersync.dart
description: PowerSync Flutter SDK - keep PostgreSQL databases in sync with on-device SQLite databases.
Expand Down