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