Skip to content

PowerSync v1.0.0-Beta.6

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Feb 08:26
· 13 commits to main since this release
f50f8dd
  • BREAKING CHANGE: watch queries are now throwable and therefore will need to be accompanied by a try e.g.
try database.watch()
  • BREAKING CHANGE: transaction functions are now throwable and therefore will need to be accompanied by a try e.g.
try await database.writeTransaction { transaction in
  try transaction.execute(...)
}
  • Allow execute errors to be handled
  • userId is now set to nil by default and therefore it is no longer required to be set to nil when instantiating PowerSyncCredentials and can therefore be left out.