PowerSync v1.0.0-Beta.6
Pre-release
Pre-release
·
13 commits
to main
since this release
- BREAKING CHANGE:
watch
queries are now throwable and therefore will need to be accompanied by atry
e.g.
try database.watch()
- BREAKING CHANGE:
transaction
functions are now throwable and therefore will need to be accompanied by atry
e.g.
try await database.writeTransaction { transaction in
try transaction.execute(...)
}
- Allow
execute
errors to be handled userId
is now set tonil
by default and therefore it is no longer required to be set tonil
when instantiatingPowerSyncCredentials
and can therefore be left out.