@@ -71,7 +71,7 @@ You can determine your currently installed version using `pip freeze`:
71
71
* Fixed a deprecation warning in serializers.ModelField [ #5058 ] [ gh5058 ]
72
72
* Added a more explicit error message when ` get_queryset ` returned ` None ` [ #5348 ] [ gh5348 ]
73
73
* Fix docs for Response ` data ` description [ #5361 ] [ gh5361 ]
74
- * Fix __ pychache __ /.pyc excludes when packaging [ #5373 ] [ gh5373 ]
74
+ * Fix __ pycache __ /.pyc excludes when packaging [ #5373 ] [ gh5373 ]
75
75
* Fix default value handling for dotted sources [ #5375 ] [ gh5375 ]
76
76
* Ensure content_type is set when passing empty body to RequestFactory [ #5351 ] [ gh5351 ]
77
77
* Fix ErrorDetail Documentation [ #5380 ] [ gh5380 ]
@@ -80,7 +80,7 @@ You can determine your currently installed version using `pip freeze`:
80
80
* Fix ModelSerializer custom named fields with source on model [ #5388 ] [ gh5388 ]
81
81
* Fixed the MultipleFieldLookupMixin documentation example to properly check for object level permission [ #5398 ] [ gh5398 ]
82
82
* Update get_object() example in permissions.md [ #5401 ] [ gh5401 ]
83
- * Fix authtoken managment command [ #5415 ] [ gh5415 ]
83
+ * Fix authtoken management command [ #5415 ] [ gh5415 ]
84
84
* Fix schema generation markdown [ #5421 ] [ gh5421 ]
85
85
* Allow ` ChoiceField.choices ` to be set dynamically [ #5426 ] [ gh5426 ]
86
86
* Add the project layout to the quickstart [ #5434 ] [ gh5434 ]
@@ -163,15 +163,15 @@ You can determine your currently installed version using `pip freeze`:
163
163
164
164
* Support for Safari & IE in API docs. ([ #4959 ] [ gh4959 ] , [ #4961 ] [ gh4961 ] )
165
165
* Add missing ` mark_safe ` in API docs template tags. ([ #4952 ] [ gh4952 ] , [ #4953 ] [ gh4953 ] )
166
- * Add missing glyicon fonts. ([ #4950 ] [ gh4950 ] , [ #4951 ] [ gh4951 ] )
166
+ * Add missing glyphicon fonts. ([ #4950 ] [ gh4950 ] , [ #4951 ] [ gh4951 ] )
167
167
* Fix One-to-one fields in API docs. ([ #4955 ] [ gh4955 ] , [ #4956 ] [ gh4956 ] )
168
168
* Test clean ups. ([ #4949 ] [ gh4949 ] )
169
169
170
170
### 3.6.1
171
171
172
172
** Date** : [ 9th March 2017] [ 3.6.1-milestone ]
173
173
174
- * Ensure ` markdown ` dependancy is optional. ([ #4947 ] [ gh4947 ] )
174
+ * Ensure ` markdown ` dependency is optional. ([ #4947 ] [ gh4947 ] )
175
175
176
176
### 3.6.0
177
177
@@ -296,7 +296,7 @@ See the [release announcement][3.6-release].
296
296
297
297
** Date** : [ 5th August 2016] [ 3.4.3-milestone ]
298
298
299
- * Include fallaback for users of older TemplateHTMLRenderer internal API. ([ #4361 ] [ gh4361 ] )
299
+ * Include fallback for users of older TemplateHTMLRenderer internal API. ([ #4361 ] [ gh4361 ] )
300
300
301
301
### 3.4.2
302
302
@@ -395,7 +395,7 @@ See the [release announcement][3.6-release].
395
395
* ListSerializer doesn't handle unique_together constraints. ([ #3970 ] [ gh3970 ] )
396
396
* Add missing migration file. ([ #3968 ] [ gh3968 ] )
397
397
* ` OrderingFilter ` should call ` get_serializer_class() ` to determine default fields. ([ #3964 ] [ gh3964 ] )
398
- * Remove old django checks from tests and compat. ([ #3953 ] [ gh3953 ] )
398
+ * Remove old Django checks from tests and compat. ([ #3953 ] [ gh3953 ] )
399
399
* Support callable as the value of ` initial ` for any ` serializer.Field ` . ([ #3943 ] [ gh3943 ] )
400
400
* Prevented unnecessary distinct() call in SearchFilter. ([ #3938 ] [ gh3938 ] )
401
401
* Fix None UUID ForeignKey serialization. ([ #3936 ] [ gh3936 ] )
@@ -579,7 +579,7 @@ See the [release announcement][3.6-release].
579
579
* Fix behavior of ` allow_blank=False ` when used with ` trim_whitespace=True ` . ([ #2712 ] [ gh2712 ] )
580
580
* Fix issue with some field combinations incorrectly mapping to an invalid ` allow_blank ` argument. ([ #3011 ] [ gh3011 ] )
581
581
* Fix for output representations with prefetches and modified querysets. ([ #2704 ] [ gh2704 ] , [ #2727 ] [ gh2727 ] )
582
- * Fix assertion error when CursorPagination is provided with certains invalid query parameters. (#2920 )[ gh2920] .
582
+ * Fix assertion error when CursorPagination is provided with certain invalid query parameters. (#2920 )[ gh2920] .
583
583
* Fix ` UnicodeDecodeError ` when invalid characters included in header with ` TokenAuthentication ` . ([ #2928 ] [ gh2928 ] )
584
584
* Fix transaction rollbacks with ` @non_atomic_requests ` decorator. ([ #3016 ] [ gh3016 ] )
585
585
* Fix duplicate results issue with Oracle databases using ` SearchFilter ` . ([ #2935 ] [ gh2935 ] )
@@ -619,7 +619,7 @@ See the [release announcement][3.6-release].
619
619
* Use default reason phrases from HTTP standard. ([ #2764 ] [ gh2764 ] , [ #2763 ] [ gh2763 ] )
620
620
* Raise error when ` ModelSerializer ` used with abstract model. ([ #2757 ] [ gh2757 ] , [ #2630 ] [ gh2630 ] )
621
621
* Handle reversal of non-API view_name in ` HyperLinkedRelatedField ` ([ #2724 ] [ gh2724 ] , [ #2711 ] [ gh2711 ] )
622
- * Dont require pk strictly for related fields. ([ #2745 ] [ gh2745 ] , [ #2754 ] [ gh2754 ] )
622
+ * Don't require pk strictly for related fields. ([ #2745 ] [ gh2745 ] , [ #2754 ] [ gh2754 ] )
623
623
* Metadata detects null boolean field type. ([ #2762 ] [ gh2762 ] )
624
624
* Proper handling of depth in nested serializers. ([ #2798 ] [ gh2798 ] )
625
625
* Display viewset without paginator. ([ #2807 ] [ gh2807 ] )
@@ -1525,4 +1525,4 @@ For older release notes, [please see the version 2.x documentation][old-release-
1525
1525
[ gh5452 ] : https://github.com/encode/django-rest-framework/issues/5452
1526
1526
[ gh5342 ] : https://github.com/encode/django-rest-framework/issues/5342
1527
1527
[ gh5454 ] : https://github.com/encode/django-rest-framework/issues/5454
1528
- [ gh5482 ] : https://github.com/encode/django-rest-framework/issues/5482
1528
+ [ gh5482 ] : https://github.com/encode/django-rest-framework/issues/5482
0 commit comments