Releases: jg-rp/python-jsonpath
Releases · jg-rp/python-jsonpath
Version 1.2.2
Version 1.2.1
Fixes
- Fixed the string representation regex literals in filter expressions. See issue #70.
Version 1.2.0
Fixes
- Fixed handling of JSONPath literals in filter expressions. We now raise a
JSONPathSyntaxError
if a filter expression literal is not part of a comparison, membership or function expression. See jsonpath-compliance-test-suite#81. - Fixed parsing of number literals including an exponent. Upper case 'e's are now allowed.
- Fixed handling of trailing commas in bracketed selection lists. We now raise a
JSONPathSyntaxError
in such cases.
Compliance
- Skipped tests for invalid escape sequences. The JSONPath spec is more strict than Python's JSON decoder when it comes to parsing
\u
escape sequences in string literals. We are adopting a policy of least surprise. The assertion is that most people will expect the JSONPath parser to behave the same as Python's JSON parser. See jsonpath-compliance-test-suite #87. - Skipped tests for invalid integer and float literals. Same as above. We are deliberately choosing to match Python's int and float parsing behavior. See jsonpath-compliance-test-suite #89.
- Skipped tests for incorrect casing
true
,false
andnull
literals.
Features
- Allow JSONPath filter expression membership operators (
contains
andin
) to operate on object/mapping data as well as arrays/sequences. See #55. - Added a
select()
method to the JSONPath query iterator interface, generating a projection of each JSONPath match by selecting a subset of its values. - Added the
query()
method to theJSONPath
class. Get a query iterator from an already compiled path. - Added the
addne
andaddap
operations to JSONPatch.addne
(add if not exists) is like the standardadd
operation, but only adds object keys/values if the key does not exist.addap
(add or append) is like the standardadd
operation, but assumes an index of-
if the target index can not be resolved.
Version 1.1.1
Fixes
- Fixed evaluation of JSONPath singular queries when they appear in a logical expression and without a comparison operator. Previously we were evaluating logical expressions with the value held by the single element node list, now we treat such filter queries as existence tests. See #57.
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
Version 1.0.0
RFC 9535 (JSONPath: Query Expressions for JSON) is now out, replacing the draft IETF JSONPath base.
Breaking Changes
- The undocumented
keys
function extension is no longer enabled by default. A new, well-typedkeys
function is planned for the future.
Fixes
- The lexer now sorts environment-controlled tokens by their length in descending order. This allows one custom token to be a prefix of another.
Features
- Added the non-standard "fake root" identifier, which defaults to
^
and can be customized with thefake_root_token
attribute on aJSONPathEnvironment
subclass. Using the fake root identifier is equivalent to the standard root identifier ($
), but wraps the target JSON value in an array, so the root value can be conditionally selected using a filter. - Non-standard environment-controlled tokens can now be disabled by setting them to the empty string.
Version 0.10.3
Breaking Changes
- Changed the exception raised when attempting to compare a non-singular filter query from
JSONPathSyntaxError
toJSONPathTypeError
.
Fixes
- Fixed handling of relative and root queries when used as arguments to filter functions. Previously, when those queries resulted in an empty node list, we were converting them to an empty regular list before passing it to functions that accept ValueType arguments. Now, in such cases, we convert empty node lists to the special result Nothing, which is required by the spec.
- Fixed well-typedness checks on JSONPath logical expressions (those that involve
&&
or||
) and non-singular filter queries. Previously we were erroneously applying the checks for comparison expressions to logical expressions too. Now non-singular queries in logical expressions act as an existence test. See #45.
Version 0.10.2
Fixes
- Fixed precedence of the logical not operator in JSONPath filter expressions. Previously, logical or and logical and had priority over not. See #41.
Version 0.10.1
Hot fix
- Fixed priority of JSONPath lexer rules. Previously, standard short tokens (like
*
and?
) had a higher priority than environment controlled tokens (likeJSONPathEnvironment.keys_selector_token
), making it impossible to incorporate short token characters into longer environment-controlled tokens.
Version 0.10.0
Breaking Changes
- We now enforce JSONPath filter expression "well-typedness" by default. That is, filter expressions are checked at compile time according to the IETF JSONPath Draft function extension type system and rules regarding non-singular query usage. If an expression is deemed to not be well-typed, a
JSONPathTypeError
is raised. This can be disabled in Python JSONPath by setting thewell_typed
argument toJSONPathEnvironment
toFalse
, or using--no-type-checks
on the command line. See #33. - The JSONPath lexer and parser have been refactored to accommodate #30. As a result, the tokens generated by the lexer and the ATS built by the parser have changed significantly. In the unlikely event that anyone is customizing the lexer or parser through subclassing, please open an issue and I'll provide more details.
- Changed the normalized representation of JSONPath string literals to use double quotes instead of single quotes.
- Changed the normalized representation of JSONPath filter expressions to not include parentheses unless the expression includes one or more logical operators.
- The built-in implementation of the standard
length()
filter function is now a class and is renamed tojsonpath.function_extensions.Length
. - The built-in implementation of the standard
value()
filter function is now a class and is renamed tojsonpath.function_extensions.Value
.
Fixes
- We no longer silently ignore invalid escape sequences in JSONPath string literals. For example,
$['\"']
used to be OK, it now raises aJSONPathSyntaxError
. See #31. - Fixed parsing of JSONPath integer literals that use scientific notation. Previously we raised a
JSONPathSyntaxError
for literals such as1e2
. - Fixed parsing of JSONPath comparison and logical expressions as filter function arguments. Previously we raised a
JSONPathSyntaxError
if a comparison or logical expression appeared as a filter function argument. Note that none of the built-in, standard filter functions accept arguments ofLogicalType
. - Fixed parsing of nested JSONPath filter functions, where a function is used as an argument to another.
- Fixed JSONPath bracketed segments. We now handle an arbitrary number of filter selectors alongside name, index, slice and wildcard selectors, separated by commas. See #30.