Skip to content

Commit bb8f190

Browse files
update kotlin sdk (#43)
1 parent 32d4061 commit bb8f190

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
# 1.0.0-Beta.13
4+
5+
- Update `powersync-kotlin` dependency to version `1.0.0-BETA32`, which includes:
6+
- Removed unnecessary `User-Id` header from internal PowerSync service requests.
7+
- Fix `getNextCrudTransaction()` only returning a single item.
8+
39
# 1.0.0-Beta.12
410

511
- Added attachment sync helpers

Package.resolved

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"kind" : "remoteSourceControl",
66
"location" : "https://github.com/powersync-ja/powersync-kotlin.git",
77
"state" : {
8-
"revision" : "633a2924f7893f7ebeb064cbcd9c202937673633",
9-
"version" : "1.0.0-BETA30.0"
8+
"revision" : "144d2110eaca2537f49f5e86e5a6c78acf502f94",
9+
"version" : "1.0.0-BETA32.0"
1010
}
1111
},
1212
{

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
targets: ["PowerSync"]),
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/powersync-ja/powersync-kotlin.git", exact: "1.0.0-BETA30.0"),
20+
.package(url: "https://github.com/powersync-ja/powersync-kotlin.git", exact: "1.0.0-BETA32.0"),
2121
.package(url: "https://github.com/powersync-ja/powersync-sqlite-core-swift.git", "0.3.12"..<"0.4.0")
2222
],
2323
targets: [

Sources/PowerSync/Kotlin/KotlinPowerSyncDatabaseImpl.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ final class KotlinPowerSyncDatabaseImpl: PowerSyncDatabaseProtocol {
210210
for try await values in try self.kotlinDatabase.watch(
211211
sql: options.sql,
212212
parameters: options.parameters,
213-
throttleMs: KotlinLong(value: options.throttleMs),
213+
throttleMs: options.throttleMs,
214214
mapper: { cursor in
215215
do {
216216
return try options.mapper(cursor)

0 commit comments

Comments
 (0)