Skip to content
This repository has been archived by the owner on Feb 20, 2019. It is now read-only.

0.10.1

Latest
Compare
Choose a tag to compare
@eed3si9n eed3si9n released this 15 May 17:05
· 158 commits to 0.11.x since this release
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

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