~ubuntu-branches/ubuntu/utopic/json-glib/utopic-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Overview of changes for 0.12.0
==============================
 Support surrogate pairs in JSON strings [Eiichi Sato]
 Update the test suite
 Add (optional) coverage reports
 Improve strictness of JsonParser
 Improve error reporting of JsonParser
 Add JsonBuilder, a convenience API for programmatic building
  of JSON trees [Luca Bruno]
 Add methods for JsonParser and JsonGenerator to handle Input|OutputStream
  objects coming from GIO.
 Add JsonReader, a convenience API for cursor-based parsing of
  JSON trees
 Depend on GObject-Introspection  0.9.5

Overview of changes for 0.10.0
==============================
 Fix generation of doubles [Cornelius Hald]
 Add more units to the test suite
 Add JsonNode macros for quick type checking
 Guarantee insertion order when parsing and generating JSON Objects
 Serialize GParamSpecObject properties
 Add serialization and deserialization for GBoxed types
 Add API for serializing GObjects to, and deserializing from, JsonNode
 Build environment fixes
 Documentation fixes
 Generate correct introspection data
 Make JsonSerializable in complete control of deserialization [Tristan Van
  Berkom]

Overview of changes for 0.8.0
=============================
* Remove the in-tree Vala bindings: they are part of Vala, now
* Remove the in-tree Debian packaging
* Fix bug #958: JsonGenerator does not escape special characters
* Fix bug #965: Conditionally compile the test suite
* Display the filename and line inside the error messages when
  loading from a file
* Fix bug #1203: Correctly terminate a string array
* Fix bug #1393: Regression tests fail on OpenBSD
* Do not leak memory on error code paths
* Improve and clean up the build system
* Make JsonNode completely opaque
* Conditionally generate introspection data on build
* Fix bug #1353: Do not overwrite when copying
* Deprecate json_object_add_member()
* Add convenience accessors for JsonObject and JsonArray
* Add convenience iteration functions for JsonObject and JsonArray
* Automatically promote integers to gint64, to compensate for the
  lack of integer size in the JSON specificiation
* Disallow the inclusion of single header files: only json-glib,h
  and json-gobject.h can be included directly
* Documentation fixes
* Clean up and remove code duplication inside the Parser object

Overview of changes for 0.6.0
=============================
* Allow deserialization of strings into enum and flag types
* Add the :indent-char property to JsonGenerator
* Add functions to retrieve copies of the nodes inside Object and Array
* Fix leaks and invalid accesses
* Use the right type for the buffer length parameter in JsonParser
* Provide a default implementation for JsonSerializable
* Provide our own JSON tokenizer (using GScanner) for the JSON-only
  features that would have been lost by using GScanner
* Add a fully automated test suite, using the GTest framework
* Allow 'null' nodes to return a value without warnings
* Add support for parsing Unicode characters escaped using \uXXXX
* Make the deserialization of G_TYPE_STRV properties more robust
* Export the public symbols only
* Provide GTypes for the enumerations
* Avoid a warning when trying to copy an empty JsonNode
* Fix gtk-doc cross-references with GLib and GObject documentation

Overview of changes for 0.4.0
=============================
* Support parsing of negative numbers
* Fix parse error propagation and message
* More parser sanity checks
* GObject deserialization support
* Detect and parse JSON masked as a JavaScript assignment
* Allow using JsonNode with GObject properties and signals
* Add JsonGenerator:root property