diff --git a/topics/release-notes/index.html b/topics/release-notes/index.html index 186c622c7..f41378fb8 100644 --- a/topics/release-notes/index.html +++ b/topics/release-notes/index.html @@ -431,8 +431,19 @@
Date: December 2014.
+request.user is made available to response middleware. (#2155)Client.logout() also cancels any existing force_authenticate. (#2218, #2259)min_length message for CharField. (#2255)UnicodeDecodeError, which can occur on serializer repr. (#2270, #2279)SlugRelatedField raising UnicodeEncodeError when used as a multiple choice input. (#2290)Date: December 2014.
+Date: 11th December 2014.
create() fails. (#2013)For older release notes, please see the GitHub repo.
+ + + + diff --git a/tutorial/4-authentication-and-permissions/index.html b/tutorial/4-authentication-and-permissions/index.html index 7585afff6..f4661bde8 100644 --- a/tutorial/4-authentication-and-permissions/index.html +++ b/tutorial/4-authentication-and-permissions/index.html @@ -555,7 +555,7 @@ class IsOwnerOrReadOnly(permissions.BasePermission): }We can make a successful request by including the username and password of one of the users we created earlier.
-http POST -a tom:password http://127.0.0.1:8000/snippets/ code="print 789"
+http -a tom:password POST http://127.0.0.1:8000/snippets/ code="print 789"
{
"id": 5,