This release contains a fix to allow distribution installation on Python 3 which was broken since 1.0.2
This is a quick fix for packaging (setup.py) errors and documentation.
- add missing Django 1.7 migrations
- README updated to mention
manage.py migrate
command - Use ReST for README and CHANGELOG: avoid conversion from markdown
This release features better test coverage and support for Django 1.9.
- stretch formset table to the modal container width
- toggle advanced
vendor/jquery
dir according to Django version - retain support older Django versions
- clean up legacy tags in templates
- add admin views tests
- add Django 1.9 to test matrix
- other minor improvements
- Improve README with a newer screenshot and pretty tables for badges
- Pavel Savchenko
- Leonardo J. Caballero G
- Schuyler Duveen
- proper support for py26 and py3X and different Django releases
- avoid querying all instances for choices
- resolve settings inside view and refine error handling
- add doctests to the
form_helpers
- add tests for
forms
- add test case
views.TestGetFieldChoicesView
- setup.py/travis: add
test-reqs.txt
as extras_require - refactor testing to use
py.test
and runtox
fromsetup.py
- travis: use latest version of each Django release
README
: explain what we test against
- Add a new (required) field
`AdvancedFilter.model
<https://raw.githubusercontent.com/modlinltd/django-advanced-filters/develop/README.rst#model-correlation>`__ - Add parsing query dict into initialized formsets (allows for editing existing instance).
- Add
`AdvancedFilterAdmin
<#editing-previously-created-advanced-filters>`__ for actually accessing and editing existing ``AdvancedFilter` instances <https://raw.githubusercontent.com/modlinltd/django-advanced-filters/develop/README.rst#editing-previously-created-advanced-filters>`__. - Use Select2 and
an AJAX view to dynamically populate
`field
options <https://raw.githubusercontent.com/modlinltd/django-advanced-filters/develop/README.rst#fields>`__. - Add proper support for nested serialization of queries.
- Implement more
`operators
<https://raw.githubusercontent.com/modlinltd/django-advanced-filters/develop/README.rst#operators>`__ (isnull
,istrue
andisfalse
) - Allow custom verbose naming of fields in advanced_filter_fields
- Add helper methods to the model to hide (and decouple) core serialization functionality from users.
- Strip whitespace in field values validation
- Setup and packaging (
setup.py
/MANIFEST.in
) - Hide
QSerializer
calling logic in the model - Allow modifying
advanced_filter_form
property (defaults toAdvancedFilterForm
) - Correct documentation regarding position of mixin in subclass (issue #1)