Browse Source

Updated change log with release info.

pull/61/head json-path-1.2.0
Kalle Stenflo 10 years ago
parent
commit
78878bdaa9
  1. 2
      build.gradle
  2. 5
      changelog.md

2
build.gradle

@ -20,7 +20,7 @@ ext {
test: ['org.slf4j:slf4j-simple:1.7.7', 'org.assertj:assertj-core:1.6.1', 'commons-io:commons-io:2.4', 'org.hamcrest:hamcrest-core:1.3', 'org.hamcrest:hamcrest-library:1.3', 'junit:junit:4.10']
]
snapshotVersion = true
snapshotVersion = false
}
allprojects {

5
changelog.md

@ -1,5 +1,8 @@
In The Pipe
===========
1.2.0 (2014-11-11)
==================
* Added EvaluationListener interface that allows abortion of evaluation if criteria is fulfilled.
this makes it possible to limit the number of results to fetch when a document is scanned. Also
added utility method to limit results `JsonPath.parse(json).limit(1).read("$..title", List.class);`
@ -19,7 +22,7 @@ In The Pipe
* Negate exist checks in inline filters (not defined or null)
`parse(JSON_DOCUMENT).read("$.store.book[?(!@.isbn)]")`
* Improved object mapping with Jackson and Gson (now handles generic types)
* JacksonTreeJsonProvider supporting path operations on `com.fasterxml.jackson.databind.JsonNode`
* JacksonJsonNodeJsonProvider supporting path operations on `com.fasterxml.jackson.databind.JsonNode`
* Exceptions thrown by JsonPath.compile are now wrapped in an InvalidPathException
* Fixed Deep scanning issue (#60)

Loading…
Cancel
Save