Skip to content

chore(attachments): update version 0.3.2 #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/supabase-todolist/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ packages:
path: "../../packages/powersync_attachments_helper"
relative: true
source: path
version: "0.3.1"
version: "0.3.2"
realtime_client:
dependency: transitive
description:
Expand Down
4 changes: 4 additions & 0 deletions packages/powersync_attachments_helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.2

- Fix sync not resetting after an error is thrown

## 0.3.1

- Add periodic syncing and deleting of attachments
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ class SyncingService {

/// Handle downloading, uploading or deleting of attachments
Future<void> handleSync(Iterable<Attachment> attachments) async {
if (isProcessing == true) {
return;
}
if (isProcessing == true) {
return;
}

try {
isProcessing = true;

Expand Down
2 changes: 1 addition & 1 deletion packages/powersync_attachments_helper/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: powersync_attachments_helper
description: A helper library for handling attachments when using PowerSync.
version: 0.3.1
version: 0.3.2
repository: https://github.com/powersync-ja/powersync.dart
homepage: https://www.powersync.com/
environment:
Expand Down