mirror of https://github.com/AMT-Cheif/drift.git
Finish changelog and pubspec for 2.3 release
This commit is contained in:
parent
064a57d381
commit
257cfaca2e
|
@ -1,4 +1,4 @@
|
||||||
## unreleased
|
## 2.3.0
|
||||||
|
|
||||||
- New `clientDefault` method for columns. It can be used for dynamic defaults that might be different for
|
- New `clientDefault` method for columns. It can be used for dynamic defaults that might be different for
|
||||||
each row. For instance, you can generate a uuid for each row with `text().clientDefault(() => Uuid().v4()();`
|
each row. For instance, you can generate a uuid for each row with `text().clientDefault(() => Uuid().v4()();`
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
- Reduce unnecessary queries when a stream is unsubscribed and then re-subscribed ([#329](https://github.com/simolus3/moor/issues/329))
|
- Reduce unnecessary queries when a stream is unsubscribed and then re-subscribed ([#329](https://github.com/simolus3/moor/issues/329))
|
||||||
- Experimental new type inference for the sql analyzer. For details, check the
|
- Experimental new type inference for the sql analyzer. For details, check the
|
||||||
`use_experimental_inference` [build option](https://moor.simonbinder.eu/docs/advanced-features/builder_options/)
|
`use_experimental_inference` [build option](https://moor.simonbinder.eu/docs/advanced-features/builder_options/)
|
||||||
- Web: New `initializer` parameter to provide the database when it doesn't exist
|
- Web: New `initializer` parameter to create the database when it doesn't exist
|
||||||
|
|
||||||
## 2.2.0
|
## 2.2.0
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor
|
name: moor
|
||||||
description: Moor is a safe and reactive persistence library for Dart applications
|
description: Moor is a safe and reactive persistence library for Dart applications
|
||||||
version: 2.2.0
|
version: 2.3.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
## unreleased
|
## 2.3.0
|
||||||
|
|
||||||
- Support explicit type arguments for queries in moor files. In
|
- Support explicit type arguments for queries in moor files. In
|
||||||
`foo(:bar AS TEXT, :baz AS INT): SELECT :bar, :baz;`, the column type can now be inferred.
|
`foo(:bar AS TEXT, :baz AS INT): SELECT :bar, :baz;`, the column type can now be inferred.
|
||||||
Previously, the query would fail because of an unknown type.
|
Previously, the query would fail because of an unknown type.
|
||||||
- Support `CREATE TRIGGER` statements in moor files
|
- Support `CREATE TRIGGER` and `CREATE INDEX` statements in moor files
|
||||||
|
- Optional new type inference algorithm
|
||||||
|
- CLI tool to analyze moor projects
|
||||||
|
|
||||||
## 2.2.0
|
## 2.2.0
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: moor_generator
|
name: moor_generator
|
||||||
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
description: Dev-dependency to generate table and dataclasses together with the moor package.
|
||||||
version: 2.2.0
|
version: 2.3.0
|
||||||
repository: https://github.com/simolus3/moor
|
repository: https://github.com/simolus3/moor
|
||||||
homepage: https://moor.simonbinder.eu/
|
homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
@ -22,7 +22,7 @@ dependencies:
|
||||||
cli_util: ^0.1.0
|
cli_util: ^0.1.0
|
||||||
|
|
||||||
# Moor-specific analysis
|
# Moor-specific analysis
|
||||||
moor: ^2.0.1
|
moor: ^2.3.0
|
||||||
sqlparser: ^0.5.0
|
sqlparser: ^0.5.0
|
||||||
|
|
||||||
# Dart analysis
|
# Dart analysis
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
## unreleased
|
## 0.6.0
|
||||||
|
|
||||||
- Added a argument type and argument to the visitor classes
|
- __Breaking:__ Added an argument type and argument to the visitor classes
|
||||||
- Experimental new type inference algorithm
|
- Experimental new type inference algorithm
|
||||||
|
(`SqlEngine.withOptions(EngineOptions(enableExperimentalTypeInference: true))`)
|
||||||
- Support `CAST` expressions and the `ISNULL` / `NOTNULL` postfixes
|
- Support `CAST` expressions and the `ISNULL` / `NOTNULL` postfixes
|
||||||
- Support parsing `CREATE TRIGGER` statements
|
- Support parsing `CREATE TRIGGER` statements
|
||||||
- Support parsing `CREATE INDEX` statement
|
- Support parsing `CREATE INDEX` statements
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
- Optionally support the `json1` module
|
- Optionally support the `json1` module
|
||||||
|
|
|
@ -4,19 +4,21 @@ Sql parser and static analyzer written in Dart. At the moment, this library targ
|
||||||
sqlite dialect only.
|
sqlite dialect only.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
This library can parse most sql statements and perform static analysis. We can resolve
|
|
||||||
what type a column in a `SELECT` statement has, infer types for variables, find
|
This library aims to support every sqlite feature, which includes parsing and detailed
|
||||||
semantic errors and more.
|
static analysis.
|
||||||
|
We can resolve what type a column in a `SELECT` statement has, infer types for variables,
|
||||||
|
find semantic errors and more.
|
||||||
|
|
||||||
This library supports most sqlite features:
|
This library supports most sqlite features:
|
||||||
- CRUD: Full support, including joins, `group by`, nested and compound selects, `WITH` clauses
|
- CRUD: Full support, including joins, `group by`, nested and compound selects, `WITH` clauses
|
||||||
and window functions
|
and window functions
|
||||||
- DDL: Supports `CREATE TABLE` statements, including advanced features like foreign keys.
|
- DDL: Supports `CREATE TABLE` statements, including advanced features like foreign keys or
|
||||||
We also support `fts5` and `CREATE VIRTUAL TABLE` statements. Triggers, views and indices
|
virtual tables (when a matching module like `fts5` is enabled). This library also supports
|
||||||
are not yet supported.
|
`CREATE TRIGGER` and `CREATE INDEX` statements.
|
||||||
|
|
||||||
### Using the parser
|
### Using the parser
|
||||||
You can parse the abstract syntax tree of sqlite statements with `SqlEngine.parse`.
|
To obtain an abstract syntax tree from an sql statement, use `SqlEngine.parse`.
|
||||||
```dart
|
```dart
|
||||||
import 'package:sqlparser/sqlparser.dart';
|
import 'package:sqlparser/sqlparser.dart';
|
||||||
|
|
||||||
|
|
|
@ -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.5.0
|
version: 0.6.0
|
||||||
homepage: https://github.com/simolus3/moor/tree/develop/sqlparser
|
homepage: https://github.com/simolus3/moor/tree/develop/sqlparser
|
||||||
#homepage: https://moor.simonbinder.eu/
|
#homepage: https://moor.simonbinder.eu/
|
||||||
issue_tracker: https://github.com/simolus3/moor/issues
|
issue_tracker: https://github.com/simolus3/moor/issues
|
||||||
|
|
Loading…
Reference in New Issue