v0.11.0
A lot of good though breaking changes:
- Introduce
Safe
andUnsafe
modes forS.parseWith
function - Introduce
S.serializeWith
function withSafe
andUnsafe
modes - Remove
S.constructWith
in favor ofS.parseWith(~mode=Unsafe, struct)
- Remove
S.destructWith
in favor ofS.serializeWith(~mode=Unsafe, struct)
- Introduce
S.json
struct factory - Remove
S.parseJsonWith
in favor ofS.parseWith(S.json(struct))
- Remove
S.serializeJsonWith
in favor ofS.serializeWith(S.json(struct))
- Add
S.transformUnknown
function for more convenient work withS.unknown
struct factory - Renaming public functions of the
MakeMetadata
module - Add undocumented
S.refine
function. It's an alpha version, that has a hight chance to be changed in next releases.