Pickling v0.11.0-M2 Release Notes
Release Date: 2016-06-01 // almost 7 years ago-
No data yet ๐
You can check the official repo
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