-
Fixed a regression in
FilterView
introduced in 2.0. An emptyQuerySet
was
incorrectly used whenever theFilterSet
was unbound (i.e. when there were
noGET
parameters). The correct, pre-2.0 behaviour is now restored.A workaround was to set
strict=False
on theFilterSet
. This is no
longer necessary, so you may restorestrict
behaviour as desired. -
Added
IsoDateTimeFromToRangeFilter
. Allows From-To filtering using
ISO-8601 formatted dates.