Skip to content

powersync-v1.14.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 19 Jun 15:53
· 1 commit to main since this release

Release powersync-v1.14.0

Add a new sync client implementation written in Rust instead of Dart. While
this client is still experimental, we intend to make it the default in the
future. The main benefit of this client is faster sync performance, but
upcoming features will also require this client.
We encourage interested users to try it out by passing SyncOptions to the
connect method:

database.connect(
  connector: YourConnector(),
  options: const SyncOptions(
    syncImplementation: SyncClientImplementation.rust,
  ),
);

Switching between the clients can be done at any time without compatibility
issues. If you run into issues with the new client, please reach out to us!