|
3 | 3 | All notable changes to this project will be documented in this file. |
4 | 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. |
5 | 5 |
|
| 6 | +## 2025-06-19 |
| 7 | + |
| 8 | +### Changes |
| 9 | + |
| 10 | +--- |
| 11 | + |
| 12 | +Packages with breaking changes: |
| 13 | + |
| 14 | + - There are no breaking changes in this release. |
| 15 | + |
| 16 | +Packages with other changes: |
| 17 | + |
| 18 | + - [`powersync_core` - `v1.4.0`](#powersync_core---v140) |
| 19 | + - [`powersync` - `v1.14.0`](#powersync---v1140) |
| 20 | + - [`powersync_sqlcipher` - `v0.1.8`](#powersync_sqlcipher---v018) |
| 21 | + - [`powersync_attachments_helper` - `v0.6.18+9`](#powersync_attachments_helper---v06189) |
| 22 | + |
| 23 | +Packages with dependency updates only: |
| 24 | + |
| 25 | +> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project. |
| 26 | +
|
| 27 | + - `powersync_attachments_helper` - `v0.6.18+9` |
| 28 | + |
| 29 | +--- |
| 30 | + |
| 31 | +#### `powersync_core` - `v1.4.0` |
| 32 | + |
| 33 | +#### `powersync` - `v1.14.0` |
| 34 | + |
| 35 | +#### `powersync_sqlcipher` - `v0.1.8` |
| 36 | + |
| 37 | +Add a new sync client implementation written in Rust instead of Dart. While |
| 38 | +this client is still experimental, we intend to make it the default in the |
| 39 | +future. The main benefit of this client is faster sync performance, but |
| 40 | +upcoming features will also require this client. |
| 41 | +We encourage interested users to try it out by passing `SyncOptions` to the |
| 42 | +`connect` method: |
| 43 | + |
| 44 | +```dart |
| 45 | +database.connect( |
| 46 | + connector: YourConnector(), |
| 47 | + options: const SyncOptions( |
| 48 | + syncImplementation: SyncClientImplementation.rust, |
| 49 | + ), |
| 50 | +); |
| 51 | +``` |
| 52 | + |
| 53 | +Switching between the clients can be done at any time without compatibility |
| 54 | +issues. If you run into issues with the new client, please reach out to us! |
| 55 | + |
| 56 | +#### `powersync_flutter_libs` - `v0.4.9` |
| 57 | + |
| 58 | + - Update PowerSync core extension to version 0.4.0. |
| 59 | + |
6 | 60 | ## 2025-05-29 |
7 | 61 |
|
8 | 62 | ### Changes |
|
0 commit comments