You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 4.4 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. 0.9
  2. * Rename min and max so we can never clash with C or C++ std library
  3. Ian Atha, thatha at yahoo dash inc dot com
  4. * Fix any noticeable spelling or grammar errors.
  5. * Make sure every va_start has a va_end.
  6. * Check all pointers for validity.
  7. Erik Hovland, erik at hovland dot org
  8. * Fix json_object_get_boolean to return false for empty string
  9. Spotted by Vitaly Kruglikov, Vitaly dot Kruglikov at palm dot com
  10. * optimizations to json_tokener_parse_ex(), printbuf_memappend()
  11. Brent Miller, bdmiller at yahoo dash inc dot com
  12. * Disable REFCOUNT_DEBUG by default in json_object.c
  13. * Don't use this as a variable, so we can compile with a C++ compiler
  14. * Add casts from void* to type of assignment when using malloc
  15. * Add #ifdef __cplusplus guards to all of the headers
  16. * Add typedefs for json_object, json_tokener, array_list, printbuf, lh_table
  17. Michael Clark, <michael@metaparadigm.com>
  18. * Null pointer dereference fix. Fix json_object_get_boolean strlen test
  19. to not return TRUE for zero length string. Remove redundant includes.
  20. Erik Hovland, erik at hovland dot org
  21. * Fixed warning reported by adding -Wstrict-prototypes
  22. -Wold-style-definition to the compilatin flags.
  23. Dotan Barak, dotanba at gmail dot com
  24. * Add const correctness to public interfaces
  25. Gerard Krol, g dot c dot krol at student dot tudelft dot nl
  26. 0.8
  27. * Add va_end for every va_start
  28. Dotan Barak, dotanba at gmail dot com
  29. * Add macros to enable compiling out debug code
  30. Geoffrey Young, geoff at modperlcookbook dot org
  31. * Fix bug with use of capital E in numbers with exponents
  32. Mateusz Loskot, mateusz at loskot dot net
  33. * Add stddef.h include
  34. * Patch allows for json-c compile with -Werror and not fail due to
  35. -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
  36. Geoffrey Young, geoff at modperlcookbook dot org
  37. 0.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. 0.6
  43. * Fix bug in escaping of control characters
  44. Johan Bjrklund, johbjo09 at kth dot se
  45. * Remove include "config.h" from headers (should only
  46. be included from .c files)
  47. Michael Clark <michael@metaparadigm.com>
  48. 0.5
  49. * Make headers C++ compatible by change *this to *obj
  50. * Add ifdef C++ extern "C" to headers
  51. * Use simpler definition of min and max in bits.h
  52. Larry Lansing, llansing at fuzzynerd dot com
  53. * Remove automake 1.6 requirement
  54. * Move autogen commands into autogen.sh. Update README
  55. * Remove error pointer special case for Windows
  56. * Change license from LGPL to MIT
  57. Michael Clark <michael@metaparadigm.com>
  58. 0.4
  59. * Fix additional error case in object parsing
  60. * Add back sign reversal in nested object parse as error pointer
  61. value is negative, while error value is positive.
  62. Michael Clark <michael@metaparadigm.com>
  63. 0.3
  64. * fix pointer arithmetic bug for error pointer check in is_error() macro
  65. * fix type passed to printbuf_memappend in json_tokener
  66. * update autotools bootstrap instructions in README
  67. Michael Clark <michael@metaparadigm.com>
  68. 0.2
  69. * printbuf.c - C. Watford (christopher.watford@gmail.com)
  70. Added a Win32/Win64 compliant implementation of vasprintf
  71. * debug.c - C. Watford (christopher.watford@gmail.com)
  72. Removed usage of vsyslog on Win32/Win64 systems, needs to be handled
  73. by a configure script
  74. * json_object.c - C. Watford (christopher.watford@gmail.com)
  75. Added scope operator to wrap usage of json_object_object_foreach, this
  76. needs to be rethought to be more ANSI C friendly
  77. * json_object.h - C. Watford (christopher.watford@gmail.com)
  78. Added Microsoft C friendly version of json_object_object_foreach
  79. * json_tokener.c - C. Watford (christopher.watford@gmail.com)
  80. Added a Win32/Win64 compliant implementation of strndup
  81. * json_util.c - C. Watford (christopher.watford@gmail.com)
  82. Added cast and mask to suffice size_t v. unsigned int conversion
  83. correctness
  84. * json_tokener.c - sign reversal issue on error info for nested object parse
  85. spotted by Johan Bjrklund (johbjo09 at kth.se)
  86. * json_object.c - escape " in json_escape_str
  87. * Change to automake and libtool to build shared and static library
  88. Michael Clark <michael@metaparadigm.com>
  89. 0.1
  90. * initial release