Pickling v0.10.1._2.11 Release Notes

Release Date: 2015-05-15 // almost 9 years ago
  • ๐Ÿ‘Œ 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