From 69f96c794b278f28dcb4bb85e6681805693b7c68 Mon Sep 17 00:00:00 2001 From: DominicGBauer Date: Mon, 22 Jan 2024 12:31:50 +0200 Subject: [PATCH] chore: bump version --- demos/supabase-anonymous-auth/pubspec.lock | 2 +- demos/supabase-edge-function-auth/pubspec.lock | 2 +- demos/supabase-simple-chat/pubspec.lock | 2 +- demos/supabase-todolist/pubspec.lock | 2 +- packages/powersync/CHANGELOG.md | 11 ++++++++--- packages/powersync/pubspec.yaml | 2 +- 6 files changed, 13 insertions(+), 8 deletions(-) diff --git a/demos/supabase-anonymous-auth/pubspec.lock b/demos/supabase-anonymous-auth/pubspec.lock index 5ed781ee..a844bce9 100644 --- a/demos/supabase-anonymous-auth/pubspec.lock +++ b/demos/supabase-anonymous-auth/pubspec.lock @@ -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: diff --git a/demos/supabase-edge-function-auth/pubspec.lock b/demos/supabase-edge-function-auth/pubspec.lock index 5ed781ee..a844bce9 100644 --- a/demos/supabase-edge-function-auth/pubspec.lock +++ b/demos/supabase-edge-function-auth/pubspec.lock @@ -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: diff --git a/demos/supabase-simple-chat/pubspec.lock b/demos/supabase-simple-chat/pubspec.lock index 537201d4..6dccc26b 100644 --- a/demos/supabase-simple-chat/pubspec.lock +++ b/demos/supabase-simple-chat/pubspec.lock @@ -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: diff --git a/demos/supabase-todolist/pubspec.lock b/demos/supabase-todolist/pubspec.lock index b693c16f..c4f08b44 100644 --- a/demos/supabase-todolist/pubspec.lock +++ b/demos/supabase-todolist/pubspec.lock @@ -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: diff --git a/packages/powersync/CHANGELOG.md b/packages/powersync/CHANGELOG.md index c9fb65a3..6c4f0440 100644 --- a/packages/powersync/CHANGELOG.md +++ b/packages/powersync/CHANGELOG.md @@ -1,3 +1,8 @@ +## 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. @@ -5,10 +10,10 @@ - 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 diff --git a/packages/powersync/pubspec.yaml b/packages/powersync/pubspec.yaml index 67dd95c7..56604cba 100644 --- a/packages/powersync/pubspec.yaml +++ b/packages/powersync/pubspec.yaml @@ -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.