aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/api-guide/generic-views.md3
-rw-r--r--docs/topics/credits.md2
-rw-r--r--docs/topics/release-notes.md2
3 files changed, 6 insertions, 1 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index cd1bc7a1..67853ed0 100755
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -92,7 +92,8 @@ May be overridden to provide dynamic behavior such as returning a queryset that
For example:
def get_queryset(self):
- return self.user.accounts.all()
+ user = self.request.user
+ return user.accounts.all()
#### `get_object(self)`
diff --git a/docs/topics/credits.md b/docs/topics/credits.md
index a7c09b5b..94760c74 100644
--- a/docs/topics/credits.md
+++ b/docs/topics/credits.md
@@ -143,6 +143,7 @@ The following people have helped make REST framework great.
* Ethan Freman - [mindlace]
* David Sanders - [davesque]
* Philip Douglas - [freakydug]
+* Igor Kalat - [trwired]
Many thanks to everyone who's contributed to the project.
@@ -322,3 +323,4 @@ You can also contact [@_tomchristie][twitter] directly on twitter.
[mindlace]: https://github.com/mindlace
[davesque]: https://github.com/davesque
[freakydug]: https://github.com/freakydug
+[trwired]: https://github.com/trwired
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index b08ac058..4fecbf1f 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -45,6 +45,8 @@ You can determine your currently installed version using `pip freeze`:
* Added `trailing_slash` option to routers.
* Include support for `HttpStreamingResponse`.
* Support wider range of default serializer validation when used with custom model fields.
+* UTF-8 Support for browsable API descriptions.
+* OAuth2 provider usez timezone aware datetimes when supported.
* Bugfix: Return error correctly when OAuth non-existent consumer occurs.
* Bugfix: Allow `FileUploadParser` to correctly filename if provided as URL kwarg.
* Bugfix: Fix `ScopedRateThrottle`.