mirror of https://github.com/AMT-Cheif/drift.git
Prepare 2.14 release
This commit is contained in:
parent
27b459d3c6
commit
633cc52129
|
@ -1,6 +1,7 @@
|
|||
## 2.14.0-dev
|
||||
## 2.14.0
|
||||
|
||||
- Add the `QueryInterceptor` to easily monitor all database calls made by drift.
|
||||
- Add the `QueryInterceptor` API to easily monitor or transform all database
|
||||
calls made by drift.
|
||||
- Add the `count()` extension on tables to easily count rows in tables or views.
|
||||
|
||||
## 2.13.2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: drift
|
||||
description: Drift is a reactive library to store relational data in Dart and Flutter applications.
|
||||
version: 2.14.0-dev
|
||||
version: 2.14.0
|
||||
repository: https://github.com/simolus3/drift
|
||||
homepage: https://drift.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/drift/issues
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
## 2.14.0-dev
|
||||
## 2.14.0
|
||||
|
||||
- __Breaking change__: The name of the generated row class derived from the name
|
||||
of the Dart table name now supports more forms of plurals.
|
||||
For instance, a table without a `@DataClassName` annotation named `Categories`
|
||||
would now generate a `Category` class instead of `Categorie`.
|
||||
would now generate a `Category` class instead of `Categorie`. This is done in
|
||||
a minor release because we assume most users are using `@DataClassName` in those
|
||||
cases.
|
||||
- Make versioned schema snapshots generated by `drift_dev schema steps` public.
|
||||
- Don't generate `const` row classes when they are extending a class which
|
||||
isn't const.
|
||||
- Fix indices attached to tables not generating reliably.
|
||||
|
||||
## 2.13.2
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: drift_dev
|
||||
description: Dev-dependency for users of drift. Contains the generator and development tools.
|
||||
version: 2.14.0-dev
|
||||
version: 2.14.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.14.0 <2.15.0'
|
||||
sqlite3: '>=0.1.6 <3.0.0'
|
||||
sqlparser: '^0.33.0-dev'
|
||||
sqlparser: '^0.33.0'
|
||||
|
||||
# Dart analysis
|
||||
analyzer: '>=5.12.0 <7.0.0'
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## 0.33.0-dev
|
||||
## 0.33.0
|
||||
|
||||
- Support the [column-name-list](https://sqlite.org/syntax/column-name-list.html)
|
||||
syntax for updates, thanks to [@tibotix](https://github.com/tibotix).
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: sqlparser
|
||||
description: Parses sqlite statements and performs static analysis on them
|
||||
version: 0.33.0-dev
|
||||
version: 0.33.0
|
||||
homepage: https://github.com/simolus3/drift/tree/develop/sqlparser
|
||||
repository: https://github.com/simolus3/drift
|
||||
#homepage: https://drift.simonbinder.eu/
|
||||
|
|
Loading…
Reference in New Issue