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.9 kB

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