aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/release-notes.md
diff options
context:
space:
mode:
authorTom Christie2013-03-06 04:25:35 -0800
committerTom Christie2013-03-06 04:25:35 -0800
commit6135df56c68a34c61ca8a0d0b2d450502cbc3c75 (patch)
tree0724ec928119877e48682089a996ba99b287947b /docs/topics/release-notes.md
parent17e0ff0fcde23f4bc6734b75f7fff734ae77c26d (diff)
parentd260f1ec15d5aa3085fa74118382bcf2fd752dca (diff)
downloaddjango-rest-framework-6135df56c68a34c61ca8a0d0b2d450502cbc3c75.tar.bz2
Merge pull request #703 from tomchristie/datetime-formats
Datetime formats
Diffstat (limited to 'docs/topics/release-notes.md')
-rw-r--r--docs/topics/release-notes.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index 352b1630..df66cb35 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -42,7 +42,8 @@ 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.
+* Support for custom input and output formats for `DateField`, `DateTimeField` and `TimeField`.
+* Cleanup: 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.
* Bugfix for authtoken migration while using a custom user model and south.