Skip to content

Commit eb57742

Browse files
Version 3.5.4 (encode#4894)
1 parent 176831e commit eb57742

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

docs/topics/release-notes.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,24 @@ You can determine your currently installed version using `pip freeze`:
4040

4141
## 3.5.x series
4242

43+
### 3.5.4
44+
45+
**Date**: [10th February 2017][3.5.4-milestone]
46+
47+
* Add max_length and min_length arguments for ListField. ([#4877][gh4877])
48+
* Add per-view custom exception handler support. ([#4753][gh4753])
49+
* Support disabling of declared fields on serializer subclasses. ([#4764][gh4764])
50+
* Support custom view names on `@list_route` and `@detail_route` endpoints. ([#4821][gh4821])
51+
* Correct labels for fields in login template when custom user model is used. ([#4841][gh4841])
52+
* Whitespace fixes for descriptions generated from docstrings. ([#4759][gh4759], [#4869][gh4869], [#4870][gh4870])
53+
* Better error reporting when schemas are returned by views without a schema renderer. ([#4790][gh4790])
54+
* Fix for returned response of `PUT` requests when `prefetch_related` is used. ([#4661][gh4661], [#4668][gh4668])
55+
* Fix for breadcrumb view names. ([#4750][gh4750])
56+
* Fix for RequestsClient ensuring fully qualified URLs. ([#4678][gh4678])
57+
* Fix for incorrect behavior of writable-nested fields check in some cases. ([#4634][gh4634], [#4669][gh4669])
58+
* Resolve Django deprecation warnings. ([#4712][gh4712])
59+
* Various cleanup of test cases.
60+
4361
### 3.5.3
4462

4563
**Date**: [7th November 2016][3.5.3-milestone]
@@ -639,6 +657,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
639657
[3.5.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.1+Release%22
640658
[3.5.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.2+Release%22
641659
[3.5.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.3+Release%22
660+
[3.5.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.4+Release%22
642661

643662
<!-- 3.0.1 -->
644663
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -1216,3 +1235,22 @@ For older release notes, [please see the version 2.x documentation][old-release-
12161235
[gh4645]: https://github.com/tomchristie/django-rest-framework/issues/4645
12171236
[gh4646]: https://github.com/tomchristie/django-rest-framework/issues/4646
12181237
[gh4650]: https://github.com/tomchristie/django-rest-framework/issues/4650
1238+
1239+
<!-- 3.5.4 -->
1240+
1241+
[gh4877]: https://github.com/tomchristie/django-rest-framework/issues/4877
1242+
[gh4753]: https://github.com/tomchristie/django-rest-framework/issues/4753
1243+
[gh4764]: https://github.com/tomchristie/django-rest-framework/issues/4764
1244+
[gh4821]: https://github.com/tomchristie/django-rest-framework/issues/4821
1245+
[gh4841]: https://github.com/tomchristie/django-rest-framework/issues/4841
1246+
[gh4759]: https://github.com/tomchristie/django-rest-framework/issues/4759
1247+
[gh4869]: https://github.com/tomchristie/django-rest-framework/issues/4869
1248+
[gh4870]: https://github.com/tomchristie/django-rest-framework/issues/4870
1249+
[gh4790]: https://github.com/tomchristie/django-rest-framework/issues/4790
1250+
[gh4661]: https://github.com/tomchristie/django-rest-framework/issues/4661
1251+
[gh4668]: https://github.com/tomchristie/django-rest-framework/issues/4668
1252+
[gh4750]: https://github.com/tomchristie/django-rest-framework/issues/4750
1253+
[gh4678]: https://github.com/tomchristie/django-rest-framework/issues/4678
1254+
[gh4634]: https://github.com/tomchristie/django-rest-framework/issues/4634
1255+
[gh4669]: https://github.com/tomchristie/django-rest-framework/issues/4669
1256+
[gh4712]: https://github.com/tomchristie/django-rest-framework/issues/4712

rest_framework/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
__title__ = 'Django REST framework'
11-
__version__ = '3.5.3'
11+
__version__ = '3.5.4'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2016 Tom Christie'

0 commit comments

Comments
 (0)