blob: 2009a1e2a847f0b173e8d1e73e5bda2c8352989b [file] [log] [blame]
Michael Clark68cafad2009-01-06 22:56:57 +000010.9
Michael Clark22dee7c2009-02-25 01:51:40 +00002 * Null pointer dereference fix. Fix json_object_get_boolean strlen test
3 to not return TRUE for zero length string. Remove redundant includes.
4 Erik Hovland, erik at hovland dot org
Michael Clarke8de0782009-02-25 01:45:00 +00005 * Fixed warning reported by adding -Wstrict-prototypes
6 -Wold-style-definition to the compilatin flags.
7 Dotan Barak, dotanba at gmail dot com
Michael Clark68cafad2009-01-06 22:56:57 +00008 * Add const correctness to public interfaces
9 Gerard Krol, g dot c dot krol at student dot tudelft dot nl
10
Michael Clarkdfaf6702007-10-25 02:26:00 +0000110.8
Michael Clark8cdac642009-01-05 03:57:59 +000012 * Add va_end for every va_start
13 Dotan Barak, dotanba at gmail dot com
Michael Clarkdfaf6702007-10-25 02:26:00 +000014 * Add macros to enable compiling out debug code
15 Geoffrey Young, geoff at modperlcookbook dot org
Michael Clarkc8f4a6e2007-12-07 02:44:24 +000016 * Fix bug with use of capital E in numbers with exponents
17 Mateusz Loskot, mateusz at loskot dot net
18 * Add stddef.h include
Michael Clark14862b12007-12-07 02:50:42 +000019 * Patch allows for json-c compile with -Werror and not fail due to
20 -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
21 Geoffrey Young, geoff at modperlcookbook dot org
Michael Clarkdfaf6702007-10-25 02:26:00 +000022
Michael Clarka850f8e2007-03-13 08:26:26 +0000230.7
24 * Add escaping of backslash to json output
25 * Add escaping of foward slash on tokenizing and output
26 * Changes to internal tokenizer from using recursion to
27 using a depth state structure to allow incremental parsing
28
Michael Clark837240f2007-03-13 08:26:25 +0000290.6
30 * Fix bug in escaping of control characters
31 Johan Björklund, johbjo09 at kth dot se
32 * Remove include "config.h" from headers (should only
33 be included from .c files)
34 Michael Clark <michael@metaparadigm.com>
35
Michael Clarkf6a6e482007-03-13 08:26:23 +0000360.5
37 * Make headers C++ compatible by change *this to *obj
38 * Add ifdef C++ extern "C" to headers
39 * Use simpler definition of min and max in bits.h
40 Larry Lansing, llansing at fuzzynerd dot com
41
42 * Remove automake 1.6 requirement
43 * Move autogen commands into autogen.sh. Update README
44 * Remove error pointer special case for Windows
45 * Change license from LGPL to MIT
46 Michael Clark <michael@metaparadigm.com>
47
Michael Clark0370baa2007-03-13 08:26:22 +0000480.4
49 * Fix additional error case in object parsing
50 * Add back sign reversal in nested object parse as error pointer
51 value is negative, while error value is positive.
52 Michael Clark <michael@metaparadigm.com>
53
Michael Clark7b899b62007-03-13 08:26:21 +0000540.3
55 * fix pointer arithmetic bug for error pointer check in is_error() macro
56 * fix type passed to printbuf_memappend in json_tokener
57 * update autotools bootstrap instructions in README
58 Michael Clark <michael@metaparadigm.com>
59
Michael Clark4504df72007-03-13 08:26:20 +0000600.2
61 * printbuf.c - C. Watford (christopher.watford@gmail.com)
62 Added a Win32/Win64 compliant implementation of vasprintf
63 * debug.c - C. Watford (christopher.watford@gmail.com)
64 Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
65 by a configure script
66 * json_object.c - C. Watford (christopher.watford@gmail.com)
67 Added scope operator to wrap usage of json_object_object_foreach, this
68 needs to be rethought to be more ANSI C friendly
69 * json_object.h - C. Watford (christopher.watford@gmail.com)
70 Added Microsoft C friendly version of json_object_object_foreach
71 * json_tokener.c - C. Watford (christopher.watford@gmail.com)
72 Added a Win32/Win64 compliant implementation of strndup
73 * json_util.c - C. Watford (christopher.watford@gmail.com)
74 Added cast and mask to suffice size_t v. unsigned int conversion
75 correctness
76 * json_tokener.c - sign reversal issue on error info for nested object parse
77 spotted by Johan Björklund (johbjo09 at kth.se)
78 * json_object.c - escape " in json_escape_str
79 * Change to automake and libtool to build shared and static library
80 Michael Clark <michael@metaparadigm.com>
81
820.1
83 * initial release