Releases: turkraft/springfilter
Releases · turkraft/springfilter
Version 3.1.7
Version 3.1.6
- Support for multiple operator tokens:
~
is now equivalent tolike
~~
is now equivalent toilike
:
is now equivalent to=
!
is now equivalent to<>
>:
is now equivalent to>=
<:
is now equivalent to<=
- Operator tokens are now case insensitive
- Support for custom escape character for JPA's like function
Version 3.1.5
- Added
ListExpression
which stores a list of expressions. It may be used in conjuction within
operator. For example, a function which returnsListExpression
will propertly work within
(eg:category in getCategoryList()
).
Version 3.1.4
- Use left join for singular attributes
Version 3.1.3
- Added
nodeMapper
inParseContext
to customize parsed nodes - Added support for escaping
%
with\\%
and*
with\\*
(JPA) - Added support for searching UUID fields (Mongo)
- Added support for using
in
with UUID fields (Mongo)
Version 3.1.2
- Added the
ParseContext
parameter to theFilterParser
, which lets map fields with itsgetFieldMapper
method, see here for an example
Version 3.1.1
ConversionService
@Qualifier
fix
Version 3.1.0
mongo
in
operation fix
Version 3.0.9
- Fixed missing
@Qualifier
inmongo
Version 3.0.8
- Support the
*
wildcard for JPA~
and~~
operators