json-simple/trunk/ChangeLog.txt

Code
Comments
Other
Rev Date Author Line
50 26 Feb 19 nicklas 1 ChangeLog
50 26 Feb 19 nicklas 2
58 26 Feb 19 nicklas 3 Version 1.1.1-1 (2019/02/26) (Nicklas Nordborg)
58 26 Feb 19 nicklas 4 * Introduced generic type parameters in a lot of places. Most importantly:
58 26 Feb 19 nicklas 5   JSONArray = List<Object>
58 26 Feb 19 nicklas 6   JSONObject = Map<String, Object>
58 26 Feb 19 nicklas 7
50 26 Feb 19 nicklas 8 Version 1.1.1 (2012/01/29)
50 26 Feb 19 nicklas 9 * Supports OSGi
50 26 Feb 19 nicklas 10 * Accepts a java.util.Map parameter in constructor of JSONObject
50 26 Feb 19 nicklas 11
50 26 Feb 19 nicklas 12 Version 1.1  (2009/01/23)
50 26 Feb 19 nicklas 13 * Supports stoppable SAX-like content handler for streaming of JSON text
50 26 Feb 19 nicklas 14 * Added JSONStreamAware to support streaming JSON text
50 26 Feb 19 nicklas 15 * Added ContainerFactory to support creating arbitrary Map and List as JSON object and JSON array container during decoding
50 26 Feb 19 nicklas 16 * Supports any Map and List as JSON object and JSON array container during encoding
50 26 Feb 19 nicklas 17 * Added interface JSONAware
50 26 Feb 19 nicklas 18 * Added ParseException to get detail error report while parsing 
50 26 Feb 19 nicklas 19 * Added escaping for Unicode characters that cause problems for browser JS eval
50 26 Feb 19 nicklas 20  
50 26 Feb 19 nicklas 21 Version 1.02 (2009/01/10)
50 26 Feb 19 nicklas 22 * Updated json.lex to improve performance of the lexer
50 26 Feb 19 nicklas 23 * Removed Rope.java and related junit test
50 26 Feb 19 nicklas 24
50 26 Feb 19 nicklas 25 Version 1.01 (2008/08/26)
50 26 Feb 19 nicklas 26 * License changed to a more commerce friendly and clear one, Apache License 2.0
50 26 Feb 19 nicklas 27 * Use JFlex to generate a faster Yylex.java
50 26 Feb 19 nicklas 28 * Added Rope.java to get faster string operations
50 26 Feb 19 nicklas 29 * Separate test codes from source codes
50 26 Feb 19 nicklas 30 * Added ant build file build.xml
50 26 Feb 19 nicklas 31
50 26 Feb 19 nicklas 32 Version 1.0 (2006/04/15)
50 26 Feb 19 nicklas 33 * Initial version