2019-12-18 16:43:44 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
py-django != py-djangorestframework
|
2019-12-15 22:41:26 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-filter: updated to 2.2.0
Version 2.2:
Added DjangoFilterBackend.get_schema_operation_parameters() for DRF 3.10+ \
OpenAPI schema generation.
Added lookup_expr to MultipleChoiceFilter
Dropped support for EOL Python 3.4
|
2019-01-22 10:37:49 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-filter: updated to 2.1.0
Version 2.1:
* 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.
|
2018-12-27 17:05:06 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
py-django-filter dropped Python 2.x support.
|
2018-11-15 10:22:51 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-django-filter: updated to 2.0.0
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
* Improve exception message for invalid filter result
* Test QueryDict against CSV filters
* Add `renderer` argument to `render()` method of `BooleanWidget`
* Fix lookups for reverse relationships
* Refactor backend filterset instantiation
* Improve view-related attribute name consistency
* Fix distinct call for range filters
* Fix empty value check for CSV range
* Rework DateRangeFilter
* Added testing for Django 2.1
* Rework 'lookup types' handling into LookupChoiceFilter
* Add linting and docs builds to CI
* Use DRF BooleanFilter for NullBooleanField
* Added Brazilian locale
* List Django as a dependency in setup.py
* Keep coverage reports files off version control.
* Update migration docs
* Added be, cs and uk translations. Updated de and ru
* Slovak translation
* Added Django 2.0 support.
* Fix warnings build
* Add greek translation
* Replaced super(ClassName, self) with super()
* Fixed doc URL in utils.deprecate().
* Added danish translation to django-filter
* Rework validation, add queryset filter method
* Fix Schema warnings
* Update {Range,LookupType}Widgets to use suffixes
* Method signature improvements
* Remove more deprecations
* Drop python 2, Django<1.11 support
* Remove 'Meta.together' option
* [2.x] Remove some deprecations
|
2018-02-02 13:41:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django-filter: updated to 1.1.0
Version 1.1:
* Add Deprecations for 2.0
* Improve IsoDateTimeField test clarity
* Fix form attr references in tests
* Simplify tox config, drop python 3.3 & django 1.8
* Make get_filter_name a classmethod, allowing it to be overriden for each \
FilterClass
* Support active timezone
* Docs Typo: django_filters -> filters in docs
* Add Polish translations for some messages
* Remove support for Django 1.9 (EOL)
* Use required attribute from field when getting schema fields
* Prevent circular ImportError hiding for rest_framework sub-package
* Deprecate 'extra' field attrs on Filter
* Add SuffixedMultiWidget
* Fix null filtering for *Choice filters
* Use isort on imports
* Use urlencode from django.utils.http
* Remove OrderingFilter.help_text
* Update DRF test dependency to 3.6
|
2017-05-23 00:28:48 by Joerg Sonnenberger | Files touched by this commit (4) |
Log message:
Add py-django-filter-1.0.4:
Django-filter is a reusable Django application allowing users to
declaratively add dynamic QuerySet filtering from URL parameters.
|