Skip to content

Releases: mattbishop/sql-jsonpath-js

1.0.0

06 Sep 18:12
Compare
Choose a tag to compare

This is a major release, with API changes.

  • Remove query() method as it offers no significant value.
  • Improve exists() so that if it is passed a single value, it will return a boolean instead of an iterator. It will still consume a value iterator, and in that case return an iterator of booleans.
  • Fixed a spec compliance bug where Array inputs were treated as iterable inputs instead of single values. In lax mode, the array value will be unwrapped as expected, but in strict mode, they will be processed as a single value.

0.2.0

29 Nov 21:19
Compare
Choose a tag to compare
  • Handle [*] correctly by always turning the data into a sequence regardless of mode or data type.
  • Fix comparison handling to correctly unwrap named variables that are arrays.
  • Upgrade dependencies, especially luxon, for robust date processing.