Releases: bhmj/jsonslice
Releases · bhmj/jsonslice
v.1.1.3: fix "spaces after object" bug
v1.1.2: unicode support + bugfixes
- added Unicode support (\u and \U)
- added hex support (\x)
- indexing of elements in expression fixed (
@[5]
) - escaped backslash bug fixed (
["\\"]
)
v1.1.1: updated xpression
- xpression package updated to v0.9.0
v1.1.0: expressions improved
- use xpression project for expression evaluation
- new operators introduced:
!
,%
,**
,<<
,>>
,~
,|
,&
,^
- minor optimizations
v1.0.6: Comparison improved
- abstract and strict comparison (
==
and===
behave like in JavaScript) - cross-typed string/number/boolean comparison
- strings are now comparable
`$..many.keys` bugfix
deepscan issue fix:
$..many.keys
used to trigger on many
without recursing deeper on keys
.
$* bugfix
Escaped backslash bugfix
"\\"
at the end of string
Nested aggregation
- nested aggregation (
$[:].['a','b']
) now works as expected ([ [...], [...] ]
)
"not equal" for regexp
- "not equal" operator added for regexp:
!~
or!=~