|
|
|
Java DSL for reading and testing JSON documents.
|
|
|
|
|
|
|
|
------------------------------------------
|
|
|
|
0.5.6 2012-02-09
|
|
|
|
------------------------------------------
|
|
|
|
- Replaced regexp with custom tokenizer
|
|
|
|
- Removed static declaration of JSON_PARSER
|
|
|
|
- Introduced SPI for JsonProvider
|
|
|
|
- Elaborating new concept with JsonModel
|
|
|
|
|
|
|
|
------------------------------------------
|
|
|
|
0.5.5
|
|
|
|
------------------------------------------
|
|
|
|
- Improved JSON bracket notation. $['store']['book'][*]['author name']
|
|
|
|
properties can also contain '.' eg $['store']['book'][*]['author.name']
|
|
|
|
|
|
|
|
------------------------------------------
|
|
|
|
0.5.4
|
|
|
|
------------------------------------------
|
|
|
|
- Replaced com.googlecode.json-simple with net.minidev.json-smart
|
|
|
|
- Introduced different parse modes, JsonPath.SLACK_MODE and JsonPath.STRICT_MODE (the slack mode lets you use single quotes or even no quotes at all)
|
|
|
|
|
|
|
|
------------------------------------------
|
|
|
|
0.5.3
|
|
|
|
------------------------------------------
|
|
|
|
- Major refactoring
|
|
|
|
- JsonPath does not always produce a List as response
|
|
|
|
|
|
|
|
------------------------------------------
|
|
|
|
0.5.2
|
|
|
|
------------------------------------------
|
|
|
|
- Fixed issue that path was never considered definite if containing a ':'
|
|
|
|
- Bracket notation is now first class citizen $.foo.bar == $.['foo'].['bar']
|
|
|
|
- Added JsonAsserter.assertNotDefined(String path) to allow checks for negative existence of a path
|