Skip to content

Releases: Kiyoshika/json-parser-java

v0.3.2

25 Feb 23:56
Compare
Choose a tag to compare
v0.3.2 Pre-release
Pre-release

Bug Fixes

  • Fix newline characters breaking JSON array parser

v0.3.1

25 Feb 23:30
Compare
Choose a tag to compare
v0.3.1 Pre-release
Pre-release

New Features:

  • Support for boolean values

v0.3

24 Feb 23:27
e223e67
Compare
Choose a tag to compare
v0.3 Pre-release
Pre-release

Bug Fixes

  • Fix bug that allowed null keys
  • Fix bug with duplicate keys not throwing exception in some cases
  • Fix off-by-one error when parsing arrays which would crash in certain cases

New Features

  • Parse JSON arrays directly with JsonArray.fromString()
  • Write JSON objects/arrays to string
  • Added more getter/setter utility methods on JsonItem/JsonArray

Code

  • Improved architecture a bit, lots of cleanup; removed some of the "hacky" solutions

v0.2

20 Feb 23:30
1f60127
Compare
Choose a tag to compare
v0.2 Pre-release
Pre-release

New Features:

  • Support for null values
  • Support for mixed-type arrays

Bug Fixes:

  • Fixed bug where spaces were not registered in keys

Initial release (v0.1)

18 Feb 03:16
Compare
Choose a tag to compare
Pre-release

The first basic release which supports:

  • Parsing String, int, double and Object (nested JSON) types

In future releases:

  • Support for null, Array and class reflection (parsing directly into user-defined objects)
  • Support for escaped quotes in keys/values