Skip to content

v1.7.2 FromJson(String, etc.).transform() is now replayable

Compare
Choose a tag to compare
@htmldoug htmldoug released this 10 Jan 07:25
· 15 commits to v1 since this release
3071687

Bugfix or Feature?

  • #108/#109 FromJson(...).transform() can now be called multiple types for most input types. For example:
    val input = FromJson("42")
    input.transform(ToScala[Int]) // 42
    input.transform(ToScala[Int]) // 42, no EOF exception!