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