mirror of https://github.com/AMT-Cheif/drift.git
Prepare 2.1.0 release
This commit is contained in:
parent
b6d5f7eaa8
commit
e83464df28
|
@ -72,8 +72,8 @@ To obtain the current date or the current time as an expression, use the `curren
|
|||
and `currentDateAndTime` constants provided by moor.
|
||||
|
||||
## `IN` and `NOT IN`
|
||||
You can check whether an expression is in a list of values by using the `isIn` andd `isNotIn`
|
||||
method:
|
||||
You can check whether an expression is in a list of values by using the `isIn` and `isNotIn`
|
||||
methods:
|
||||
```dart
|
||||
select(animals)..where((a) => a.amountOfLegs.isIn([3, 7, 4, 2]);
|
||||
```
|
||||
|
|
|
@ -42,7 +42,8 @@ stream using `watch()`.
|
|||
You can apply filters to a query by calling `where()`. The where method takes a function that
|
||||
should map the given table to an `Expression` of boolean. A common way to create such expression
|
||||
is by using `equals` on expressions. Integer columns can also be compared with `isBiggerThan`
|
||||
and `isSmallerThan`. You can compose expressions using `a & b, a | b` and `a.not()`.
|
||||
and `isSmallerThan`. You can compose expressions using `a & b, a | b` and `a.not()`. For more
|
||||
details on expressions, see [this guide]({{< relref "expressions.md" >}}).
|
||||
### Limit
|
||||
You can limit the amount of results returned by calling `limit` on queries. The method accepts
|
||||
the amount of rows to return and an optional offset.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
title: Dart VM (Desktop support)
|
||||
description: Run moor on both mobile and desktops
|
||||
description: Run moor on both mobile and desktop
|
||||
---
|
||||
|
||||
## Supported versions
|
||||
|
@ -67,5 +67,5 @@ DynamicLibrary _openOnLinux() {
|
|||
})
|
||||
```
|
||||
__Important warning__: On Android, `FlutterQueryExecutor.inDatabaseFolder` may use a different folder than
|
||||
`getApplicationDocumentsDirectory()` which can cause data loss.
|
||||
`getApplicationDocumentsDirectory()` which can cause data loss when migrating.
|
||||
Please create an issue if you need guidance on this soon.
|
|
@ -1,4 +1,4 @@
|
|||
## unreleased
|
||||
## 2.1.0
|
||||
|
||||
- New extension methods to simplify the Dart api!
|
||||
- Use `&`, `or` and `.not()` to combine boolean expressions.
|
||||
|
@ -17,6 +17,7 @@
|
|||
- Reduce use of parentheses in SQL code generated at runtime
|
||||
- Query streams now emit errors that happened while running the query
|
||||
- Upgraded the sql parser which now supports `WITH` clauses in moor files
|
||||
- Internal refactorings on the runtime query builder
|
||||
|
||||
## 2.0.1
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: moor
|
||||
description: Moor is a safe and reactive persistence library for Dart applications
|
||||
version: 2.0.1+1
|
||||
version: 2.1.0
|
||||
repository: https://github.com/simolus3/moor
|
||||
homepage: https://moor.simonbinder.eu/
|
||||
issue_tracker: https://github.com/simolus3/moor/issues
|
||||
|
@ -19,7 +19,7 @@ dependencies:
|
|||
pedantic: ^1.0.0
|
||||
|
||||
dev_dependencies:
|
||||
moor_generator: ^2.0.0
|
||||
moor_generator: ^2.1.0
|
||||
moor_ffi: # Used to run some tests
|
||||
path: ../moor_ffi
|
||||
build_runner: '>=1.3.0 <2.0.0'
|
||||
|
@ -27,8 +27,8 @@ dev_dependencies:
|
|||
test: ^1.9.0
|
||||
mockito: ^4.1.0
|
||||
|
||||
#dependency_overrides:
|
||||
# moor_generator:
|
||||
# path: ../moor_generator
|
||||
# sqlparser:
|
||||
# path: ../sqlparser
|
||||
dependency_overrides:
|
||||
moor_generator:
|
||||
path: ../moor_generator
|
||||
sqlparser:
|
||||
path: ../sqlparser
|
|
@ -1,4 +1,4 @@
|
|||
## unreleased
|
||||
## 2.1.0
|
||||
|
||||
- Accept inheritance in table definitions (e.g. if an abstract class declared as `IntColumn get foo => integer()()`,
|
||||
tables inheriting from that class will also have a `foo` column)
|
||||
|
|
|
@ -26,7 +26,7 @@ dependencies:
|
|||
moor: ^2.0.1
|
||||
meta: ^1.1.0
|
||||
path: ^1.6.0
|
||||
sqlparser: ^0.3.0
|
||||
sqlparser: ^0.4.0
|
||||
dev_dependencies:
|
||||
test: ^1.6.0
|
||||
test_core: ^0.2.0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
## unreleased
|
||||
## 0.4.0
|
||||
- Support common table expressions
|
||||
- Handle special `rowid`, `oid`, `__rowid__` references
|
||||
- Support references to `sqlite_master` and `sqlite_sequence` tables
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: sqlparser
|
||||
description: Parses sqlite statements and performs static analysis on them
|
||||
version: 0.3.0+1
|
||||
version: 0.4.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