Skip to content

Releases: yannick-cw/sjq

Fixing arrays with different types

22 Jul 09:29

Choose a tag to compare

Fixing null values

21 Jul 10:57

Choose a tag to compare

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

05 Jul 09:33

Choose a tag to compare

Adds a lot of stuff like

  • nested objects in arrays
  • null support
  • optional values support

First release

04 Jul 14:50

Choose a tag to compare

Oh yes