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

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