File tree Expand file tree Collapse file tree 11 files changed +49
-9
lines changed
supabase-edge-function-auth
powersync_attachments_helper Expand file tree Collapse file tree 11 files changed +49
-9
lines changed Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44See [ 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
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ environment:
1010dependencies :
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- const String libraryVersion = '1.6.4 ' ;
1+ const String libraryVersion = '1.8.0 ' ;
Original file line number Diff line number Diff line change 11name : powersync
2- version : 1.7 .0
2+ version : 1.8 .0
33homepage : https://powersync.com
44repository : https://github.com/powersync-ja/powersync.dart
55description : PowerSync Flutter SDK - keep PostgreSQL databases in sync with on-device SQLite databases.
You can’t perform that action at this time.
0 commit comments