Skip to content

Commit 385e911

Browse files
committed
v1.8.0
1 parent 9a1ea28 commit 385e911

File tree

11 files changed

+49
-9
lines changed

11 files changed

+49
-9
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2024-09-06
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`powersync` - `v1.8.0`](#powersync---v180)
19+
20+
---
21+
22+
#### `powersync` - `v1.8.0`
23+
24+
- Use powersync-sqlite-core v0.2.1
25+
- Customize `User-Agent` header
26+
- Add `client_id` parameter to sync requests
27+
- Persist `lastSyncedAt`
28+
- Emit update notifications on `disconnectAndClear()`
29+
- Validate that the `powersync-sqlite-core` version number is in a compatible range of `^0.2.0`
30+
- Always cast `target_op` (write checkpoints) to ensure it's an integer
31+
- Sync optimizations for MOVE and REMOVE operations
32+
33+
634
## 2024-08-23
735

836
### Changes

demos/django-todolist/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
powersync: ^1.7.0
13+
powersync: ^1.8.0
1414
path_provider: ^2.1.1
1515
path: ^1.8.3
1616
logging: ^1.2.0

demos/supabase-anonymous-auth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313

14-
powersync: ^1.7.0
14+
powersync: ^1.8.0
1515
path_provider: ^2.1.1
1616
supabase_flutter: ^2.0.2
1717
path: ^1.8.3

demos/supabase-edge-function-auth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313

14-
powersync: ^1.7.0
14+
powersync: ^1.8.0
1515
path_provider: ^2.1.1
1616
supabase_flutter: ^2.0.2
1717
path: ^1.8.3

demos/supabase-simple-chat/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies:
3737

3838
supabase_flutter: ^2.0.2
3939
timeago: ^3.6.0
40-
powersync: ^1.7.0
40+
powersync: ^1.8.0
4141
path_provider: ^2.1.1
4242
path: ^1.8.3
4343
logging: ^1.2.0

demos/supabase-todolist-drift/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212
powersync_attachments_helper: ^0.6.5+1
13-
powersync: ^1.7.0
13+
powersync: ^1.8.0
1414
path_provider: ^2.1.1
1515
supabase_flutter: ^2.0.1
1616
path: ^1.8.3

demos/supabase-todolist/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
powersync_attachments_helper: ^0.6.5+1
14-
powersync: ^1.7.0
14+
powersync: ^1.8.0
1515
path_provider: ^2.1.1
1616
supabase_flutter: ^2.0.1
1717
path: ^1.8.3

packages/powersync/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.8.0
2+
3+
- Use powersync-sqlite-core v0.2.1
4+
- Customize `User-Agent` header
5+
- Add `client_id` parameter to sync requests
6+
- Persist `lastSyncedAt`
7+
- Emit update notifications on `disconnectAndClear()`
8+
- Validate that the `powersync-sqlite-core` version number is in a compatible range of `^0.2.0`
9+
- Always cast `target_op` (write checkpoints) to ensure it's an integer
10+
- Sync optimizations for MOVE and REMOVE operations
11+
12+
113
## 1.7.0
214

315
- **FEAT**: Include schema validation check
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
const String libraryVersion = '1.6.4';
1+
const String libraryVersion = '1.8.0';

packages/powersync/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: powersync
2-
version: 1.7.0
2+
version: 1.8.0
33
homepage: https://powersync.com
44
repository: https://github.com/powersync-ja/powersync.dart
55
description: PowerSync Flutter SDK - keep PostgreSQL databases in sync with on-device SQLite databases.

0 commit comments

Comments
 (0)