Skip to content

Releases: doberkofler/PLSQL-JSON

0.7.1

11 Mar 12:38
Compare
Choose a tag to compare
  • Fixed an alignment problem in the pretty output of json.

0.5.0

09 Mar 07:51
Compare
Choose a tag to compare

Changed

  • No longer install debug module by default.
  • Removed package json_cost and json_clob.
  • Removed the obsolete performance tests.

Fixed

  • Required naming changes to run on current Oracle versions that now also have json support.
  • Fixed an error when converting \f and \r.

0.7.0

09 Mar 18:36
Compare
Choose a tag to compare
  • Added output configuration option newline_char for the end of line style and indentation_char for the indentation style.

0.6.0

09 Mar 17:36
Compare
Choose a tag to compare
  • Added api get_default_options, get_options and set_options to json_utilspackage to configure (Pretty, AsciiOutput and EscapeSolitus) the output.
  • Added support for formatted (pretty) json output with the option Pretty.
  • Fixed another error when converting \f and \r.

v0.4.1

22 Dec 08:43
Compare
Choose a tag to compare

v0.4.1 - December 22, 2016

  • 0.4.1 (Dieter Oberkofler)
  • Improved the performance when working with CLOB values by 10 to 100 times depending on the actual CLOB length. (Dieter Oberkofler)

v0.4.0

09 Dec 08:45
Compare
Choose a tag to compare
  • Added support for CLOB properties. (Dieter Oberkofler)
  • Added support to update properties. (Dieter Oberkofler)
  • Added a new module json_sql that allows to dynamically generate a json representation of the rows in a select with bind variables. (Dieter Oberkofler)

v0.3.0 - December 15, 2014

15 Dec 07:33
Compare
Choose a tag to compare

v0.3.0 - December 15, 2014

  • 0.3.0 (Dieter Oberkofler)
  • Improved the performance of object_to_clob and array_to_clob by up to 400%. (Dieter Oberkofler)
  • Added a few special values tests. (Dieter Oberkofler)

Added API to directly parse a json string containg an array

19 Jun 12:58
Compare
Choose a tag to compare
  • 0.2.0 (Dieter Oberkofler)
  • Now using 3 individual parse methods in json_parser allowing to parse an object, an array or any of the two. (Dieter Oberkofler)
  • Added a new constructor to json_array allowing to parse a JSON string representing an array. Proposed by matthias-oe. (Dieter Oberkofler)
  • Added a new constructor to json_value allowing to parse a JSON string representing an object or an array. (Dieter Oberkofler)
  • Added unit tests for the new functionality. (Dieter Oberkofler)