Skip to content

Commit 0053607

Browse files
committed
Improve changelog
1 parent 7cc041d commit 0053607

File tree

8 files changed

+82
-11
lines changed

8 files changed

+82
-11
lines changed

CHANGELOG.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,32 @@ Packages with dependency updates only:
3030

3131
#### `powersync_core` - `v1.4.0`
3232

33-
- Support new Rust-based sync implementation.
34-
3533
#### `powersync` - `v1.14.0`
3634

37-
- Support new Rust-based sync implementation.
38-
3935
#### `powersync_sqlcipher` - `v0.1.8`
4036

41-
- Support new Rust-based sync implementation.
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`
4257

58+
- Update PowerSync core extension to version 0.4.0.
4359

4460
## 2025-05-29
4561

packages/powersync/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
## 1.14.0
22

3-
- Support new Rust-based sync implementation.
3+
Add a new sync client implementation written in Rust instead of Dart. While
4+
this client is still experimental, we intend to make it the default in the
5+
future. The main benefit of this client is faster sync performance, but
6+
upcoming features will also require this client.
7+
We encourage interested users to try it out by passing `SyncOptions` to the
8+
`connect` method:
9+
10+
```dart
11+
database.connect(
12+
connector: YourConnector(),
13+
options: const SyncOptions(
14+
syncImplementation: SyncClientImplementation.rust,
15+
),
16+
);
17+
```
18+
19+
Switching between the clients can be done at any time without compatibility
20+
issues. If you run into issues with the new client, please reach out to us!
421

522
## 1.13.1
623

packages/powersync/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313

1414
sqlite3_flutter_libs: ^0.5.23
1515
powersync_core: ^1.4.0
16-
powersync_flutter_libs: ^0.4.8
16+
powersync_flutter_libs: ^0.4.9
1717
collection: ^1.17.0
1818

1919
dev_dependencies:

packages/powersync_core/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
## 1.4.0
22

3-
- Support new Rust-based sync implementation.
3+
Add a new sync client implementation written in Rust instead of Dart. While
4+
this client is still experimental, we intend to make it the default in the
5+
future. The main benefit of this client is faster sync performance, but
6+
upcoming features will also require this client.
7+
We encourage interested users to try it out by passing `SyncOptions` to the
8+
`connect` method:
9+
10+
```dart
11+
database.connect(
12+
connector: YourConnector(),
13+
options: const SyncOptions(
14+
syncImplementation: SyncClientImplementation.rust,
15+
),
16+
);
17+
```
18+
19+
Switching between the clients can be done at any time without compatibility
20+
issues. If you run into issues with the new client, please reach out to us!
421

522
## 1.3.1
623

packages/powersync_flutter_libs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.9
2+
3+
- Update PowerSync core extension to version 0.4.0.
4+
15
## 0.4.8
26

37
- Update PowerSync core extension to version 0.3.14.

packages/powersync_flutter_libs/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: powersync_flutter_libs
22
description: PowerSync core binaries for the PowerSync Flutter SDK. Needs to be included for Flutter apps.
3-
version: 0.4.8
3+
version: 0.4.9
44
repository: https://github.com/powersync-ja/powersync.dart
55
homepage: https://www.powersync.com/
66

packages/powersync_sqlcipher/CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
## 0.1.8
22

3-
- Support new Rust-based sync implementation.
3+
Add a new sync client implementation written in Rust instead of Dart. While
4+
this client is still experimental, we intend to make it the default in the
5+
future. The main benefit of this client is faster sync performance, but
6+
upcoming features will also require this client.
7+
We encourage interested users to try it out by passing `SyncOptions` to the
8+
`connect` method:
9+
10+
```dart
11+
database.connect(
12+
connector: YourConnector(),
13+
options: const SyncOptions(
14+
syncImplementation: SyncClientImplementation.rust,
15+
),
16+
);
17+
```
18+
19+
Switching between the clients can be done at any time without compatibility
20+
issues. If you run into issues with the new client, please reach out to us!
421

522
## 0.1.7
623

packages/powersync_sqlcipher/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414

1515
powersync_core: ^1.4.0
16-
powersync_flutter_libs: ^0.4.8
16+
powersync_flutter_libs: ^0.4.9
1717
sqlcipher_flutter_libs: ^0.6.4
1818
sqlite3_web: ^0.3.0
1919

0 commit comments

Comments
 (0)