You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Python JSONPath Change Log
2
2
3
+
## Version 0.11.0 (unreleased)
4
+
5
+
**Fixes**
6
+
7
+
- The lexer now sorts environment-controlled tokens by their length in descending order. This allows one custom token to be a prefix of another.
8
+
9
+
**Features**
10
+
11
+
- Added the non-standard "fake root" identifier, which defaults to `^` and can be customized with the `fake_root_token` attribute on a `JSONPathEnvironment` 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.
12
+
- Non-standard environment-controlled tokens can now be disabled by setting them to the empty string.
0 commit comments