Pickling v0.11.0-M2 Release Notes

Release Date: 2016-06-01 // almost 8 years ago

Previous changes from v0.10.1._2.11

  • ๐Ÿ‘Œ Improvements

    ๐Ÿ›  Fixes

    • ๐Ÿ›  Fixes pickling of Java objects. See below
    • ๐Ÿ›  Fixes unpickling of sealed trait in Array. #294 by @jsuereth
    • ๐Ÿ›  Fixes unpickling of val whose implementation accesses a field. #328 by @phaller

    โ†ช Java Pickling workaround

    0๏ธโƒฃ Scala Pickling by default uses compile-time type information
    to automatically generate a pickler for a given type.
    For Java types, Pickling tries to guess the list of fields,
    and it often guesses incorrectly. #60, #263

    โ†ช Pickling 0.10.1 adds a workaround by stopping to
    compile when it detects an empty pickler. #295 by @eed3si9n