Drop erroneous ) in release notes

This commit is contained in:
Carlton Gibson 2017-09-20 14:23:34 +02:00
parent 7d6d043531
commit cb6e7e0fdd

View File

@ -44,7 +44,7 @@ You can determine your currently installed version using `pip freeze`:
* Fix `DjangoModelPermissions` to ensure user authentication before calling the view's `get_queryset()` method. As a side effect, this changes the order of the HTTP method permissions and authentication checks, and 405 responses will only be returned when authenticated. If you want to replicate the old behavior, see the PR for details. [#5376][gh5376]
* Deprecated `exclude_from_schema` on `APIView` and `api_view` decorator. Set `schema = None` or `@schema(None)` as appropriate. [#5422][gh5422]
* Timezone-aware `DateTimeField`s now respect active or default) `timezone` during serialization, instead of always using UTC.
* Timezone-aware `DateTimeField`s now respect active or default `timezone` during serialization, instead of always using UTC.
Resolves inconsistency whereby instances were serialised with supplied datetime for `create` but UTC for `retrieve`. [#3732][gh3732]