Finish changelog and pubspec for 2.3 release

This commit is contained in:
Simon Binder 2020-01-21 17:55:41 +01:00
parent 064a57d381
commit 257cfaca2e
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
7 changed files with 25 additions and 20 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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(

View File

@ -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