Prepare release

This commit is contained in:
Simon Binder 2023-03-20 21:39:41 +01:00
parent a6bdd26c93
commit 9bebf4a81e
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
6 changed files with 14 additions and 8 deletions

View File

@ -1,6 +1,6 @@
## 2.6.0-dev ## 2.6.0
- Add `insertReturningOrNull` for empty inserts. - Add `insertReturningOrNull` for potentially empty inserts.
- Add `insertFromSelect` to `InsertStatement` to run `INSERT INTO SELECT` - Add `insertFromSelect` to `InsertStatement` to run `INSERT INTO SELECT`
statements. statements.
- Add `rowid` parameter to companions for tables with rowids that don't have a - Add `rowid` parameter to companions for tables with rowids that don't have a
@ -8,7 +8,7 @@
- After opening a database with a higher schema version than the current one set - After opening a database with a higher schema version than the current one set
in the database class, the schema version in the database will now be downgraded. in the database class, the schema version in the database will now be downgraded.
- When using a drift isolate in the same engine group, errors on the remote end are - When using a drift isolate in the same engine group, errors on the remote end are
reported as-is instead of wrapping them in a `DriftRemoteException`. reported directly instead of wrapping them in a `DriftRemoteException`.
- Added support for `DO NOTHING` during upsert operations with constraint violations - Added support for `DO NOTHING` during upsert operations with constraint violations
## 2.5.0 ## 2.5.0

View File

@ -1,6 +1,6 @@
name: drift name: drift
description: Drift is a reactive library to store relational data in Dart and Flutter applications. description: Drift is a reactive library to store relational data in Dart and Flutter applications.
version: 2.6.0-dev version: 2.6.0
repository: https://github.com/simolus3/drift repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/ homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues issue_tracker: https://github.com/simolus3/drift/issues

View File

@ -1,3 +1,9 @@
## 2.6.0
- Fix invalid schema verification code being generated for columns with a
`clientDefault`.
- Support drift 2.6.0
## 2.5.2 ## 2.5.2
- Fix generated code for `blob` columns when modular generation is enabled. - Fix generated code for `blob` columns when modular generation is enabled.

View File

@ -1,6 +1,6 @@
name: drift_dev name: drift_dev
description: Dev-dependency for users of drift. Contains the generator and development tools. description: Dev-dependency for users of drift. Contains the generator and development tools.
version: 2.6.0-dev version: 2.6.0
repository: https://github.com/simolus3/drift repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/ homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues issue_tracker: https://github.com/simolus3/drift/issues
@ -25,7 +25,7 @@ dependencies:
io: ^1.0.3 io: ^1.0.3
# Drift-specific analysis and apis # Drift-specific analysis and apis
drift: '>=2.5.0 <2.6.0' drift: '>=2.6.0 <2.7.0'
sqlite3: '>=0.1.6 <2.0.0' sqlite3: '>=0.1.6 <2.0.0'
sqlparser: '^0.28.0' sqlparser: '^0.28.0'

View File

@ -1,4 +1,4 @@
## 0.28.0-dev ## 0.28.0
- Support the `unhex` function added in sqlite 3.41.0 - Support the `unhex` function added in sqlite 3.41.0
- Support custom keyword sets when formatting SQL. - Support custom keyword sets when formatting SQL.

View File

@ -1,6 +1,6 @@
name: sqlparser name: sqlparser
description: Parses sqlite statements and performs static analysis on them description: Parses sqlite statements and performs static analysis on them
version: 0.28.0-dev version: 0.28.0
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
repository: https://github.com/simolus3/drift repository: https://github.com/simolus3/drift
#homepage: https://drift.simonbinder.eu/ #homepage: https://drift.simonbinder.eu/