Version 3.12.5

This commit is contained in:
Tom Christie 2021-12-10 10:28:06 +00:00
parent 1cb3fa2e81
commit 58378bccac
2 changed files with 13 additions and 1 deletions

View File

@ -36,6 +36,18 @@ You can determine your currently installed version using `pip show`:
## 3.12.x series ## 3.12.x series
### 3.12.5
Date: ...
* Django 4.0 compatability. [#8178]
* Add `max_length` and `min_length` options to `ListSerializer`. [#8165]
* Add `get_request_serializer` and `get_response_serializer` hooks to `AutoSchema`. [#7424]
* Fix OpenAPI representation of null-able read only fields. [#8116]
* Respect `UNICODE_JSON` setting in API schema outputs. [#7991]
* Fix for `RemoteUserAuthentication`. [#7158]
* Make Field constructors keyword-only. [#7632]
### 3.12.4 ### 3.12.4
Date: 26th March 2021 Date: 26th March 2021

View File

@ -10,7 +10,7 @@ ______ _____ _____ _____ __
import django import django
__title__ = 'Django REST framework' __title__ = 'Django REST framework'
__version__ = '3.12.4' __version__ = '3.12.5'
__author__ = 'Tom Christie' __author__ = 'Tom Christie'
__license__ = 'BSD 3-Clause' __license__ = 'BSD 3-Clause'
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd' __copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'