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:
26
26
- Customize ` User-Agent ` header
27
27
- Add ` client_id ` parameter to sync requests
28
28
- Persist ` lastSyncedAt `
29
- - Emit update notifications on ` disconnectAndClear() `
29
+ - Emit update notifications for watch queries on ` disconnectAndClear() `
30
30
- Validate that the ` powersync-sqlite-core ` version number is in a compatible range of ` ^0.2.0 `
31
31
- Always cast ` target_op ` (write checkpoints) to ensure it's an integer
32
32
- Sync optimizations for MOVE and REMOVE operations
Original file line number Diff line number Diff line change 5
5
- Customize ` User-Agent ` header
6
6
- Add ` client_id ` parameter to sync requests
7
7
- Persist ` lastSyncedAt `
8
- - Emit update notifications on ` disconnectAndClear() `
8
+ - Emit update notifications for watch queries on ` disconnectAndClear() `
9
9
- Validate that the ` powersync-sqlite-core ` version number is in a compatible range of ` ^0.2.0 `
10
10
- Always cast ` target_op ` (write checkpoints) to ensure it's an integer
11
11
- Sync optimizations for MOVE and REMOVE operations
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ String powerSyncUserAgent() {
10
10
}
11
11
// Ideally we'd get an OS version as well, but that's a little complex.
12
12
// Platform.operatingSystemVersion is very verbose.
13
- return 'powersync-dart/$libraryVersion ( $dart ; ${Platform .operatingSystem }) ' ;
13
+ return 'powersync-dart/$libraryVersion $dart ${Platform .operatingSystem }' ;
14
14
}
15
15
16
16
Map <String , String > userAgentHeaders () {
Original file line number Diff line number Diff line change 1
1
import 'package:powersync/src/version.dart' ;
2
2
3
3
String powerSyncUserAgent () {
4
- return 'powersync-dart/$libraryVersion (flutter-web)' ;
4
+ return 'powersync-dart/$libraryVersion Dart (flutter-web)' ;
5
5
}
6
6
7
7
Map <String , String > userAgentHeaders () {
You can’t perform that action at this time.
0 commit comments