8000 Tags · Nash0x7E2/moor · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: Nash0x7E2/moor

Tags

moor_ffi-0.3.0

Toggle moor_ffi-0.3.0's commit message

Verified

This commit was signed with the committer’s verified signature.
simolus3 Simon Binder
Publish moor version 2.1.1

sqlparser-0.4.0

Toggle sqlparser-0.4.0's commit message
- Support common table expressions

- Handle special `rowid`, `oid`, `__rowid__` references
- Support references to `sqlite_master` and `sqlite_sequence` tables

moor-2.1.0

Toggle moor-2.1.0's commit message
- New extension methods to simplify the Dart api!

  - Use `&`, `or` and `.not()` to combine boolean expressions.
    ```dart
    // OLD
    select(animals)..where((a) => and(not(a.isMammal), a.amountOfLegs.equals(4)))
    // NEW:
    select(animals)..where((a) => a.isMammal.not() & a.amountOfLegs.equals(4))
    ```
  - Arithmetic: New `+`, `-`, `*` and `/` operators for int and double sql expressions
  - New `+` operator for string concatenation
- Fix crash when `customStatement` is the first operation used on a database ([simolus3#199](simolus3#199))
- Allow transactions inside a `beforeOpen` callback
- New `batch` method on generated databases to execute multiple queries in a single batch
- Experimental support to run moor on a background isolate
- 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

moor_generator-2.1.0

Toggle moor_generator-2.1.0's commit message
- 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)
- New `use_data_class_name_for_companions` option that will make the name of the companion
  based on the data class name (uses table name by default).
- New `use_column_name_as_json_key_when_defined_in_moor_file` option to use the column name
  instead of the Dart getter name as json key for columns declared in moor files

moor_ffi-0.2.0

Toggle moor_ffi-0.2.0's commit message
- Remove the `background` flag from the moor apis provided by this pa…

…ckage. Use the moor isolate api

  instead.
- Remove builtin support for background execution from the low-level `Database` api
- Support Dart 2.6, drop support for older versions

2.0.1+1

Toggle 2.0.1+1's commit message

Verified

This commit was signed with the committer’s verified signature.
simolus3 Simon Binder
Release moor 2.0.1+1: Fix for customStatement on open

2.0.1

Toggle 2.0.1's commit message

Verified

This commit was signed with the committer’s verified signature.
simolus3 Simon Binder
Release moor and moor_generator 2.0.1, sqlparser 0.3.0+1

2.0.0

Toggle 2.0.0's commit message

Verified

This commit was signed with the committer’s verified signature.
simolus3 Simon Binder
Release moor 2.0

v1.7

Toggle v1.7's commit message

Verified

This commit was signed with the committer’s verified signature.
simolus3 Simon Binder
Write changelogs, prepare release 1.7

v1.1

Toggle v1.1's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
simolus3 Simon Binder
Release version 1.1

0