Michael Clark | 68cafad | 2009-01-06 22:56:57 +0000 | [diff] [blame] | 1 | 0.9 |
Michael Clark | 95f55a7 | 2009-04-27 08:16:58 +0000 | [diff] [blame^] | 2 | * optimizations to json_tokener_parse_ex(), printbuf_memappend() |
| 3 | Brent Miller, bdmiller at yahoo dash inc dot com |
Michael Clark | 266a3fd | 2009-02-25 01:55:31 +0000 | [diff] [blame] | 4 | * Don't use this as a variable, so we can compile with a C++ compiler |
Michael Clark | aaec1ef | 2009-02-25 02:31:32 +0000 | [diff] [blame] | 5 | * Add casts from void* to type of assignment when using malloc |
| 6 | * Add #ifdef __cplusplus guards to all of the headers |
| 7 | * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table |
Michael Clark | 266a3fd | 2009-02-25 01:55:31 +0000 | [diff] [blame] | 8 | Michael Clark, <michael@metaparadigm.com> |
Michael Clark | 22dee7c | 2009-02-25 01:51:40 +0000 | [diff] [blame] | 9 | * Null pointer dereference fix. Fix json_object_get_boolean strlen test |
| 10 | to not return TRUE for zero length string. Remove redundant includes. |
| 11 | Erik Hovland, erik at hovland dot org |
Michael Clark | e8de078 | 2009-02-25 01:45:00 +0000 | [diff] [blame] | 12 | * Fixed warning reported by adding -Wstrict-prototypes |
| 13 | -Wold-style-definition to the compilatin flags. |
| 14 | Dotan Barak, dotanba at gmail dot com |
Michael Clark | 68cafad | 2009-01-06 22:56:57 +0000 | [diff] [blame] | 15 | * Add const correctness to public interfaces |
| 16 | Gerard Krol, g dot c dot krol at student dot tudelft dot nl |
| 17 | |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 18 | 0.8 |
Michael Clark | 8cdac64 | 2009-01-05 03:57:59 +0000 | [diff] [blame] | 19 | * Add va_end for every va_start |
| 20 | Dotan Barak, dotanba at gmail dot com |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 21 | * Add macros to enable compiling out debug code |
| 22 | Geoffrey Young, geoff at modperlcookbook dot org |
Michael Clark | c8f4a6e | 2007-12-07 02:44:24 +0000 | [diff] [blame] | 23 | * Fix bug with use of capital E in numbers with exponents |
| 24 | Mateusz Loskot, mateusz at loskot dot net |
| 25 | * Add stddef.h include |
Michael Clark | 14862b1 | 2007-12-07 02:50:42 +0000 | [diff] [blame] | 26 | * Patch allows for json-c compile with -Werror and not fail due to |
| 27 | -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations |
| 28 | Geoffrey Young, geoff at modperlcookbook dot org |
Michael Clark | dfaf670 | 2007-10-25 02:26:00 +0000 | [diff] [blame] | 29 | |
Michael Clark | a850f8e | 2007-03-13 08:26:26 +0000 | [diff] [blame] | 30 | 0.7 |
| 31 | * Add escaping of backslash to json output |
| 32 | * Add escaping of foward slash on tokenizing and output |
| 33 | * Changes to internal tokenizer from using recursion to |
| 34 | using a depth state structure to allow incremental parsing |
| 35 | |
Michael Clark | 837240f | 2007-03-13 08:26:25 +0000 | [diff] [blame] | 36 | 0.6 |
| 37 | * Fix bug in escaping of control characters |
| 38 | Johan Björklund, johbjo09 at kth dot se |
| 39 | * Remove include "config.h" from headers (should only |
| 40 | be included from .c files) |
| 41 | Michael Clark <michael@metaparadigm.com> |
| 42 | |
Michael Clark | f6a6e48 | 2007-03-13 08:26:23 +0000 | [diff] [blame] | 43 | 0.5 |
| 44 | * Make headers C++ compatible by change *this to *obj |
| 45 | * Add ifdef C++ extern "C" to headers |
| 46 | * Use simpler definition of min and max in bits.h |
| 47 | Larry Lansing, llansing at fuzzynerd dot com |
| 48 | |
| 49 | * Remove automake 1.6 requirement |
| 50 | * Move autogen commands into autogen.sh. Update README |
| 51 | * Remove error pointer special case for Windows |
| 52 | * Change license from LGPL to MIT |
| 53 | Michael Clark <michael@metaparadigm.com> |
| 54 | |
Michael Clark | 0370baa | 2007-03-13 08:26:22 +0000 | [diff] [blame] | 55 | 0.4 |
| 56 | * Fix additional error case in object parsing |
| 57 | * Add back sign reversal in nested object parse as error pointer |
| 58 | value is negative, while error value is positive. |
| 59 | Michael Clark <michael@metaparadigm.com> |
| 60 | |
Michael Clark | 7b899b6 | 2007-03-13 08:26:21 +0000 | [diff] [blame] | 61 | 0.3 |
| 62 | * fix pointer arithmetic bug for error pointer check in is_error() macro |
| 63 | * fix type passed to printbuf_memappend in json_tokener |
| 64 | * update autotools bootstrap instructions in README |
| 65 | Michael Clark <michael@metaparadigm.com> |
| 66 | |
Michael Clark | 4504df7 | 2007-03-13 08:26:20 +0000 | [diff] [blame] | 67 | 0.2 |
| 68 | * printbuf.c - C. Watford (christopher.watford@gmail.com) |
| 69 | Added a Win32/Win64 compliant implementation of vasprintf |
| 70 | * debug.c - C. Watford (christopher.watford@gmail.com) |
| 71 | Removed usage of vsyslog on Win32/Win64 systems, needs to be handled |
| 72 | by a configure script |
| 73 | * json_object.c - C. Watford (christopher.watford@gmail.com) |
| 74 | Added scope operator to wrap usage of json_object_object_foreach, this |
| 75 | needs to be rethought to be more ANSI C friendly |
| 76 | * json_object.h - C. Watford (christopher.watford@gmail.com) |
| 77 | Added Microsoft C friendly version of json_object_object_foreach |
| 78 | * json_tokener.c - C. Watford (christopher.watford@gmail.com) |
| 79 | Added a Win32/Win64 compliant implementation of strndup |
| 80 | * json_util.c - C. Watford (christopher.watford@gmail.com) |
| 81 | Added cast and mask to suffice size_t v. unsigned int conversion |
| 82 | correctness |
| 83 | * json_tokener.c - sign reversal issue on error info for nested object parse |
| 84 | spotted by Johan Björklund (johbjo09 at kth.se) |
| 85 | * json_object.c - escape " in json_escape_str |
| 86 | * Change to automake and libtool to build shared and static library |
| 87 | Michael Clark <michael@metaparadigm.com> |
| 88 | |
| 89 | 0.1 |
| 90 | * initial release |