File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,35 @@ You can determine your currently installed version using `pip show`:
40
40
41
41
## 3.10.x series
42
42
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
+
43
72
### 3.10.0
44
73
45
74
** Date** : [ 15th July 2019] [ 3.10.0-milestone ]
Original file line number Diff line number Diff line change 8
8
"""
9
9
10
10
__title__ = 'Django REST framework'
11
- __version__ = '3.10.1 '
11
+ __version__ = '3.10.3 '
12
12
__author__ = 'Tom Christie'
13
13
__license__ = 'BSD 2-Clause'
14
14
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'
You can’t perform that action at this time.
0 commit comments