Blame NEWS

Packit 4c4d6b
Overview of changes for 1.4
Packit 4c4d6b
==============================
Packit 4c4d6b
• Use Meson as the only build system
Packit 4c4d6b
• #773504 - Avoid extra allocations [Garrett Regier]
Packit 4c4d6b
• #780550 - meson error looking for python3 [Daniele Forghieri]
Packit 4c4d6b
• #769206 - docs: Clarify when NULL might be returned [Matthew Leeds]
Packit 4c4d6b
• #766281 - utils/json_from_string: Don't reset user-provided error
Packit 4c4d6b
            argument [Heinrich Fink]
Packit 4c4d6b
• #758580 - json_reader_is_value returns TRUE for null type but
Packit 4c4d6b
            json_reader_get_value throws an error [Robert Ancell]
Packit 4c4d6b
• #768788 - Incorrect account of jsonPath syntax in doc [Allin Cottrell]
Packit 4c4d6b
• #774688 - json_from_string() could be optimized to avoid copying the
Packit 4c4d6b
            root node [Ole André Vadla Ravnås]
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 1.2
Packit 4c4d6b
==============================
Packit 4c4d6b
• Add simple wrapper functions for JsonGenerator and JsonParser to
Packit 4c4d6b
  write and read a string from and to a JsonNode, respectively
