Skip to content

Releases: powersync-ja/powersync-swift

PowerSync v1.0.0-Beta.3

30 Jan 14:20
53227f5
Compare
Choose a tag to compare
Pre-release
  • BREAKING CHANGE: Update underlying powersync-kotlin package to BETA18.0 which requires transactions to become synchronous as opposed to asynchronous.
    try await database.writeTransaction { transaction in
      try await transaction.execute(
        sql: "INSERT INTO users (id, name, email) VALUES (?, ?, ?)",
        parameters: ["1", "Test User", "[email protected]"]
      )
    }
    to
    try await database.writeTransaction { transaction in
      transaction.execute( // <- This has become synchronous
        sql: "INSERT INTO users (id, name, email) VALUES (?, ?, ?)",
        parameters: ["1", "Test User", "[email protected]"]
      )
    }

PowerSync v1.0.0-Beta.2

14 Jan 07:29
0d52dc8
Compare
Choose a tag to compare
Pre-release
  • Upgrade PowerSyncSqliteCore to 0.3.8

PowerSync v1.0.0-Beta.1

10 Dec 17:46
3f8a0ca
Compare
Choose a tag to compare
Pre-release

Initial release of SDK