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
|
||||
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))
|
||||
- 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/)
|
||||
- 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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor
|
||||
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
|
||||
homepage: https://moor.simonbinder.eu/
|
||||
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
|
||||
`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.
|
||||
- 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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor_generator
|
||||
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
|
||||
homepage: https://moor.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/moor/issues
|
||||
|
@ -22,7 +22,7 @@ dependencies:
|
|||
cli_util: ^0.1.0
|
||||
|
||||
# Moor-specific analysis
|
||||
moor: ^2.0.1
|
||||
moor: ^2.3.0
|
||||
sqlparser: ^0.5.0
|
||||
|
||||
# Dart analysis
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
## unreleased
|
||||
## 0.6.0
|
||||
|
||||
- Added a argument type and argument to the visitor classes
|
||||
- Experimental new type inference algorithm
|
||||
- __Breaking:__ Added an argument type and argument to the visitor classes
|
||||
- Experimental new type inference algorithm
|
||||
(`SqlEngine.withOptions(EngineOptions(enableExperimentalTypeInference: true))`)
|
||||
- Support `CAST` expressions and the `ISNULL` / `NOTNULL` postfixes
|
||||
- Support parsing `CREATE TRIGGER` statements
|
||||
- Support parsing `CREATE INDEX` statement
|
||||
- Support parsing `CREATE INDEX` statements
|
||||
|
||||
## 0.5.0
|
||||
- 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.
|
||||
|
||||
## 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
|
||||
semantic errors and more.
|
||||
|
||||
This library aims to support every sqlite feature, which includes parsing and detailed
|
||||
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:
|
||||
- CRUD: Full support, including joins, `group by`, nested and compound selects, `WITH` clauses
|
||||
and window functions
|
||||
- DDL: Supports `CREATE TABLE` statements, including advanced features like foreign keys.
|
||||
We also support `fts5` and `CREATE VIRTUAL TABLE` statements. Triggers, views and indices
|
||||
are not yet supported.
|
||||
- DDL: Supports `CREATE TABLE` statements, including advanced features like foreign keys or
|
||||
virtual tables (when a matching module like `fts5` is enabled). This library also supports
|
||||
`CREATE TRIGGER` and `CREATE INDEX` statements.
|
||||
|
||||
### 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
|
||||
import 'package:sqlparser/sqlparser.dart';
|
||||
|
||||
|
@ -47,7 +49,7 @@ To use the analyzer, first register all known tables via `SqlEngine.registerTabl
|
|||
about errors. The type of result columns and expressions can be inferred by using
|
||||
`AnalysisContext.typeOf()`. Here's an example:
|
||||
|
||||
```dart
|
||||
```dart
|
||||
final id = TableColumn('id', const ResolvedType(type: BasicType.int));
|
||||
final content = TableColumn('content', const ResolvedType(type: BasicType.text));
|
||||
final demoTable = Table(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: sqlparser
|
||||
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://moor.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/moor/issues
|
||||
|
|
Loading…
Reference in New Issue