-
Notifications
You must be signed in to change notification settings - Fork 8
BreakingChanges
To avoid false positives as in this bug report, filter and search values are not auto-converted for boolean and date/time values anymore (a hidden feature of the getOptions
function in versions prior to 2.0.11). Now you need to specify a schema explicitly. For instance:
getOptions(req.query, {
done: 'bool',
deadline: 'datetime',
});
The default behavior of the operators startswith
, endswith
, contains
and notcontains
for filter and search criteria has changed to be case insensitive. This decision was made for compatibility with the behavior of client-side DevExtreme widgets and that implemented by other data adapters for oData and ASP.NET.
The new processing option caseInsensitiveRegex
has been introduced, as described in QueryAPI. You can revert to the behavior prior to 2.0.9 by setting this option to false
when calling the query
function.