Skip to content

4.0.0-beta2

Pre-release
Pre-release
Compare
Choose a tag to compare
@agrosner agrosner released this 13 Nov 19:45
· 910 commits to master since this release
  1. Upgrade to API 25 (7.1.1)
  2. @Column with TypeConverter now properly convert specified Model types in SQLite queries via the generated TypeConvertedProperty class! Also you can reverse the query to specify the Database-typed query in a SQLite query:
Coordinate coord = ...;
SQLite.select().from(MyTable.class).
  .where(MyTable_Table.coordinate.eq(coord))
  .querySingle();

or

Latitude lat = ...;
SQLite.select().from(MyTable.class).
  .where(MyTable_Table.coordinate.invertProperty().eq("40.707720, -74.014842"))
  .querySingle();
  1. Add BigDecimalConverter as default converted included in lib.
  2. Fix issue with private field access in a @ForeignKey reference, due to new processor code.
  3. More bug fixes.
  4. Remove type param from BaseModelView, no longer necessary or needed.
  5. Fixes issue where Enum were not properly converted.