- it is now possible to decode an object under a given JSON path
Decoder
can be fully automatically derived- decode* shortcuts that can decode from
java.io.File
Encoder
capabilities that match theDecoder
's functionality (auto derivation, etc)
- fixed decoding when an optional field was
null
in the JSON
- Implement
decodeObject
anddecodeKeyValues
functions - Implement
Decoder
instances for some scalar types- String
- Int
- Boolean
- BigDecimal
- LocalDate (java.time)
- Implement
Decoder
instances forOption
andList
- Implement semi automatic
Decoder
derivation for case classes