|
1 |
| -v0.4.1 - December 22, 2016 |
2 |
| -* 0.4.1 (Dieter Oberkofler) |
3 |
| -* Improved the performance when working with CLOB values by 10 to 100 times depending on the actual CLOB length. (Dieter Oberkofler) |
4 |
| - |
5 |
| -v0.4.0 - December 8, 2016 |
6 |
| -* 0.4.0 (Dieter Oberkofler) |
7 |
| -* Added support for CLOB properties. (Dieter Oberkofler) |
8 |
| -* Added support to update properties. (Dieter Oberkofler) |
9 |
| -* 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) |
10 |
| - |
11 |
| -v0.3.1 - March 16, 2016 |
12 |
| -* 0.3.1 (Dieter Oberkofler) |
13 |
| -* Fixed a problem when escaping a string that ends with CHR(10). (Dieter Oberkofler) |
14 |
| - |
15 |
| -v0.3.0 - December 15, 2014 |
16 |
| -* 0.3.0 (Dieter Oberkofler) |
17 |
| -* Improved the performance of object_to_clob and array_to_clob by up to 400%. (Dieter Oberkofler) |
18 |
| -* Added a few special values tests. (Dieter Oberkofler) |
19 |
| - |
20 |
| -v0.2.0 - June 19, 2014 |
21 |
| -* 0.2.0 (Dieter Oberkofler) |
22 |
| -* Now using 3 individual parse methods in json_parser allowing to parse an object, an array or any of the two. (Dieter Oberkofler) |
23 |
| -* Added a new constructor to json_array allowing to parse a JSON string representing an array. Proposed by matthias-oe. (Dieter Oberkofler) |
24 |
| -* Added a new constructor to json_value allowing to parse a JSON string representing an object or an array. (Dieter Oberkofler) |
25 |
| -* Added unit tests for the new functionality. (Dieter Oberkofler) |
26 |
| - |
27 |
| -v0.1.0 - April 26, 2014 |
28 |
| -* 0.1.0 (Dieter Oberkofler) |
29 |
| -* Added support for DATE types. |
30 |
| -* Added support for JSONP. |
31 |
| - |
32 |
| -v0.0.1 - September 24, 2013 |
33 |
| -* 0.0.1 (Dieter Oberkofler) |
34 |
| -* Initial release of plsql_json. |
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) |
| 6 | +and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | + |
| 9 | +## [?.?.?] - ????-??-?? |
| 10 | + |
| 11 | +### Added |
| 12 | +### Changed |
| 13 | +### Fixed |
| 14 | + |
| 15 | + |
| 16 | +## [0.5.0] - 2020-03-08 |
| 17 | + |
| 18 | +### Changed |
| 19 | +- No longer install debug module by default. |
| 20 | +- Removed package json_cost and json_clob. |
| 21 | + |
| 22 | + |
| 23 | +### Fixed |
| 24 | +- Required naming changes to run on current Oracle versions that now also have json support. |
| 25 | + |
| 26 | + |
| 27 | +## [0.4.1] - 2016-12-22 |
| 28 | + |
| 29 | +### Changed |
| 30 | +- Improved the performance when working with CLOB values by 10 to 100 times depending on the actual CLOB length. (Dieter Oberkofler) |
| 31 | + |
| 32 | + |
| 33 | +## [0.4.0] - 2016-12-8 |
| 34 | + |
| 35 | +### Added |
| 36 | +- Added support for CLOB properties. (Dieter Oberkofler) |
| 37 | +- Added support to update properties. (Dieter Oberkofler) |
| 38 | +- 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) |
| 39 | + |
| 40 | + |
| 41 | +## [0.3.1] - 2016-03-16 |
| 42 | + |
| 43 | +### Fixed |
| 44 | +- Fixed a problem when escaping a string that ends with CHR(10). (Dieter Oberkofler) |
| 45 | + |
| 46 | + |
| 47 | +## [0.3.0] - 2014-12-15 |
| 48 | + |
| 49 | +### Added |
| 50 | +- Improved the performance of object_to_clob and array_to_clob by up to 400%. (Dieter Oberkofler) |
| 51 | +- Added a few special values tests. (Dieter Oberkofler) |
| 52 | + |
| 53 | + |
| 54 | +## [0.2.0] - 2014-06-19 |
| 55 | + |
| 56 | +### Added |
| 57 | +- Now using 3 individual parse methods in json_parser allowing to parse an object, an array or any of the two. (Dieter Oberkofler) |
| 58 | +- Added a new constructor to json_array allowing to parse a JSON string representing an array. Proposed by matthias-oe. (Dieter Oberkofler) |
| 59 | +- Added a new constructor to json_value allowing to parse a JSON string representing an object or an array. (Dieter Oberkofler) |
| 60 | +- Added unit tests for the new functionality. (Dieter Oberkofler) |
| 61 | + |
| 62 | + |
| 63 | +## [0.1.0] - 2014-04-26 |
| 64 | + |
| 65 | +### Added |
| 66 | +- Added support for DATE types. |
| 67 | +- Added support for JSONP. |
| 68 | + |
| 69 | + |
| 70 | +## [0.0.1] - 2013-09-24 |
| 71 | + |
| 72 | +### Added |
| 73 | +- Initial release of plsql_json. |
0 commit comments