Skip to content

Commit 3799633

Browse files
committed
Version 3.12.2
1 parent 95f0b08 commit 3799633

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

docs/community/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ You can determine your currently installed version using `pip show`:
3636

3737
## 3.12.x series
3838

39+
### 3.12.2
40+
41+
Date: 13th October 2020
42+
43+
* Fix issue if `rest_framework.authtoken.models` is imported, but `rest_framework.authtoken` is not in INSTALLED_APPS. [#7571]
44+
* Ignore subclasses of BrowsableAPIRenderer in OpenAPI schema. [#7497]
45+
* Narrower exception catching in serilizer fields, to ensure that any errors in broken `get_queryset()` methods are not masked. [#7480]
46+
3947
### 3.12.1
4048

4149
Date: 28th September 2020

rest_framework/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import django
1111

1212
__title__ = 'Django REST framework'
13-
__version__ = '3.12.1'
13+
__version__ = '3.12.2'
1414
__author__ = 'Tom Christie'
1515
__license__ = 'BSD 3-Clause'
1616
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'

0 commit comments

Comments
 (0)