Skip to content

Version 1.1.0

Compare
Choose a tag to compare
@jg-rp jg-rp released this 07 Mar 15:44
· 70 commits to main since this release

Fixes

  • Fixed logical operator precedence in JSONPath filter expressions. Previously, logical or (||) and logical and (&&) had equal precedence. Now && binds more tightly than ||, as per RFC 9535.
  • Fixed JSONPath bracketed selector list evaluation order. Previously we were iterating nodes for every list item, now we exhaust all matches for the first item before moving on to the next item.

Features

  • Added the "query API", a fluent, chainable interface for manipulating JSONPathMatch iterators (docs, source).