Packit 4c4d6b
• Drop use of deprecated GIO API
Packit 4c4d6b
• Bump the dependency on GLib to 2.46
Packit 4c4d6b
• Do not create `null` nodes for empty strings [#730803]
Packit 4c4d6b
• Documentation fixes [Philip Withnall - #754384]
Packit 4c4d6b
• Avoid crashes in the test suite [Iain Lane - #755977]
Packit 4c4d6b
• Add simple iterator object for JSON objects [Philip Withnall - #755509]
Packit 4c4d6b
• Detect missing commas in arrays
Packit 4c4d6b
• Add support for g_auto* macros
Packit 4c4d6b
• Allow making JSON types optionally immutable, in order to allow
Packit 4c4d6b
  efficient hashing and equality tests [Philip Withnal - #756121]
Packit 4c4d6b
• Improve the build under MSVC [Chun-wei Fan]
Packit 4c4d6b
• Add Meson build system [Thibault Saunier - #773603]
Packit 4c4d6b
• Support Visual Studio 2017 [Chun-wei Fan]
Packit 4c4d6b
• Allow using G_DECLARE_INTERFACE with JsonSerializable
Packit 4c4d6b
• Allow empty strings as JsonObject member names [Dr. David Alan Gilbert - #747279]
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 1.0
Packit 4c4d6b
==============================
Packit 4c4d6b
• Bump the dependency on GLib to 2.38
Packit 4c4d6b
• Use the TAP driver for the test suite
Packit 4c4d6b
• Improve the syntax validation in JsonPath
Packit 4c4d6b
• Validate the JsonParser input to be UTF-8
Packit 4c4d6b
• Add command line tools for validating and formatting JSON
Packit 4c4d6b
• Improve documentation
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.16.0
Packit 4c4d6b
==============================
Packit 4c4d6b
• Fixes for building with VisualStudio. [Chun-wei Fan]
Packit 4c4d6b
• Allow out-of-tree builds. [Colin Walters]
Packit 4c4d6b
• Bump the dependency on GLib to 2.31.
Packit 4c4d6b
• Use the new deprecation system provided by GLib.
Packit 4c4d6b
• Simplify the value handling inside JsonNode.
Packit 4c4d6b
• Use lcov to generate coverage reports for the test suite.
Packit 4c4d6b
• Check expected ABI when building.
Packit 4c4d6b
• Drop dependency on gnome-autogen.sh when building from Git.
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.14.0
Packit 4c4d6b
==============================
Packit 4c4d6b
• Documentation fixes
Packit 4c4d6b
• Bump the dependency on GLib to 2.26
Packit 4c4d6b
• Allow building on Windows using VisualStudio [Chun-wei Fan]
Packit 4c4d6b
• Add JSON ↔ GVariant translation [Eduardo Lima Mitev]
Packit 4c4d6b
• Improve sanity checks when (de)serializing GObject
Packit 4c4d6b
  properties [Tristan Van Berkom]
Packit 4c4d6b
• Add missing introspection annotations [Luca Bruno]
Packit 4c4d6b
• Add JsonReader.list_members()
Packit 4c4d6b
• Allow using JsonReader.read_element() on JSON objects
Packit 4c4d6b
• Remove all G_CONST_RETURN usage after the deprecation
Packit 4c4d6b
• Allow JsonSerializable to override the introspection and
Packit 4c4d6b
  modification of properties
Packit 4c4d6b
• Add i18n support for GError messages
Packit 4c4d6b
• Do not serialize GObject properties that match their default
Packit 4c4d6b
  values.
Packit 4c4d6b
• Make JsonReader perform a stricter validation especially when using
Packit 4c4d6b
  the strongly typed accessors.
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.12.0
Packit 4c4d6b
==============================
Packit 4c4d6b
• Support surrogate pairs in JSON strings [Eiichi Sato]
Packit 4c4d6b
• Update the test suite
Packit 4c4d6b
• Add (optional) coverage reports
Packit 4c4d6b
• Improve strictness of JsonParser
Packit 4c4d6b
• Improve error reporting of JsonParser
Packit 4c4d6b
• Add JsonBuilder, a convenience API for programmatic building
Packit 4c4d6b
  of JSON trees [Luca Bruno]
Packit 4c4d6b
• Add methods for JsonParser and JsonGenerator to handle Input|OutputStream
Packit 4c4d6b
  objects coming from GIO.
Packit 4c4d6b
• Add JsonReader, a convenience API for cursor-based parsing of
Packit 4c4d6b
  JSON trees
Packit 4c4d6b
• Depend on GObject-Introspection ≥ 0.9.5
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.10.0
Packit 4c4d6b
==============================
Packit 4c4d6b
• Fix generation of doubles [Cornelius Hald]
Packit 4c4d6b
• Add more units to the test suite
Packit 4c4d6b
• Add JsonNode macros for quick type checking
Packit 4c4d6b
• Guarantee insertion order when parsing and generating JSON Objects
Packit 4c4d6b
• Serialize GParamSpecObject properties
Packit 4c4d6b
• Add serialization and deserialization for GBoxed types
Packit 4c4d6b
• Add API for serializing GObjects to, and deserializing from, JsonNode
Packit 4c4d6b
• Build environment fixes
Packit 4c4d6b
• Documentation fixes
Packit 4c4d6b
• Generate correct introspection data
Packit 4c4d6b
• Make JsonSerializable in complete control of deserialization [Tristan Van
Packit 4c4d6b
  Berkom]
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.8.0
Packit 4c4d6b
=============================
Packit 4c4d6b
* Remove the in-tree Vala bindings: they are part of Vala, now
Packit 4c4d6b
* Remove the in-tree Debian packaging
Packit 4c4d6b
* Fix bug #958: JsonGenerator does not escape special characters
Packit 4c4d6b
* Fix bug #965: Conditionally compile the test suite
Packit 4c4d6b
* Display the filename and line inside the error messages when
Packit 4c4d6b
  loading from a file
Packit 4c4d6b
* Fix bug #1203: Correctly terminate a string array
Packit 4c4d6b
* Fix bug #1393: Regression tests fail on OpenBSD
Packit 4c4d6b
* Do not leak memory on error code paths
Packit 4c4d6b
* Improve and clean up the build system
Packit 4c4d6b
* Make JsonNode completely opaque
Packit 4c4d6b
* Conditionally generate introspection data on build
Packit 4c4d6b
* Fix bug #1353: Do not overwrite when copying
Packit 4c4d6b
* Deprecate json_object_add_member()
Packit 4c4d6b
* Add convenience accessors for JsonObject and JsonArray
Packit 4c4d6b
* Add convenience iteration functions for JsonObject and JsonArray
Packit 4c4d6b
* Automatically promote integers to gint64, to compensate for the
Packit 4c4d6b
  lack of integer size in the JSON specificiation
Packit 4c4d6b
* Disallow the inclusion of single header files: only json-glib,h
Packit 4c4d6b
  and json-gobject.h can be included directly
Packit 4c4d6b
* Documentation fixes
Packit 4c4d6b
* Clean up and remove code duplication inside the Parser object
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.6.0
Packit 4c4d6b
=============================
Packit 4c4d6b
* Allow deserialization of strings into enum and flag types
Packit 4c4d6b
* Add the :indent-char property to JsonGenerator
Packit 4c4d6b
* Add functions to retrieve copies of the nodes inside Object and Array
Packit 4c4d6b
* Fix leaks and invalid accesses
Packit 4c4d6b
* Use the right type for the buffer length parameter in JsonParser
Packit 4c4d6b
* Provide a default implementation for JsonSerializable
Packit 4c4d6b
* Provide our own JSON tokenizer (using GScanner) for the JSON-only
Packit 4c4d6b
  features that would have been lost by using GScanner
Packit 4c4d6b
* Add a fully automated test suite, using the GTest framework
Packit 4c4d6b
* Allow 'null' nodes to return a value without warnings
Packit 4c4d6b
* Add support for parsing Unicode characters escaped using \uXXXX
Packit 4c4d6b
* Make the deserialization of G_TYPE_STRV properties more robust
Packit 4c4d6b
* Export the public symbols only
Packit 4c4d6b
* Provide GTypes for the enumerations
Packit 4c4d6b
* Avoid a warning when trying to copy an empty JsonNode
Packit 4c4d6b
* Fix gtk-doc cross-references with GLib and GObject documentation
Packit 4c4d6b
Packit 4c4d6b
Overview of changes for 0.4.0
Packit 4c4d6b
=============================
Packit 4c4d6b
* Support parsing of negative numbers
Packit 4c4d6b
* Fix parse error propagation and message
Packit 4c4d6b
* More parser sanity checks
Packit 4c4d6b
* GObject deserialization support
Packit 4c4d6b
* Detect and parse JSON masked as a JavaScript assignment
Packit 4c4d6b
* Allow using JsonNode with GObject properties and signals
Packit 4c4d6b
* Add JsonGenerator:root property