aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics
diff options
context:
space:
mode:
authorPierre Dulac2013-03-01 11:50:11 +0100
committerPierre Dulac2013-03-01 11:50:11 +0100
commitaed3c13471deae6b2837b3799b4ca6615a5d172c (patch)
tree13f3f0a7cb36923dd9dcd84374af1a93f6b30a24 /docs/topics
parentd8f455bc0ff920e9e0cd1952f58b5a0eccdc2683 (diff)
parent282af6057f30b5af4665d687200ee1ebf82fcf00 (diff)
downloaddjango-rest-framework-aed3c13471deae6b2837b3799b4ca6615a5d172c.tar.bz2
Merge branch 'master' into oauth2-authentication
Conflicts: rest_framework/tests/authentication.py
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/release-notes.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index 06dc79a6..43499c9a 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -42,6 +42,7 @@ You can determine your currently installed version using `pip freeze`:
### Master
+* Request authentication is no longer lazily evaluated, instead authentication is always run, which results in more consistent, obvious behavior. Eg. Supplying bad auth credentials will now always return an error response, even if no permissions are set on the view.
* Bugfix for serializer data being uncacheable with pickle protocol 0.
* Bugfixes for model field validation edge-cases.