From 6c78c7bc7785381070e1f408d16c7f3b44926a77 Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Tue, 3 Jun 2025 11:37:22 +0200 Subject: [PATCH] Prepare release --- CHANGELOG.md | 20 ++++++++++++++++++++ packages/sqlite_async/CHANGELOG.md | 6 ++++++ packages/sqlite_async/pubspec.yaml | 2 +- 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8563871..d9cda07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2025-06-03 + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`sqlite_async` - `v0.11.7`](#sqlite_async---v0117) + +--- + +#### `sqlite_async` - `v0.11.7` + +- Shared worker: Release locks owned by connected client tab when it closes. +- Fix web concurrency issues: Consistently apply a shared mutex or let a shared + worker coordinate access. + ## 2025-05-28 --- diff --git a/packages/sqlite_async/CHANGELOG.md b/packages/sqlite_async/CHANGELOG.md index 6f3a51d..97dbf50 100644 --- a/packages/sqlite_async/CHANGELOG.md +++ b/packages/sqlite_async/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.11.7 + +- Shared worker: Release locks owned by connected client tab when it closes. +- Fix web concurrency issues: Consistently apply a shared mutex or let a shared + worker coordinate access. + ## 0.11.6 - Native: Consistently report errors when opening the database instead of diff --git a/packages/sqlite_async/pubspec.yaml b/packages/sqlite_async/pubspec.yaml index 00f2077..bb27d60 100644 --- a/packages/sqlite_async/pubspec.yaml +++ b/packages/sqlite_async/pubspec.yaml @@ -1,6 +1,6 @@ name: sqlite_async description: High-performance asynchronous interface for SQLite on Dart and Flutter. -version: 0.11.6 +version: 0.11.7 repository: https://github.com/powersync-ja/sqlite_async.dart environment: sdk: ">=3.5.0 <4.0.0"