Skip to content

Commit 9baa9f8

Browse files
chore(release): publish packages
- [email protected] - [email protected]
1 parent c402e88 commit 9baa9f8

File tree

9 files changed

+55
-8
lines changed

9 files changed

+55
-8
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2024-05-30
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- [`powersync_attachments_helper` - `v0.3.0-alpha.2`](#powersync_attachments_helper---v030-alpha2)
15+
16+
Packages with other changes:
17+
18+
- [`powersync` - `v1.3.0-alpha.5`](#powersync---v130-alpha5)
19+
20+
---
21+
22+
#### `powersync_attachments_helper` - `v0.3.0-alpha.2`
23+
24+
- **FIX**: reset isProcessing when exception is thrown during sync process. (#81).
25+
- **FIX**: attachment queue duplicating requests (#68).
26+
- **FIX**(powersync-attachements-helper): pubspec file (#29).
27+
- **FEAT**(attachments): add error handlers (#65).
28+
- **DOCS**: update readmes (#38).
29+
- **BREAKING** **FEAT**(attachments): cater for subdirectories in storage (#78).
30+
31+
#### `powersync` - `v1.3.0-alpha.5`
32+
33+
- **FIX**(powersync-attachements-helper): pubspec file (#29).
34+
- **DOCS**: update readme and getting started (#51).
35+
36+
637
## 2024-03-05
738

839
### Changes

demos/supabase-anonymous-auth/pubspec.yaml

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

14-
powersync: ^1.3.0-alpha.3
14+
powersync: ^1.3.0-alpha.5
1515
path_provider: ^2.1.1
1616
supabase_flutter: ^2.0.2
1717
path: ^1.8.3

demos/supabase-edge-function-auth/pubspec.yaml

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

14-
powersync: ^1.3.0-alpha.3
14+
powersync: ^1.3.0-alpha.5
1515
path_provider: ^2.1.1
1616
supabase_flutter: ^2.0.2
1717
path: ^1.8.3

demos/supabase-simple-chat/pubspec.yaml

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

3838
supabase_flutter: ^1.10.25
3939
timeago: ^3.6.0
40-
powersync: ^1.3.0-alpha.3
40+
powersync: ^1.3.0-alpha.5
4141
path_provider: ^2.1.1
4242
path: ^1.8.3
4343
logging: ^1.2.0

demos/supabase-todolist/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
powersync_attachments_helper: ^0.3.0-alpha.1
13+
powersync_attachments_helper: ^0.3.0-alpha.2
1414

15-
powersync: ^1.3.0-alpha.3
15+
powersync: ^1.3.0-alpha.5
1616
path_provider: ^2.1.1
1717
supabase_flutter: ^2.0.1
1818
path: ^1.8.3

packages/powersync/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.3.0-alpha.5
2+
3+
- **FIX**(powersync-attachements-helper): pubspec file (#29).
4+
- **DOCS**: update readme and getting started (#51).
5+
16
## 1.3.1
27

38
- Fix "Checksum mismatch" issue when calling `PowerSyncDatabase.connect` multiple times.

packages/powersync/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: powersync
2-
version: 1.3.0-alpha.4
2+
version: 1.3.0-alpha.5
33
homepage: https://powersync.com
44
repository: https://github.com/powersync-ja/powersync.dart
55
description: PowerSync Flutter SDK - keep PostgreSQL databases in sync with on-device SQLite databases.

packages/powersync_attachments_helper/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.3.0-alpha.2
2+
3+
> Note: This release has breaking changes.
4+
5+
- **FIX**: reset isProcessing when exception is thrown during sync process. (#81).
6+
- **FIX**: attachment queue duplicating requests (#68).
7+
- **FIX**(powersync-attachements-helper): pubspec file (#29).
8+
- **FEAT**(attachments): add error handlers (#65).
9+
- **DOCS**: update readmes (#38).
10+
- **BREAKING** **FEAT**(attachments): cater for subdirectories in storage (#78).
11+
112
## 0.4.1
213

314
- Reduce version number of `path_provider` to `2.0.13`

packages/powersync_attachments_helper/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: powersync_attachments_helper
22
description: A helper library for handling attachments when using PowerSync.
3-
version: 0.3.0-alpha.1
3+
version: 0.3.0-alpha.2
44
repository: https://github.com/powersync-ja/powersync.dart
55
homepage: https://www.powersync.com/
66
environment:
@@ -10,7 +10,7 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212

13-
powersync: ^1.3.0-alpha.3
13+
powersync: ^1.3.0-alpha.5
1414
logging: ^1.2.0
1515
sqlite3: '>2.3.0 <2.4.3'
1616
sqlite_async: ^0.7.0-alpha.4

0 commit comments

Comments
 (0)