Skip to content

Releases: tombch/django-query-tools

v0.3.3

11 Oct 13:22
Compare
Choose a tag to compare

v0.3.2

07 Aug 15:49
Compare
Choose a tag to compare
  • Further improved error reporting: operators that use lists are now checked to have a list with at least one item (and a QueryException is raised if this is not the case)

v0.3.1

07 Aug 15:47
Compare
Choose a tag to compare
  • Improved error reporting: added check for list type for each of AND, OR and XOR operators

v0.3.0

07 Aug 15:24
Compare
Choose a tag to compare
  • 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.

v0.2.1

15 May 11:44
Compare
Choose a tag to compare
  • Added setup.cfg

v0.2.0

15 May 11:42
Compare
Choose a tag to compare
  • Added validate_atoms function, which can validate & clean QueryAtom objects against a provided django-filter FilterSet.

v0.1.0

11 May 09:40
Compare
Choose a tag to compare

Initial release.