Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
be5e4b4
Set version number for 3.7.0 release
carltongibson Sep 20, 2017
cecaa27
Rename release notes section
carltongibson Sep 20, 2017
8d7650c
Add release note for #5273
carltongibson Sep 20, 2017
cb09566
Add release note for #5440
carltongibson Sep 22, 2017
ec83df3
Add release note for #5265
carltongibson Sep 25, 2017
dbc0ce0
Add release note for #5250
carltongibson Sep 25, 2017
4aa711c
Add release notes for #5170
carltongibson Sep 25, 2017
73da8e9
Add release notes for #5443
carltongibson Sep 26, 2017
ebdb66d
Add release notes for #5448
carltongibson Sep 26, 2017
d1c740c
Add release notes for #5452
carltongibson Sep 26, 2017
fd027b2
Add release not for #5342
carltongibson Sep 26, 2017
94f074e
Add release notes for 5454
carltongibson Sep 27, 2017
7d6d7b6
Add release notes for #5058 & #5457
carltongibson Sep 27, 2017
d76cca3
Release notes for merged 3.6.5 milestone tickets
carltongibson Sep 28, 2017
18a2e64
Add release notes for #5469
carltongibson Oct 2, 2017
2ea1625
Add release notes from AM 2ndOct
carltongibson Oct 2, 2017
dde59ea
Add final changes to the release notes.
carltongibson Oct 5, 2017
6601f5e
Add date and milestone link
carltongibson Oct 5, 2017
d20d701
Update translations from transifex
carltongibson Oct 5, 2017
0cbc14a
Begin releae anouncement
carltongibson Oct 5, 2017
1dadb1c
Add release note for #5482
carltongibson Oct 5, 2017
de4ec58
Merge branch 'master' into version-3.7
lovelydinosaur Oct 6, 2017
51ceabb
3.7 release announcement & related docs.
lovelydinosaur Oct 6, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Release notes for merged 3.6.5 milestone tickets
Tickets migrated to 3.7.0 milestone.
  • Loading branch information
carltongibson committed Oct 5, 2017
commit d76cca30273d845f53594598595dd7d4e7dc52cf
34 changes: 33 additions & 1 deletion docs/topics/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ You can determine your currently installed version using `pip freeze`:

* Fix `DjangoModelPermissions` to ensure user authentication before calling the view's `get_queryset()` method. As a side effect, this changes the order of the HTTP method permissions and authentication checks, and 405 responses will only be returned when authenticated. If you want to replicate the old behavior, see the PR for details. [#5376][gh5376]
* Deprecated `exclude_from_schema` on `APIView` and `api_view` decorator. Set `schema = None` or `@schema(None)` as appropriate. [#5422][gh5422]
* Timezone-aware `DateTimeField`s now respect active or default `timezone` during serialization, instead of always using UTC.
* Timezone-aware `DateTimeField`s now respect active or default `timezone` during serialization, instead of always using UTC. [#5435][gh5435]

Resolves inconsistency whereby instances were serialised with supplied datetime for `create` but UTC for `retrieve`. [#3732][gh3732]

Expand All @@ -67,9 +67,41 @@ You can determine your currently installed version using `pip freeze`:
* Updated test matrix to add Django 2.0 and drop Django 1.8 & 1.9
**BC Change**: This removes Django 1.8 and Django 1.9 from Django REST Framework supported versions. [#5457][gh5457]
* Fixed a deprecation warning in serializers.ModelField [#5058][gh5058]
* Added a more explicit error message when `get_queryset` returned `None` [#5348][gh5348]
* Fix docs for Response `data` description [#5361][gh5361]
* Fix __pychache__/.pyc excludes when packaging [#5373][gh5373]
* Fix default value handling for dotted sources [#5375][gh5375]
* Ensure content_type is set when passing empty body to RequestFactory [#5351][gh5351]
* Fix ErrorDetail Documentation [#5380][gh5380]
* Allow optional content in the generic content form [#5372][gh5372]
* Updated supported values for the NullBooleanField [#5387][gh5387]
* Fix ModelSerializer custom named fields with source on model [#5388][gh5388]
* Fixed the MultipleFieldLookupMixin documentation example to properly check for object level permission [#5398][gh5398]
* Update get_object() example in permissions.md [#5401][gh5401]
* Fix authtoken managment command [#5415][gh5415]
* Fix schema generation markdown [#5421][gh5421]
* Allow `ChoiceField.choices` to be set dynamically [#5426][gh5426]
* Add the project layout to the quickstart [#5434][gh5434]



<!-- 3.7.0 -->
[gh5435]: https://github.com/encode/django-rest-framework/issues/5435
[gh5434]: https://github.com/encode/django-rest-framework/issues/5434
[gh5426]: https://github.com/encode/django-rest-framework/issues/5426
[gh5421]: https://github.com/encode/django-rest-framework/issues/5421
[gh5415]: https://github.com/encode/django-rest-framework/issues/5415
[gh5401]: https://github.com/encode/django-rest-framework/issues/5401
[gh5398]: https://github.com/encode/django-rest-framework/issues/5398
[gh5388]: https://github.com/encode/django-rest-framework/issues/5388
[gh5387]: https://github.com/encode/django-rest-framework/issues/5387
[gh5372]: https://github.com/encode/django-rest-framework/issues/5372
[gh5380]: https://github.com/encode/django-rest-framework/issues/5380
[gh5351]: https://github.com/encode/django-rest-framework/issues/5351
[gh5375]: https://github.com/encode/django-rest-framework/issues/5375
[gh5373]: https://github.com/encode/django-rest-framework/issues/5373
[gh5361]: https://github.com/encode/django-rest-framework/issues/5361
[gh5348]: https://github.com/encode/django-rest-framework/issues/5348
[gh5058]: https://github.com/encode/django-rest-framework/issues/5058
[gh5457]: https://github.com/encode/django-rest-framework/issues/5457
[gh5376]: https://github.com/encode/django-rest-framework/issues/5376
Expand Down