File tree 3 files changed +5
-2
lines changed
core/src/commonMain/kotlin/com/powersync/db
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.0-BETA6
4
+
5
+ * Fix Custom Write Checkpoint application logic
3
6
4
7
## 1.0.0-BETA5
5
8
Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ internal class PowerSyncDatabaseImpl(
252
252
writeTransaction { tx ->
253
253
internalDb.queries.deleteEntriesWithIdLessThan(lastTransactionId.toLong())
254
254
255
- if (writeCheckpoint != null && bucketStorage.hasCrud()) {
255
+ if (writeCheckpoint != null && ! bucketStorage.hasCrud()) {
256
256
tx.execute(
257
257
" UPDATE ps_buckets SET target_op = CAST(? AS INTEGER) WHERE name='\$ local'" ,
258
258
listOf (writeCheckpoint),
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ development=true
17
17
RELEASE_SIGNING_ENABLED =true
18
18
# Library config
19
19
GROUP =com.powersync
20
- LIBRARY_VERSION =1.0.0-BETA5
20
+ LIBRARY_VERSION =1.0.0-BETA6
21
21
GITHUB_REPO =https://github.com/powersync-ja/powersync-kotlin.git
22
22
# POM
23
23
POM_URL =https://github.com/powersync-ja/powersync-kotlin/
You can’t perform that action at this time.
0 commit comments