Overview
Version 2 is a major refactor, and introduces breaking changes to
`core`. A new streaming event iterator interface provides the primary
parsing functionality. The abstract Parser interface has been moved to a new
`factory` package, and is implemented as a layer on top of `core`. The
`jsonorg` and `jsr374` interfaces are mostly backwards compatible, with
the primary difference that they now extend a class from `factory` rather
than `core`.
New Features
* Add support for Address Bar Query String Friendly (AQF) syntax [view commit](http://github.com/jsonurl/jsonurl-java/commit/f5b78c92451c0519bce47ebf5a6ef12737840426)
* Add support for parsing implied arrays and objects [view commit](http://github.com/jsonurl/jsonurl-java/commit/bc8b3ef3f3687742a6781e4d20c324083d918521)
* Add support for implied objects with missing values [view commit](http://github.com/jsonurl/jsonurl-java/commit/b6404d15fa841d241df2ffac7f7349ef7561156d)
* Add support for implied-string-literals option [view commit](http://github.com/jsonurl/jsonurl-java/commit/9ee992a70a37a0fd9961b2552e40a538aaa45c49)
* Add support for skip-nulls option [view commit](http://github.com/jsonurl/jsonurl-java/commit/968cb2d4b34f63fe03f2f5bb9e8945549d43811a)
* Add support for coercing null to empty string on input/output [view commit](http://github.com/jsonurl/jsonurl-java/commit/6066dc0ceb09d5d8336cc9ea6c4a8cd3a7e31d2b)
* Add support for user-supplied MathContext values [view commit](http://github.com/jsonurl/jsonurl-java/commit/20c104cc89a908d9321bef0469337f029fa3f9d8)
Bug Fixes
* Remove JsonUrlStringBuilder.add(char) method and replace with JsonUrlStringBuilder.addCodePoint(char) [view commit](http://github.com/jsonurl/jsonurl-java/commit/193b621bb6871cb2703ace7dfdfaed8efba480f5)
* Fix bug when encoding quoted colon [view commit](http://github.com/jsonurl/jsonurl-java/commit/174193e0532479efc19b8dbec259af2e923dd6f4)
* Fix bug in validation of empty composite values. [view commit](http://github.com/jsonurl/jsonurl-java/commit/7735274ba7398bf86dda860568e85895ed2d72db)
Dependency Update
* Upgrade org.json:json to 20210307 [view commit](http://github.com/jsonurl/jsonurl-java/commit/cd18de12a8bd8a0b818116c1851cd35b9f16fc54)