From 257cfaca2e41d68a136d59daaaa66b1bb2c80f4e Mon Sep 17 00:00:00 2001 From: Simon Binder Date: Tue, 21 Jan 2020 17:55:41 +0100 Subject: [PATCH] Finish changelog and pubspec for 2.3 release --- moor/CHANGELOG.md | 4 ++-- moor/pubspec.yaml | 2 +- moor_generator/CHANGELOG.md | 6 ++++-- moor_generator/pubspec.yaml | 4 ++-- sqlparser/CHANGELOG.md | 9 +++++---- sqlparser/README.md | 18 ++++++++++-------- sqlparser/pubspec.yaml | 2 +- 7 files changed, 25 insertions(+), 20 deletions(-) diff --git a/moor/CHANGELOG.md b/moor/CHANGELOG.md index dc1d0353..6b1ae3ba 100644 --- a/moor/CHANGELOG.md +++ b/moor/CHANGELOG.md @@ -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 diff --git a/moor/pubspec.yaml b/moor/pubspec.yaml index b011612d..1d5a82a7 100644 --- a/moor/pubspec.yaml +++ b/moor/pubspec.yaml @@ -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 diff --git a/moor_generator/CHANGELOG.md b/moor_generator/CHANGELOG.md index b8f7e830..5f6009a0 100644 --- a/moor_generator/CHANGELOG.md +++ b/moor_generator/CHANGELOG.md @@ -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 diff --git a/moor_generator/pubspec.yaml b/moor_generator/pubspec.yaml index 75d58386..41357d3b 100644 --- a/moor_generator/pubspec.yaml +++ b/moor_generator/pubspec.yaml @@ -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 diff --git a/sqlparser/CHANGELOG.md b/sqlparser/CHANGELOG.md index 433bf589..e9fda811 100644 --- a/sqlparser/CHANGELOG.md +++ b/sqlparser/CHANGELOG.md @@ -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 diff --git a/sqlparser/README.md b/sqlparser/README.md index 6847a21c..ae7ef857 100644 --- a/sqlparser/README.md +++ b/sqlparser/README.md @@ -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( diff --git a/sqlparser/pubspec.yaml b/sqlparser/pubspec.yaml index 8e6adb31..3a995e33 100644 --- a/sqlparser/pubspec.yaml +++ b/sqlparser/pubspec.yaml @@ -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