Prepare release

This commit is contained in:
Simon Binder 2024-01-17 23:02:49 +01:00
parent b6fbfdbab9
commit 38d603c1c6
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
7 changed files with 11 additions and 11 deletions

View File

@ -1,4 +1,4 @@
## 2.15.0-dev
## 2.15.0
- Methods in the query builder API now respect custom types.
- Support `DialectAwareSqlType`, custom types that depend on the dialect of the

View File

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

View File

@ -1,13 +1,13 @@
## 2.15.0-dev
## 2.15.0
- Potentially __breaking change__: Fix a bug causing `NULL` column constraints
not to show up in generated table definitions.
This is a breaking change drift's migration tooling is used, since they will
not expect the `NULL` column constraint to be there.
After upgrading, you can either drop the `NULL` constraint from your drift
files to make it consistent with the schema (since `NULL` has no effect in
sqlite3), or increment the schema version and run a `TableMigration` on
affected tables to make column constraints consistent.
files to make it consistent with the schema (since `NULL` column constraints
are the default ignored by sqlite3), or increment the schema version and run
a `TableMigration` on affected tables to make column constraints consistent.
## 2.14.1

View File

@ -1,6 +1,6 @@
name: drift_dev
description: Dev-dependency for users of drift. Contains the generator and development tools.
version: 2.14.1
version: 2.15.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/
issue_tracker: https://github.com/simolus3/drift/issues
@ -32,7 +32,7 @@ dependencies:
# Drift-specific analysis and apis
drift: '>=2.15.0 <2.16.0'
sqlite3: '>=0.1.6 <3.0.0'
sqlparser: '^0.33.0'
sqlparser: '^0.34.0'
# Dart analysis
analyzer: '>=5.12.0 <7.0.0'

View File

@ -1,6 +1,6 @@
name: drift_postgres
description: Postgres implementation and APIs for the drift database package.
version: 1.0.0
version: 1.1.0
repository: https://github.com/simolus3/drift
homepage: https://drift.simonbinder.eu/docs/platforms/postgres/
issue_tracker: https://github.com/simolus3/drift/issues

View File

@ -1,4 +1,4 @@
## 0.34.1
## 0.34.0
- Fix explicit `NULL` column constraints being dropped when converting nodes
to SQL.

View File

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