@@ -22,6 +22,8 @@ Significant new functionality in the 3.3 release includes:
...
@@ -22,6 +22,8 @@ Significant new functionality in the 3.3 release includes:
*Example of the new filter controls*
*Example of the new filter controls*
---
## Supported versions
## Supported versions
This release drops support for Django 1.5 and 1.6. Django 1.7, 1.8 or 1.9 are now required.
This release drops support for Django 1.5 and 1.6. Django 1.7, 1.8 or 1.9 are now required.
...
@@ -46,6 +48,8 @@ The following pagination view attributes and settings have been moved into attri
...
@@ -46,6 +48,8 @@ The following pagination view attributes and settings have been moved into attri
*`settings.PAGINATE_BY_PARAM` - Use `paginator.page_size_query_param` instead.
*`settings.PAGINATE_BY_PARAM` - Use `paginator.page_size_query_param` instead.
*`settings.MAX_PAGINATE_BY` - Use `paginator.max_page_size` instead.
*`settings.MAX_PAGINATE_BY` - Use `paginator.max_page_size` instead.
The `ModelSerializer` and `HyperlinkedModelSerializer` classes should now include either a `fields` or `exclude` option, although the `fields = '__all__'` shortcut may be used. Failing to include either of these two options is currently pending deprecation, and will be removed entirely in the 3.5 release. This behavior brings `ModelSerializer` more closely in line with Django's `ModelForm` behavior.