Version 1.1.0
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