All Versions
8
Latest Version
Avg Release Cycle
139 days
Latest Release
2032 days ago
Changelog History
Changelog History
-
v0.5.1 Changes
July 01, 20192019-07-02
๐ New features & fixes:
- ๐ Support serialization of non-iterable collections and maps
-
v0.5 Changes
March 31, 20192019-04-01
๐ New features & fixes:
- ๐ Support for JsonSerializer/JsonDeserializer
- New ReferencePolicy:
DETECT_CIRCULAR_AND_THROW
- ๐ Improvements and bugfixes
- ๐ google-gson codebase is updated to release 2.8.5
-
v0.4.1 Changes
October 06, 20182018-10-06
๐ New features & fixes:
- ๐ Limited support for Android 4
-
v0.4 Changes
December 09, 20172017-12-09
๐ New features:
- Java 9 compatibility
โก๏ธ Updates:
- ๐ google-gson codebase is updated to release 2.8.2
-
v0.3.1 Changes
August 27, 20172017-08-27
๐ Bugfixes
-
v0.3 Changes
July 31, 20172017-07-31
๐ New features:
- ๐ Ability to specify class loaders to use for de-serialization, see
YaGsonBuilder.setPreferredClassLoaders()
; - ๐ Ability to limit the output JSON length, see
YaGson.toJson(Object src, long charsLimit)
โก๏ธ Updates:
- ๐ google-gson codebase is updated to release 2.8.1;
- ๐ bugfixes
- ๐ Ability to specify class loaders to use for de-serialization, see
-
v0.2 Changes
April 27, 20172017-04-27
๐ New features:
- ๐ Java 8 support;
- full serialization and de-serialization of serializable lambdas;
- skipping non-serializable lambdas;
โก๏ธ Updates:
- ๐ google-gson codebase is updated to release 2.8.0
-
v0.1 Changes
October 30, 2016๐ New features:
- (almost) arbitrary objects serialization, with no need for custom adapters, annotations or any changes of the classes;
- preserves exact types during mapping;
- preserves Collections/Maps behavior, including custom Comparators;
- serializes self-referenced objects, including collections, maps and arrays;
- serializes inner, local and anonymous classes;
- ๐ support for mixed-type collections, maps and arrays;
- ๐ support for non-unique field names, when a field is "overridden" in sub-classes;
Known issues:
- ๐ no Java 8 support yet ;
- incorrect serialization of some Iterators