Skip to content

Commit 83ad265

Browse files
authored
Version 3.12.3 (encode#7866)
1 parent ebcb8d5 commit 83ad265

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

docs/community/release-notes.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,22 @@ You can determine your currently installed version using `pip show`:
3838

3939
### 3.12.2
4040

41+
Date: 25th March 2021
42+
43+
* Properly handle ATOMIC_REQUESTS when multiple database configurations are used. [#7739]
44+
* Bypass `COUNT` query when `LimitOffsetPagination` is configured but pagination params are not included on the request. [#6098]
45+
* Respect `allow_null=True` on `DecimalField`. [#7718]
46+
* Allow title cased `"Yes"`/`"No"` values with `BooleanField`. [#7739]
47+
* Add `PageNumberPagination.get_page_number()` method for overriding behavior. [#7652]
48+
* Fixed rendering of timedelta values in OpenAPI schemas, when present as default, min, or max fields. [#7641]
49+
* Render JSONFields with indentation in browsable API forms. [#6243]
50+
* Remove unnecessary database query in admin Token views. [#7852]
51+
* Raise validation errors when bools are passed to `PrimaryKeyRelatedField` fields, instead of casting to ints. [#7597]
52+
* Don't include model properties as automatically generated ordering fields with `OrderingFilter`. [#7609]
53+
* Use `deque` instead of `list` for tracking throttling `.history`. [#7849]
54+
55+
### 3.12.2
56+
4157
Date: 13th October 2020
4258

4359
* Fix issue if `rest_framework.authtoken.models` is imported, but `rest_framework.authtoken` is not in INSTALLED_APPS. [#7571]

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.2'
13+
__version__ = '3.12.3'
1414
__author__ = 'Tom Christie'
1515
__license__ = 'BSD 3-Clause'
1616
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'

0 commit comments

Comments
 (0)