diff --git a/CHANGELOG.md b/CHANGELOG.md index 5181152..0342a48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,31 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2025-11-04 + +### Changes + +--- + +Packages with breaking changes: + + - `sqlite_async` uses version 0.4.x of `sqlite3_web`, which requires a new worker. + +Packages with other changes: + + - [`sqlite_async` - `v0.13.0`](#sqlite_async---v0130) + - [`drift_sqlite_async` - `v0.2.6`](#drift_sqlite_async---v026) + +--- + +#### `sqlite_async` - `v0.13.0` + + - Update sqlite3_web to 0.4.0 + +#### `drift_sqlite_async` - `v0.2.6` + +- Support latest `sqlite_async`. + ## 2025-10-13 ### Changes diff --git a/packages/drift_sqlite_async/CHANGELOG.md b/packages/drift_sqlite_async/CHANGELOG.md index bd36dd1..bd780e9 100644 --- a/packages/drift_sqlite_async/CHANGELOG.md +++ b/packages/drift_sqlite_async/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.6 + +- Support latest `sqlite_async`. + ## 0.2.5 - Allow customizing update notifications from `sqlite_async`. diff --git a/packages/drift_sqlite_async/pubspec.yaml b/packages/drift_sqlite_async/pubspec.yaml index bd2b701..dc19fe7 100644 --- a/packages/drift_sqlite_async/pubspec.yaml +++ b/packages/drift_sqlite_async/pubspec.yaml @@ -1,5 +1,5 @@ name: drift_sqlite_async -version: 0.2.5 +version: 0.2.6 homepage: https://github.com/powersync-ja/sqlite_async.dart repository: https://github.com/powersync-ja/sqlite_async.dart description: Use Drift with a sqlite_async database, allowing both to be used in the same application. @@ -15,7 +15,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: drift: ">=2.28.0 <3.0.0" - sqlite_async: ^0.12.2 + sqlite_async: ^0.13.0 dev_dependencies: build_runner: ^2.4.8 diff --git a/packages/sqlite_async/CHANGELOG.md b/packages/sqlite_async/CHANGELOG.md index 1bbc939..d833558 100644 --- a/packages/sqlite_async/CHANGELOG.md +++ b/packages/sqlite_async/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.13.0 + + - Update sqlite3_web to 0.4.0 + ## 0.12.2 - Add `withAllConnections` method to run statements on all connections in the pool. diff --git a/packages/sqlite_async/pubspec.yaml b/packages/sqlite_async/pubspec.yaml index 3be8dd9..1ddd431 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.12.2 +version: 0.13.0 repository: https://github.com/powersync-ja/sqlite_async.dart environment: sdk: ">=3.5.0 <4.0.0"