Releases: justinwoo/purescript-simple-json
Releases · justinwoo/purescript-simple-json
v9.0.0
v8.0.0 for PureScript 0.14.0
PureScript 0.14.0
v7.0.0
v5.1.0
v4.3.0
v4.0.0
Simple-JSON 3.0
Same great simple usage.
Major changes:
- NullOrUndefined removed, as it is also removed from Foreign-Generics
- Maybe instance now uses the same NullOrUndefined behavior as Foreign-Generics, outputting undefined (no properties) for Nothing.
- Nullable will continue to write
null
and explicitly check fornull
in reading.
2.0!
Variant
1.0!
Many people have already been using this library to great effect, so nothing much new comes in this release except for one big change by @kritzcreek:
readJSON
now returnsEither MultipleErrors a
readJSON'
is available to return the oldF a
This makes usage for many people easier as you no longer need to manually runExcept
anymore.