Releases: caktus/django_bread
1.0.7
What's Changed
- Add support for Python 3.11 and 3.12; drop support for Python 3.8 by @simonkagwi in #85
- Add support for Django 5.0 and 5.1; drop support for Django 3.2 by @simonkagwi in #85
New Contributors
- @simonkagwi made their first contribution in #85
Full Changelog: 1.0.6...1.0.7
1.0.6
Updated BrowseView.get_queryset to pass the request object to the filterset class
1.0.5
- Add support for
Django 4.x
and removes support for deprecated versions - Remove support for
Python 3.7
1.0.4
Add support for traversing reverse OneToOneRel
fields
1.0.3
Add Django 3.2 and Python 3.10 support
1.0.2
1.0.1
1.0.1 - Dec 2, 2020
- Drop specific version dependencies in setup.py for
django-filter and django-vanilla-views - Update supported versions of Python and Django,
dropping Django 2.1 and adding 3.0 and 3.1,
and dropping Python 3.5 and 3.6 and adding 3.8 and 3.9.
Supported versions in this release are:
Django: 2.2, 3.0, 3.1
Python: 3.7, 3.8, 3.9
Version 1.0.0
Version 1.0.0 includes a breaking change! If you're using the default
view permissions, before upgrading, make sure you've
migrated your users and groups that have "read_{model_name}"
permissions to also have "view_{model_name}". From 1.0.0 on, that's the
default permission a user needs to use the read views, because it's become the
standard Django permission for read-only access since Django 2.1.
If you're still on Django 2.0, don't upgrade django-bread until you
can get to at least Django 2.1. (Hopefully that's not the case, since
Django 2.0 has been out of support since April 1, 2019.)