Releases: yannick-cw/sjq
Releases · yannick-cw/sjq
Fixing arrays with different types
Fixing null values
If you have a json with
{
"things": [
{ "id": null },
{ "id": 22 }
]
}
it will not correctly infer
case class Outer(things: List[Inner])
case class Inner(id: Option[Double])
Make most json work
Adds a lot of stuff like
- nested objects in arrays
- null support
- optional values support
First release
Oh yes