You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Changelog
2
2
3
+
## 1.1.1 (unreleased)
4
+
5
+
* Added default `nil` value for `writeCheckpoint` parameter when calling `CrudBatch.complete()`. Developers no longer need to specify `nil` as an argument
6
+
```diff
7
+
guard let finalBatch = try await powersync.getCrudBatch(limit: 100) else {
8
+
return nil
9
+
}
10
+
- try await batch.complete(writeCheckpoint: nil)
11
+
+ try await batch.complete()
12
+
```
13
+
3
14
## 1.1.0
4
15
5
16
* Add sync progress information through `SyncStatusData.downloadProgress`.
0 commit comments