8000 Version 3.10.3 (#6908) · louwers/django-rest-framework@89ac0a1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 89ac0a1

Browse files
authored
Version 3.10.3 (encode#6908)
* Version 3.10.3 * Version 3.10.3 release notes
1 parent 4b30b32 commit 89ac0a1

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

docs/community/release-notes.md

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

4141
## 3.10.x series
4242

43+
### 3.10.3
44+
45+
* Include API version in OpenAPI schema generation, defaulting to empty string.
46+
* Add pagination properties to OpenAPI response schemas.
47+
* Add missing "description" property to OpenAPI response schemas.
48+
* Only include "required" for non-empty cases in OpenAPI schemas.
49+
* Fix response schemas for "DELETE" case in OpenAPI schemas.
50+
* Use an array type for list view response schemas.
51+
* Use consistent `lowerInitialCamelCase` style in OpenAPI operation IDs.
52+
* Fix `minLength`/`maxLength`/`minItems`/`maxItems` properties in OpenAPI schemas.
53+
* Only call `FileField.url` once in serialization, for improved performance.
54+
* Fix an edge case where throttling calcualtions could error after a configuration change.
55+
56+
* TODO
57+
58+
### 3.10.2
59+
60+
**Date**: 29th July 2019
61+
62+
* Various `OpenAPI` schema fixes.
63+
* Ability to specify urlconf in include_docs_urls.
64+
65+
### 3.10.1
66+
67+
**Date**: 17th July 2019
68+
69+
* Don't include autocomplete fields on TokenAuth admin, since it forces constraints on custom user models & admin.
70+
* Require `uritemplate` for OpenAPI schema generation, but not `coreapi`.
71+
4372
### 3.10.0
4473

4574
**Date**: [15th July 2019][3.10.0-milestone]

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.10.1'
11+
__version__ = '3.10.3'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'

0 commit comments

Comments
 (0)
0