PowerSync v1.0.0-Beta.10
Pre-release
Pre-release
·
4 commits
to main
since this release
- Added the ability to specify a custom logging implementation
let db = PowerSyncDatabase(
schema: Schema(
tables: [
Table(
name: "users",
columns: [
.text("name"),
.text("email")
]
)
]
),
logger: DefaultLogger(minSeverity: .debug)
)
- added
.close()
method onPowerSyncDatabaseProtocol
- Update
powersync-kotlin
dependency to version1.0.0-BETA29
, which fixes these issues:- Fix potential race condition between jobs in
connect()
anddisconnect()
. - Fix race condition causing data received during uploads not to be applied.
- Fixed issue where automatic driver migrations would fail with the error:
- Fix potential race condition between jobs in
Sqlite operation failure database is locked attempted to run migration and failed. closing connection