Release notes
*Sourced from [django-filter's releases](https://github.com/carltongibson/django-filter/releases).*
> ## Version 2.1.0
> * Fixed a regression in `FilterView` introduced in 2.0. An empty `QuerySet` was
> incorrectly used whenever the `FilterSet` was unbound (i.e. when there were
> no `GET` parameters). The correct, pre-2.0 behaviour is now restored.
>
> A workaround was to set `strict=False` on the `FilterSet`. This is no
> longer necessary, so you may restore `strict` behaviour as desired.
>
> * Added `IsoDateTimeFromToRangeFilter`. Allows From-To filtering using
> ISO-8601 formatted dates.
>
> ## Version 2.0
> 2.0 introduced a number of small changes and tidy-ups.
> Please see the migration guide:
>
> https://django-filter.readthedocs.io/en/master/guide/migration.html#migrating-to-2-0
>
> * Added testing for Python 3.7 ([#944](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/944))
> * Improve exception message for invalid filter result ([#943](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/943))
> * Test QueryDict against CSV filters ([#937](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/937))
> * Add `renderer` argument to `render()` method of `BooleanWidget` ([#923](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/923))
> * Fix lookups for reverse relationships ([#915](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/915))
> * Refactor backend filterset instantiation ([#865](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/865))
> * Improve view-related attribute name consistency ([#867](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/867))
> * Fix distinct call for range filters ([#855](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/855))
> * Fix empty value check for CSV range ([#854](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/854))
> * Rework DateRangeFilter ([#852](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/852))
> * Added testing for Django 2.1
> * Rework 'lookup types' handling into LookupChoiceFilter ([#851](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/851))
> * Add linting and docs builds to CI ([#850](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/850))
> * Use DRF BooleanFilter for NullBooleanField ([#844](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/844))
> * Added Brazilian locale ([#841](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/841))
> * List Django as a dependency in setup.py ([#846](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/846))
> * Keep coverage reports files off version control. ([#924](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/924))
> * Update migration docs ([#866](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/866))
> * Added be, cs and uk translations. Updated de and ru ([#861](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/861))
> * Slovak translation ([#886](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/886))
> * Added Django 2.0 support. ([#836](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/836))
> * Fix warnings build ([#829](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/829))
> * Add greek translation ([#827](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/827))
> * Replaced super(ClassName, self) with super() ([#821](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/821))
> * Fixed doc URL in utils.deprecate(). ([#820](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/820))
> * Added danish translation to django-filter ([#809](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/809))
> * Rework validation, add queryset filter method ([#788](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/788))
> * Fix Schema warnings ([#803](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/803))
> * Update {Range,LookupType}Widgets to use suffixes ([#770](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/770))
> * Method signature improvements ([#800](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/800))
> * Remove more deprecations ([#801](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/801))
> * Drop python 2, Django<1.11 support ([#797](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/797))
> * Remove 'Meta.together' option ([#791](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/791))
> ... (truncated)
Changelog
*Sourced from [django-filter's changelog](https://github.com/carltongibson/django-filter/blob/master/CHANGES.rst).*
> Version 2.1 (2019-1-20)
> =======================
>
> - Fixed a regression in `FilterView` introduced in 2.0. An empty `QuerySet` was incorrectly used whenever the FilterSet was unbound (i.e. when there were no GET parameters). The correct, pre-2.0 behaviour is now restored.
>
> A workaround was to set `strict=False` on the `FilterSet`. This is no longer necessary, so you may restore strict behaviour as desired.
>
> - Added `IsoDateTimeFromToRangeFilter`. Allows From-To filtering using ISO-8601 formatted dates.
>
> Version 2.0 (2018-7-13)
> =======================
>
> 2.0 introduced a number of small changes and tidy-ups. Please see the migration guide:
>
>
>
> - Added testing for Python 3.7 ([\#944](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/944))
> - Improve exception message for invalid filter result ([\#943](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/943))
> - Test QueryDict against CSV filters ([\#937](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/937))
> - Add renderer argument to render() method of BooleanWidget ([\#923](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/923))
> - Fix lookups for reverse relationships ([\#915](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/915))
> - Refactor backend filterset instantiation ([\#865](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/865))
> - Improve view-related attribute name consistency ([\#867](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/867))
> - Fix distinct call for range filters ([\#855](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/855))
> - Fix empty value check for CSV range ([\#854](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/854))
> - Rework DateRangeFilter ([\#852](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/852))
> - Added testing for Django 2.1
> - Rework 'lookup types' handling into LookupChoiceFilter ([\#851](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/851))
> - Add linting and docs builds to CI ([\#850](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/850))
> - Use DRF BooleanFilter for NullBooleanField ([\#844](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/844))
> - Added Brazilian locale ([\#841](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/841))
> - List Django as a dependency in setup.py ([\#846](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/846))
> - Keep coverage reports files off version control. ([\#924](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/924))
> - Update migration docs ([\#866](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/866))
> - Added be, cs and uk translations. Updated de and ru ([\#861](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/861))
> - Slovak translation ([\#886](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/886))
> - Added Django 2.0 support. ([\#836](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/836))
> - Fix warnings build ([\#829](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/829))
> - Add greek translation ([\#827](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/827))
> - Replaced super(ClassName, self) with super() ([\#821](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/821))
> - Fixed doc URL in utils.deprecate(). ([\#820](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/820))
> - Added danish translation to django-filter ([\#809](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/809))
> - Rework validation, add queryset filter method ([\#788](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/788))
> - Fix Schema warnings ([\#803](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/803))
> - Update {Range,LookupType}Widgets to use suffixes ([\#770](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/770))
> - Method signature improvements ([\#800](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/800))
> - Remove more deprecations ([\#801](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/801))
> - Drop python 2, Django<1.11 support ([\#797](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/797))
> - Remove 'Meta.together' option ([\#791](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/791))
> - \[2.x\] Remove some deprecations ([\#795](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/795))
> ... (truncated)
Commits
- [`8e917de`](https://github.com/carltongibson/django-filter/commit/8e917de6c90d3d5512d71bae05dc463ecaebc88b) Comment Django 2.2 support in setup.py
- [`2a2da5e`](https://github.com/carltongibson/django-filter/commit/2a2da5e063b012a9fa2b22835e9353a021dc133f) Update version number for v2.1.0.
- [`c589790`](https://github.com/carltongibson/django-filter/commit/c58979017ac261ec8e9cf203e571360751026d12) Added change notes for v2.1.
- [`6c3be99`](https://github.com/carltongibson/django-filter/commit/6c3be993c401fbc6992a1cde02ee078ca9b576df) Add testing against Django 2.2a1
- [`0cbb723`](https://github.com/carltongibson/django-filter/commit/0cbb723479a99dbe8e48853e577b0feeff5c269d) Corrected FilterView behaviour with unbound FilterSet. ([#1025](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1025))
- [`99ced9c`](https://github.com/carltongibson/django-filter/commit/99ced9ce401f8e08f4ee89a4e1246253640e5b2f) Use tox instead of detox ([#996](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/996))
- [`f4981c8`](https://github.com/carltongibson/django-filter/commit/f4981c8644826fc343efcec601bbb91eeb390162) Add IsoDateTimeFromToRangeFilter ([#1004](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1004)) ([#1005](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1005))
- [`1f47e36`](https://github.com/carltongibson/django-filter/commit/1f47e36b614724a8735e0457fa511dcaf5448481) fix DeprecationWarning on python 3.7 ([#989](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/989))
- [`b3c0b81`](https://github.com/carltongibson/django-filter/commit/b3c0b8189689571c357bb89bc11977cbbca4271b) Fix translate_validation: use params ([#965](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/965))
- [`a6ffe8b`](https://github.com/carltongibson/django-filter/commit/a6ffe8b1b943ff5663c2c7eb9bacf92db497c689) Fixed typo in the docs/guide/rest_framework.txt. ([#1016](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1016))
- Additional commits viewable in [compare view](https://github.com/carltongibson/django-filter/compare/1.1.0...2.1.0)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking Bump now in your Dependabot dashboard.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps django-filter from 1.1.0 to 2.1.0.
Release notes
*Sourced from [django-filter's releases](https://github.com/carltongibson/django-filter/releases).* > ## Version 2.1.0 > * Fixed a regression in `FilterView` introduced in 2.0. An empty `QuerySet` was > incorrectly used whenever the `FilterSet` was unbound (i.e. when there were > no `GET` parameters). The correct, pre-2.0 behaviour is now restored. > > A workaround was to set `strict=False` on the `FilterSet`. This is no > longer necessary, so you may restore `strict` behaviour as desired. > > * Added `IsoDateTimeFromToRangeFilter`. Allows From-To filtering using > ISO-8601 formatted dates. > > ## Version 2.0 > 2.0 introduced a number of small changes and tidy-ups. > Please see the migration guide: > > https://django-filter.readthedocs.io/en/master/guide/migration.html#migrating-to-2-0 > > * Added testing for Python 3.7 ([#944](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/944)) > * Improve exception message for invalid filter result ([#943](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/943)) > * Test QueryDict against CSV filters ([#937](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/937)) > * Add `renderer` argument to `render()` method of `BooleanWidget` ([#923](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/923)) > * Fix lookups for reverse relationships ([#915](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/915)) > * Refactor backend filterset instantiation ([#865](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/865)) > * Improve view-related attribute name consistency ([#867](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/867)) > * Fix distinct call for range filters ([#855](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/855)) > * Fix empty value check for CSV range ([#854](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/854)) > * Rework DateRangeFilter ([#852](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/852)) > * Added testing for Django 2.1 > * Rework 'lookup types' handling into LookupChoiceFilter ([#851](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/851)) > * Add linting and docs builds to CI ([#850](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/850)) > * Use DRF BooleanFilter for NullBooleanField ([#844](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/844)) > * Added Brazilian locale ([#841](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/841)) > * List Django as a dependency in setup.py ([#846](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/846)) > * Keep coverage reports files off version control. ([#924](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/924)) > * Update migration docs ([#866](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/866)) > * Added be, cs and uk translations. Updated de and ru ([#861](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/861)) > * Slovak translation ([#886](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/886)) > * Added Django 2.0 support. ([#836](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/836)) > * Fix warnings build ([#829](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/829)) > * Add greek translation ([#827](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/827)) > * Replaced super(ClassName, self) with super() ([#821](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/821)) > * Fixed doc URL in utils.deprecate(). ([#820](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/820)) > * Added danish translation to django-filter ([#809](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/809)) > * Rework validation, add queryset filter method ([#788](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/788)) > * Fix Schema warnings ([#803](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/803)) > * Update {Range,LookupType}Widgets to use suffixes ([#770](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/770)) > * Method signature improvements ([#800](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/800)) > * Remove more deprecations ([#801](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/801)) > * Drop python 2, Django<1.11 support ([#797](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/797)) > * Remove 'Meta.together' option ([#791](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/791)) > ... (truncated)Changelog
*Sourced from [django-filter's changelog](https://github.com/carltongibson/django-filter/blob/master/CHANGES.rst).* > Version 2.1 (2019-1-20) > ======================= > > - Fixed a regression in `FilterView` introduced in 2.0. An empty `QuerySet` was incorrectly used whenever the FilterSet was unbound (i.e. when there were no GET parameters). The correct, pre-2.0 behaviour is now restored. > > A workaround was to set `strict=False` on the `FilterSet`. This is no longer necessary, so you may restore strict behaviour as desired. > > - Added `IsoDateTimeFromToRangeFilter`. Allows From-To filtering using ISO-8601 formatted dates. > > Version 2.0 (2018-7-13) > ======================= > > 2.0 introduced a number of small changes and tidy-ups. Please see the migration guide: > >Commits
- [`8e917de`](https://github.com/carltongibson/django-filter/commit/8e917de6c90d3d5512d71bae05dc463ecaebc88b) Comment Django 2.2 support in setup.py - [`2a2da5e`](https://github.com/carltongibson/django-filter/commit/2a2da5e063b012a9fa2b22835e9353a021dc133f) Update version number for v2.1.0. - [`c589790`](https://github.com/carltongibson/django-filter/commit/c58979017ac261ec8e9cf203e571360751026d12) Added change notes for v2.1. - [`6c3be99`](https://github.com/carltongibson/django-filter/commit/6c3be993c401fbc6992a1cde02ee078ca9b576df) Add testing against Django 2.2a1 - [`0cbb723`](https://github.com/carltongibson/django-filter/commit/0cbb723479a99dbe8e48853e577b0feeff5c269d) Corrected FilterView behaviour with unbound FilterSet. ([#1025](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1025)) - [`99ced9c`](https://github.com/carltongibson/django-filter/commit/99ced9ce401f8e08f4ee89a4e1246253640e5b2f) Use tox instead of detox ([#996](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/996)) - [`f4981c8`](https://github.com/carltongibson/django-filter/commit/f4981c8644826fc343efcec601bbb91eeb390162) Add IsoDateTimeFromToRangeFilter ([#1004](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1004)) ([#1005](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1005)) - [`1f47e36`](https://github.com/carltongibson/django-filter/commit/1f47e36b614724a8735e0457fa511dcaf5448481) fix DeprecationWarning on python 3.7 ([#989](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/989)) - [`b3c0b81`](https://github.com/carltongibson/django-filter/commit/b3c0b8189689571c357bb89bc11977cbbca4271b) Fix translate_validation: use params ([#965](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/965)) - [`a6ffe8b`](https://github.com/carltongibson/django-filter/commit/a6ffe8b1b943ff5663c2c7eb9bacf92db497c689) Fixed typo in the docs/guide/rest_framework.txt. ([#1016](https://github-redirect.dependabot.com/carltongibson/django-filter/issues/1016)) - Additional commits viewable in [compare view](https://github.com/carltongibson/django-filter/compare/1.1.0...2.1.0)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.
You can always request more updates by clicking
Bump now
in your Dependabot dashboard.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.