2021-10-07 17:09:00 by Nia Alarie | Files touched by this commit (1033) |
Log message:
www: Remove SHA1 hashes for distfiles
|
2021-03-10 11:25:03 by Adam Ciarcinski | Files touched by this commit (4) |  |
Log message:
py-django-filter: updated to 2.4.0
Version 2.4.0 (2020-9-27)
--------------------------
* SECURITY: Added a ``MaxValueValidator`` to the form field for
``NumberFilter``. This prevents a potential DoS attack if numbers with very
large exponents were subsequently converted to integers.
The default limit value for the validator is ``1e50``.
The new ``NumberFilter.get_max_validator()`` allows customising the used
validator, and may return ``None`` to disable the validation entirely.
* Added testing against Django 3.1 and Python 3.9.
In addition tests against Django main development branch are now required to
pass.
Version 2.3.0 (2020-6-5)
------------------------
* Fixed import of FieldDoesNotExist.
* Added testing against Django 3.0.
* Declared support for, and added testing against, Python 3.8.
* Fix filterset multiple inheritance bug
* Allowed customising default lookup expression.
* Drop Django 2.1 and below
* Fixed IsoDateTimeRangeFieldTests for Django 3.1
* Require tests to pass against Django `master`.
|
2020-10-12 01:48:18 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message:
Fix support for newer Django versions. Bump revision.
|
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.
|