Skip to content

Commit 254b8e9

Browse files
authored
v0.9.12 - README
1 parent e3e227e commit 254b8e9

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Notable enhancements include:
1111
- Property names containing `;` and `]` are no longer inaccessible, no more gotchas
1212
- New path output options for: dot style paths, single or double quoted brackets, and even RFC6901 JSON Pointer output
1313
- Unions may now contain any and all valid JSONPath expressions
14+
- Octal indices are disallowed, however octals (both old and new syntax) can be used in script and filter expressions along with any other valid JS expressions EXCEPT function invocations (apart from test/match/exec)
1415

1516
## JSONPath Syntax
1617

@@ -306,11 +307,18 @@ Hat tip to [cburgmer](https://github.com/cburgmer) for providing the bones of th
306307
| "==="
307308
| "!=="
308309
| "=~"
309-
| "<="
310-
| ">="
311310
| "<"
312311
| ">"
313-
312+
| "<="
313+
| ">="
314+
| "<<"
315+
| ">>"
316+
| ">>>"
317+
| "&"
318+
| "^"
319+
| "|"
320+
| "instanceof"
321+
314322
FilterValue
315323
::= "@" ScalarOperator*
316324
| "$" ScalarOperator*

0 commit comments

Comments
 (0)