drift/moor_generator/CHANGELOG.md

35 lines
1.2 KiB
Markdown
Raw Normal View History

2019-07-13 01:50:53 -07:00
## 1.6.0+1
- Generate code to expand array variables
2019-06-30 13:16:58 -07:00
## 1.5.0
- Parse custom queries and write generated mapping code.
- Refactorings and minor improvements in the generator
For more details on the new features, check out changelog of the
[moor](https://pub.dev/packages/moor#-changelog-tab-) package.
## 1.4.0
- Added the `RealColumn`, which stores floating point values
- Better configuration for the serializer with the `JsonKey` annotation and the ability to
use a custom `ValueSerializer`
2019-04-14 07:47:15 -07:00
## 1.3.0
- Moor now supports table joins
- Added table aliases
- Default values for columns: Just use the `withDefault` method when declaring a column
- added expressions that resolve to the current date or time
- Fixed a crash that would occur if the first operation was a transaction
- Better support for custom expressions as part of a regular query
- Faster hashcode implementation in generated data classes
## 1.2.0
- Blob data type
2019-03-10 12:04:32 -07:00
- Generated classes now use lazy getters instead of recalculating fields on each access
2019-03-27 10:56:14 -07:00
- Custom Constraints
- Data classes can be converted from and to json
2019-03-10 04:54:50 -07:00
## 1.1.0
- The generated data classes now implement `toString()`
2019-02-03 04:56:31 -08:00
## 1.0.0
- Initial version of the Moor generator