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 5.5 kB

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