File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Packages with other changes:
2626 - Customize ` User-Agent ` header
2727 - Add ` client_id ` parameter to sync requests
2828 - Persist ` lastSyncedAt `
29- - Emit update notifications on ` disconnectAndClear() `
29+ - Emit update notifications for watch queries on ` disconnectAndClear() `
3030 - Validate that the ` powersync-sqlite-core ` version number is in a compatible range of ` ^0.2.0 `
3131 - Always cast ` target_op ` (write checkpoints) to ensure it's an integer
3232 - Sync optimizations for MOVE and REMOVE operations
Original file line number Diff line number Diff line change 55 - Customize ` User-Agent ` header
66 - Add ` client_id ` parameter to sync requests
77 - Persist ` lastSyncedAt `
8- - Emit update notifications on ` disconnectAndClear() `
8+ - Emit update notifications for watch queries on ` disconnectAndClear() `
99 - Validate that the ` powersync-sqlite-core ` version number is in a compatible range of ` ^0.2.0 `
1010 - Always cast ` target_op ` (write checkpoints) to ensure it's an integer
1111 - Sync optimizations for MOVE and REMOVE operations
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ String powerSyncUserAgent() {
1010 }
1111 // Ideally we'd get an OS version as well, but that's a little complex.
1212 // Platform.operatingSystemVersion is very verbose.
13- return 'powersync-dart/$libraryVersion ( $dart ; ${Platform .operatingSystem }) ' ;
13+ return 'powersync-dart/$libraryVersion $dart ${Platform .operatingSystem }' ;
1414}
1515
1616Map <String , String > userAgentHeaders () {
Original file line number Diff line number Diff line change 11import 'package:powersync/src/version.dart' ;
22
33String powerSyncUserAgent () {
4- return 'powersync-dart/$libraryVersion (flutter-web)' ;
4+ return 'powersync-dart/$libraryVersion Dart (flutter-web)' ;
55}
66
77Map <String , String > userAgentHeaders () {
You can’t perform that action at this time.
0 commit comments