You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
* Added `canSerialize` and `canDeserialize`.
* Upgraded Jackson to 1.9.0.
* Dropped support for Scala 2.8.1, added support for 2.8.2. Upgrade.
* Dropped support for 2.9.0-1. Upgrade.
* Added `@JsonIgnoreProperties` support.
* No longer serializing `transient` members of case classes.
* Upgraded to Jackson 1.8.x. (Jerkson will now track the highest available
version in the 1.8.x series.)
* Upgraded to Jackson 1.8.3.
* Fixed deserialization of empty JSON objects as `JValue` instances.
* Fixed deserialization of `Map[java.lang.Integer, A]` and
`Map[java.lang.Long, A]` instances.
* Fixed deserialization of case classes in weird bytecode environments like
Play.
* Added support for case classes nested in objects.
* Allowed for deserializing `BigInt` and `BigDecimal` instances from anything
those classes can parse as text.
* Added a cache for type manifests.
* Added a very comprehensive set of tests, refactored around support …
…for various
types. (h/t Daniel Brown)
* Added support for `StringBuilder`, `Array[A]`, `immutable._`, `mutable._`,
`collection._` classes, `AST` classes, and others.
* Fixed error messages when parsing empty JSON objects as case classes.
* Enabled caching of all serializers and deserializers.
* Switched to Maven for builds.
* Removed the deprecated `Parser#parseStreamOf`.