Releases: tombch/django-query-tools
Releases · tombch/django-query-tools
v0.3.3
v0.3.2
v0.3.1
v0.3.0
- Changed underlying JSON structure for NOT operator: removed the intermediate single-item list that gave it the same structure as other operators. Previously, NOT corresponded to the JSON
{"~" : [{...}]}
, but is now instead{"~" : {...}}
, without the unnecessary single-item list. - Added
QueryException
class for catching all (known) query-parsing issues.