angel_orm_generator 2.0.5
angel_orm_generator: ^2.0.5 copied to clipboard
Code generators for Angel's ORM. Generates query builder classes.
2.0.5 #
- Remove
ShimFieldImplcheck, which broke relations. - Fix bug where primary key type would not be emitted in migrations.
- Fix
ManyToManyignoring primary key types.
2.0.4 #
- Fix
reviveColumnand element finding to properly detect all annotations now.
2.0.3 #
- Remove
targetsinbuild.yaml.
2.0.2 #
- Change
build_configrange to">=0.3.0 <0.5.0".
2.0.1 #
- Gracefully handle
nullin enum fields. - Add
taketo whereverskipis used.
2.0.0+2 #
- Widen
analyzerdependency range.
2.0.0+1 #
- Restore
build.yaml, which at some point, got deleted.
2.0.0 #
parse->tryParsewhere used.
2.0.0-dev.7 #
- Handle
@ManyToMany. - Handle cases where the class is not a
Model.- Stop assuming things have
id, etc.
- Stop assuming things have
- Resolve a bug where the
indexTypeof@Columnannotations. would not be found. - Add
cascade: trueto drops for hasOne/hasMany/ManyToMany migrations. - Support enum default values in migrations.
2.0.0-dev.6 #
- Fix bug where an extra field would be inserted into joins and botch the result.
- Narrow analyzer dependency.
2.0.0-dev.5 #
- Implement cast-based
doublesupport. - Finish
ListSqlExpressionBuilder.
2.0.0-dev.4 #
- List generation support.
2.0.0-dev.3 #
- Add JSON/JSONB support for Maps.
2.0.0-dev.2 #
- Changes to work with
package:angel_orm@2.0.0-dev.15.
2.0.0-dev.1 #
- Generate migration files.
2.0.0-dev #
- Dart 2 updates, and more.
1.0.0-alpha+6 #
DateTimeis nowCASTon insertion and update operations.
1.0.0-alpha+3 #
Implemented @hasOne, with tests. Still missing @hasMany.
belongsToMany will likely be scrapped.
1.0.0-alpha+2 #
- Added support for
belongsTorelationships. Still missinghasOne,hasMany,belongsToMany.
1.0.0-alpha+1 #
- Closed #12.
insertXandupdateXnow userc.camelCase, instead ofrc.snakeCase. - Closed #13. Added
limitandoffsetproperties toXQuery. - Closed #14. Refined the
ormethod (it now takes anXQueryWhere), and removedandandnot. - Closed #16. Added
sortAscendingandsortDescendingtoXQuery. - Closed #17.
deletenow usestoSqlfromXQuery. - Closed #18.
XQuerynow supportsunionandunionAll.