blob: 6f956f0cf2425213e03ba04a1861be2ea0d92260 [file] [log] [blame]
Michael Clark68cafad2009-01-06 22:56:57 +000010.9
Christopher Watford543bb142009-07-08 03:46:10 +00002 * Fix any noticeable spelling or grammar errors.
3 * Make sure every va_start has a va_end.
4 * Check all pointers for validity.
5 Erik Hovland, erik at hovland dot org
Michael Clark24ea8c02009-04-27 08:22:22 +00006 * Fix json_object_get_boolean to return false for empty string
7 Spotted by Vitaly Kruglikov, Vitaly dot Kruglikov at palm dot com
Michael Clark95f55a72009-04-27 08:16:58 +00008 * optimizations to json_tokener_parse_ex(), printbuf_memappend()
9 Brent Miller, bdmiller at yahoo dash inc dot com
Christopher Watfordc5cbf822009-06-30 03:40:53 +000010 * Disable REFCOUNT_DEBUG by default in json_object.c
Michael Clark266a3fd2009-02-25 01:55:31 +000011 * Don't use this as a variable, so we can compile with a C++ compiler
Michael Clarkaaec1ef2009-02-25 02:31:32 +000012 * Add casts from void* to type of assignment when using malloc
13 * Add #ifdef __cplusplus guards to all of the headers
14 * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table
Michael Clark266a3fd2009-02-25 01:55:31 +000015 Michael Clark, <michael@metaparadigm.com>
Michael Clark22dee7c2009-02-25 01:51:40 +000016 * Null pointer dereference fix. Fix json_object_get_boolean strlen test
17 to not return TRUE for zero length string. Remove redundant includes.
18 Erik Hovland, erik at hovland dot org
Michael Clarke8de0782009-02-25 01:45:00 +000019 * Fixed warning reported by adding -Wstrict-prototypes
20 -Wold-style-definition to the compilatin flags.
21 Dotan Barak, dotanba at gmail dot com
Michael Clark68cafad2009-01-06 22:56:57 +000022 * Add const correctness to public interfaces
23 Gerard Krol, g dot c dot krol at student dot tudelft dot nl
24
Michael Clarkdfaf6702007-10-25 02:26:00 +0000250.8
Michael Clark8cdac642009-01-05 03:57:59 +000026 * Add va_end for every va_start
27 Dotan Barak, dotanba at gmail dot com
Michael Clarkdfaf6702007-10-25 02:26:00 +000028 * Add macros to enable compiling out debug code
29 Geoffrey Young, geoff at modperlcookbook dot org
Michael Clarkc8f4a6e2007-12-07 02:44:24 +000030 * Fix bug with use of capital E in numbers with exponents
31 Mateusz Loskot, mateusz at loskot dot net
32 * Add stddef.h include
Michael Clark14862b12007-12-07 02:50:42 +000033 * Patch allows for json-c compile with -Werror and not fail due to
34 -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
35 Geoffrey Young, geoff at modperlcookbook dot org
Michael Clarkdfaf6702007-10-25 02:26:00 +000036
Michael Clarka850f8e2007-03-13 08:26:26 +0000370.7
38 * Add escaping of backslash to json output
39 * Add escaping of foward slash on tokenizing and output
40 * Changes to internal tokenizer from using recursion to
41 using a depth state structure to allow incremental parsing
42
Michael Clark837240f2007-03-13 08:26:25 +0000430.6
44 * Fix bug in escaping of control characters
45 Johan Björklund, johbjo09 at kth dot se
46 * Remove include "config.h" from headers (should only
47 be included from .c files)
48 Michael Clark <michael@metaparadigm.com>
49
Michael Clarkf6a6e482007-03-13 08:26:23 +0000500.5
51 * Make headers C++ compatible by change *this to *obj
52 * Add ifdef C++ extern "C" to headers
53 * Use simpler definition of min and max in bits.h
54 Larry Lansing, llansing at fuzzynerd dot com
55
56 * Remove automake 1.6 requirement
57 * Move autogen commands into autogen.sh. Update README
58 * Remove error pointer special case for Windows
59 * Change license from LGPL to MIT
60 Michael Clark <michael@metaparadigm.com>
61
Michael Clark0370baa2007-03-13 08:26:22 +0000620.4
63 * Fix additional error case in object parsing
64 * Add back sign reversal in nested object parse as error pointer
65 value is negative, while error value is positive.
66 Michael Clark <michael@metaparadigm.com>
67
Michael Clark7b899b62007-03-13 08:26:21 +0000680.3
69 * fix pointer arithmetic bug for error pointer check in is_error() macro
70 * fix type passed to printbuf_memappend in json_tokener
71 * update autotools bootstrap instructions in README
72 Michael Clark <michael@metaparadigm.com>
73
Michael Clark4504df72007-03-13 08:26:20 +0000740.2
75 * printbuf.c - C. Watford (christopher.watford@gmail.com)
76 Added a Win32/Win64 compliant implementation of vasprintf
77 * debug.c - C. Watford (christopher.watford@gmail.com)
78 Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
79 by a configure script
80 * json_object.c - C. Watford (christopher.watford@gmail.com)
81 Added scope operator to wrap usage of json_object_object_foreach, this
82 needs to be rethought to be more ANSI C friendly
83 * json_object.h - C. Watford (christopher.watford@gmail.com)
84 Added Microsoft C friendly version of json_object_object_foreach
85 * json_tokener.c - C. Watford (christopher.watford@gmail.com)
86 Added a Win32/Win64 compliant implementation of strndup
87 * json_util.c - C. Watford (christopher.watford@gmail.com)
88 Added cast and mask to suffice size_t v. unsigned int conversion
89 correctness
90 * json_tokener.c - sign reversal issue on error info for nested object parse
91 spotted by Johan Björklund (johbjo09 at kth.se)
92 * json_object.c - escape " in json_escape_str
93 * Change to automake and libtool to build shared and static library
94 Michael Clark <michael@metaparadigm.com>
95
960.1
97 * initial release