Skip to content
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
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-10-28

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`drift_sqlite_async` - `v0.2.0-alpha.2`](#drift_sqlite_async---v020-alpha2)
- [`sqlite_async` - `v0.10.0`](#sqlite_async---v0100)

---

#### `drift_sqlite_async` - `v0.2.0-alpha.2`

- Bump sqlite_async to v0.10.0

#### `sqlite_async` - `v0.10.0`

- Add the `exposeEndpoint()` method available on web databases. It returns a serializable
description of the database endpoint that can be sent across workers.
This allows sharing an opened database connection across workers.


## 2024-09-03

### Changes
Expand Down
4 changes: 4 additions & 0 deletions packages/drift_sqlite_async/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.0-alpha.2

- Bump `sqlite_async` to v0.10.0

## 0.2.0-alpha.1

- Support `drift` version >=2.19 and `web` v1.0.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/drift_sqlite_async/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: drift_sqlite_async
version: 0.2.0-alpha.1
version: 0.2.0-alpha.2
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.
Expand All @@ -15,7 +15,7 @@ environment:
sdk: ">=3.0.0 <4.0.0"
dependencies:
drift: ">=2.19.0 <3.0.0"
sqlite_async: ^0.9.0
sqlite_async: ^0.10.0
dev_dependencies:
build_runner: ^2.4.8
drift_dev: ">=2.19.0 <3.0.0"
Expand Down
Loading