Gson RoadMap

Gson RoadMap

Planned Releases:
No plans as of now!

Past Releases:

Version 1.4 BETA - Released Friday October 9, 2009
  • JsonStreamParser: A streaming parser API class to deserialize multiple JSON objects on a stream (such as a pipelined HTTP response)
  • Raised the deserialization limit for byte and object arrays and collection to over 11MB from 80KB. See issue 96.
  • While serializing, Gson now uses the actual type of a field. This allows serialization of base-class references holding sub-classes to the JSON for the sub-class. It also allows serialization of raw collections. See Issue 155, 156.
  • Added a Gson.toJsonTree() method that serializes a Java object to a tree of JsonElements. See issue 110.
  • Added a Gson.fromJson(JsonElement) method that deserializes from a Json parse tree.
  • Updated Expose annotation to contain parameters serialize and deserialize to control whether a field gets serialized or deserialized. See issue 146.
  • Added a new naming policy LOWER_CASE_WITH_DASHES
  • Default date type adapter is now thread-safe. See Issue 162.
  • JsonElement.toString() now outputs valid JSON after escaping characters properly. See issue 154.
  • JsonPrimitive.equals() now returns true for two numbers if their values are equal. All integral types (long, int, short, byte, BigDecimal, Long, Integer, Short, Byte) are treated equivalent for comparison. Similarly, floating point types (double, float, BigDecimal, Double, Float) are treated equivalent as well. See issue 147.
  • Fixed bugs in pretty printing. See issue 153.
  • If a field causes circular reference error, Gson lists the field name instead of the object value. See issue 118.
  • Gson now serializes a list with null elements correctly. See issue 117.
  • Fixed issue 121, 123, 126.
  • Support user defined exclusion strategies (Feature Request 138).

Version 1.3 Released Wednesday, Apr 1, 2009
  • Fix security token to remove the <data> element.
  • Changed JsonParser.parse method to be non-static
  • Throw JsonParseExceptions instead of ClassCastExceptions and UnsupportedOperationExceptions
Version 1.3 beta3 Released Tuesday, Mar 17, 2009
  • Supported custom mapping of field names by making FieldNamingStrategy public and allowing FieldNamingStrategy to be set in GsonBuilder. See issue 104.
  • Added a new GsonBuilder setting generateNonExecutableJson() that prefixes the generated JSON with some text to make the output non-executable Javascript. Gson now recognizes this text from input while deserializing and filters it out. This feature is meant to prevent script sourcing attacks. See Issue 42.
  • Supported deserialization of sets with elements that do not implement Comparable. See Issue 100
  • Supported deserialization of floating point numbers without a sign after E. See Issue 94
Version 1.3 beta2 Released Thursday, Feb 05, 2009
  • Added a new Parser API. See issue 65
  • Supported deserialization of java.util.Properties. See Issue 87
  • Fixed the pretty printing of maps. See Issue 93
  • Supported automatic conversion of strings into numeric and boolean types if possible. See Issue 89
  • Supported deserialization of longs into strings. See Issue 82
Version 1.3 beta1 Released Jan 2009 (Target Date Friday, Dec 15, 2008)
  • Made JSON parser lenient by allowing unquoted member names while parsing. See Issue 41
  • Better precision handling for floating points. See Issue 7172,
  • Support for deserialization of special double values: NaN, infinity and negative infinity. See Issue 81
  • Backward compatibility issue found with serialization of Collection<Object> type.  See Issue 73 and 83.
  • Able to serialize null keys and/or values within a Map.  See Issue 77.
  • Deserializing non-String value keys for Maps.  See Issue 85.
  • Support for clashing field name.  See Issue 76.
  • Removed the need to invoke instance creator if a deserializer is registered. See issues 37 and 69.
  • Added default support for java.util.UUID. See Issue 79
  • Changed Gson.toJson() methods to use Appendable instead of Writer. Issue 52. This requires that clients recompile their source code that uses Gson.
Version 1.2.3 Released Saturday, 11/15/2008 (Target Date Friday, Oct 31, 2008)
  • Added support to serialize raw maps. See issue 45
  • Made Gson thread-safe by fixing Issue 63
  • Fixed Issue 68 to allow default type adapters for primitive types to be replaced by custom type adapters.
  • Relaxed the JSON parser to accept escaped slash (\/) as a valid character in the string. See Issue 66
Version 1.2.2: Released Tuesday, 10/14/2008 (Target Date: None, Unplanned)
  • This version was released to fix Issue 58 which caused a regression bug in version 1.2.1
  • It includes the contents from the release 1.2.1
Version 1.2.1: Released Monday, 10/13/2008 (Target Date Friday, Oct 7, 2008)
  • Note: This release was abandoned since it caused a regression (Issue 58) bug.
  • Includes updated parser for JSON that supports much larger strings. For example, Gson 1.2 failed at parsing a 100k string, Gson 1.2.1 has successfully parsed strings of size 15-20MB. The parser also is faster and consumes less memory since it uses a token match instead of a recursion-based Grammar production match. See Issue 47.
  • Gson now supports field names with single quotes ' in addition to double quotes ". See Issue 55.
  • Includes bug fixes for issue 46, 49, 51, 53, 54, and 56.
Version 1.2: Released Friday, 8/29/2008 (Target Date Tuesday Aug 26, 2008)
Version 1.1.1: Released Friday, 7/18/2008 (Target Date Friday, Aug 1, 2008)
Version 1.1: Released Tuesday, 7/1/2008 (Target Date Thursday, July 3, 2008)
Version 1.0.1: Released Tuesday, 6/17/2008 (Target Date Friday,  Jun 13, 2008)

你可能感兴趣的:(JavaScript,thread,json,Security,performance)