v0.11.0
- Upgrade json4s to v3.3.0 (#242)
- Array support - change
basedOn
tomapTo
(!!!BROKEN CHANGE) - Array support - add built-in supported type checking (#244)
- Optimize object insertions and updates (#247)
- Support
at time zone
for time/timestamp (#250)
NOTE:
When you define a array type mapper for a wrap type Institution
, you do it
before
implicit val institutionListTypeWrapper = new SimpleArrayJdbcType[Institution]("int8")
.basedOn[Long](_.value, new Institution(_)).to(_.toList)
now
implicit val institutionListTypeWrapper = new SimpleArrayJdbcType[Long]("int8")
.mapTo[Institution](new Institution(_), _.value).to(_.toList)