Skip to content

Commit 0f0b750

Browse files
DominicGBauerDominicGBauerrkistner
authored
chore: release beta 3 (#68)
* chore: release beta 3 * Update CHANGELOG.md Co-authored-by: Ralf Kistner <[email protected]> --------- Co-authored-by: DominicGBauer <[email protected]> Co-authored-by: Ralf Kistner <[email protected]>
1 parent 726117e commit 0f0b750

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 1.0.0-BETA3
4+
5+
* Add `waitForFirstSync` function - which resolves after the initial sync is completed
6+
* Upgrade to Kotlin 2.0.20 - should not cause any issues with users who are still on Kotlin 1.9
7+
* Upgrade `powersync-sqlite-core` to 0.3.0 - improves incremental sync performance
8+
* Add client sync parameters - which allows you specify sync parameters from the client https://docs.powersync.com/usage/sync-rules/advanced-topics/client-parameters-beta
9+
```kotlin
10+
val params = JsonParam.Map(
11+
mapOf(
12+
"name" to JsonParam.String("John Doe"),
13+
"age" to JsonParam.Number(30),
14+
"isStudent" to JsonParam.Boolean(false)
15+
)
16+
)
17+
18+
connect(
19+
...
20+
params = params
21+
)
22+
```
23+
* Add schema validation when schema is generated
24+
325
## 1.0.0-BETA2
426

527
* Publish persistence package

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ development=true
1717
RELEASE_SIGNING_ENABLED=true
1818
# Library config
1919
GROUP=com.powersync
20-
LIBRARY_VERSION=1.0.0-BETA2
20+
LIBRARY_VERSION=1.0.0-BETA3
2121
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
2222
# POM
2323
POM_URL=https://github.com/powersync-ja/powersync-kotlin/

0 commit comments

Comments
 (0)