Up to [cvs.NetBSD.org] / pkgsrc / www / py-django-filter
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.11 / (download) - annotate - [select for diffs], Wed Nov 9 13:14:18 2022 UTC (3 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base,
pkgsrc-2022Q4,
HEAD
Changes since 1.10: +2 -2
lines
Diff to previous 1.10 (colored)
Reset MAINTAINER
Revision 1.10 / (download) - annotate - [select for diffs], Tue Jan 4 20:55:19 2022 UTC (13 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.9: +2 -1
lines
Diff to previous 1.9 (colored)
*: bump PKGREVISION for egg.mk users They now have a tool dependency on py-setuptools instead of a DEPENDS
Revision 1.9 / (download) - annotate - [select for diffs], Wed Mar 10 10:25:03 2021 UTC (23 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1
Changes since 1.8: +3 -4
lines
Diff to previous 1.8 (colored)
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`.
Revision 1.8 / (download) - annotate - [select for diffs], Sun Oct 11 23:48:18 2020 UTC (2 years, 3 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.7: +2 -1
lines
Diff to previous 1.7 (colored)
Fix support for newer Django versions. Bump revision.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Dec 18 15:43:44 2019 UTC (3 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2,
pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4
Changes since 1.6: +2 -2
lines
Diff to previous 1.6 (colored)
py-django != py-djangorestframework
Revision 1.6 / (download) - annotate - [select for diffs], Sun Dec 15 21:41:26 2019 UTC (3 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
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
Revision 1.5 / (download) - annotate - [select for diffs], Tue Jan 22 09:37:49 2019 UTC (4 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
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.
Revision 1.4 / (download) - annotate - [select for diffs], Thu Dec 27 16:05:06 2018 UTC (4 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2018Q4-base,
pkgsrc-2018Q4
Changes since 1.3: +3 -1
lines
Diff to previous 1.3 (colored)
py-django-filter dropped Python 2.x support.
Revision 1.3 / (download) - annotate - [select for diffs], Thu Nov 15 09:22:51 2018 UTC (4 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.2: +3 -2
lines
Diff to previous 1.2 (colored)
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
Revision 1.2 / (download) - annotate - [select for diffs], Fri Feb 2 12:41:30 2018 UTC (5 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base,
pkgsrc-2018Q3,
pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1
Changes since 1.1: +4 -4
lines
Diff to previous 1.1 (colored)
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
Revision 1.1 / (download) - annotate - [select for diffs], Mon May 22 22:28:48 2017 UTC (5 years, 8 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3,
pkgsrc-2017Q2-base,
pkgsrc-2017Q2
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.