Skip to content

Commit 3e2ae3c

Browse files
committed
Prepare release
1 parent 039add1 commit 3e2ae3c

8 files changed

Lines changed: 17 additions & 6 deletions

File tree

drift/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
## 2.32.0
22

33
- __Potentially breaking change__ Migrate to version 3.x of the `sqlite3` package.
4+
To upgrade:
5+
- For the web, update `sqlite3.wasm` from a [3.x release](https://github.com/simolus3/sqlite3.dart/releases).
6+
- If you've previously used `sqlcipher_flutter_libs`, see [this](https://pub.dev/documentation/sqlite3/latest/topics/hook-topic.html) for encryption support and note that SQLite3MultipleCiphers requires [additional pragmas](https://github.com/simolus3/sqlite3.dart/issues/302#issuecomment-3765247078) to be compatible with SQLCipher databases.
47
- `serializableConnection()`, `json1` and `TableMigration` are no longer marked
58
as experimental.
69
- Improve performance of mapping large result sets through joined select statements.

drift/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: drift
22
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
3-
version: 2.32.0-wip
3+
version: 2.32.0
44
repository: https://github.com/simolus3/drift
55
homepage: https://drift.simonbinder.eu/
66
issue_tracker: https://github.com/simolus3/drift/issues

drift_dev/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.32.0
2+
3+
- Support version 3.x of the `sqlite3` package.
4+
15
## 2.31.0
26

37
- Fix JSON serialization for views referencing a nullable wrapper of a non-nullable column

drift_dev/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: drift_dev
22
description: Dev-dependency for users of drift. Contains the generator and development tools.
3-
version: 2.31.0
3+
version: 2.32.0
44
repository: https://github.com/simolus3/drift
55
homepage: https://drift.simonbinder.eu/
66
issue_tracker: https://github.com/simolus3/drift/issues
@@ -37,7 +37,7 @@ dependencies:
3737
# Drift-specific analysis and apis
3838
drift: ">=2.30.0 <2.33.0"
3939
sqlite3: ^3.0.0
40-
sqlparser: ^0.44.0-wip
40+
sqlparser: ^0.44.0
4141

4242
# Dart analysis
4343
analyzer: '^10.0.0'

drift_flutter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0
2+
3+
- Use versions 3.x of the `sqlite3` package.
4+
15
## 0.2.8
26

37
- Add `isolateSetup` parameter to `DriftNativeOptions` to setup isolates spawned to host database connections.

drift_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: drift_flutter
22
description: Easily set up drift databases across platforms in Flutter apps.
3-
version: 0.2.8
3+
version: 0.3.0
44
repository: https://github.com/simolus3/drift
55
homepage: https://drift.simonbinder.eu/
66
issue_tracker: https://github.com/simolus3/drift/issues

examples/app/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414
drift: ^2.23.1
1515
drift_dev: ^2.23.1
16-
drift_flutter: ^0.2.4
16+
drift_flutter: ^0.3.0
1717
file_picker: ^10.3.10
1818
flutter_colorpicker: ^1.0.3
1919
flutter_riverpod: ^3.0.0-dev

sqlparser/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sqlparser
22
description: Parses sqlite statements and performs static analysis on them
3-
version: 0.44.0-wip
3+
version: 0.44.0
44
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
55
repository: https://github.com/simolus3/drift
66
#homepage: https://drift.simonbinder.eu/

0 commit comments

Comments
 (0)