aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-03-22 22:58:04 +0000
committerTom Christie2013-03-22 22:58:04 +0000
commit6111dcef5216ff12fb9353bb8c7d71b021634513 (patch)
treec1f345078b0cc3783ae3fb03980ca1e1c5d9ffca
parent9fdb661c593a3c042d7aa2cd4608ae5b81f8109c (diff)
downloaddjango-rest-framework-6111dcef5216ff12fb9353bb8c7d71b021634513.tar.bz2
Update release notes
-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 f506c610..935bd905 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
+* Serializers now support bulk create and bulk update operations.
* Regression fix: Date and time fields return date/time objects by default. Fixes regressions caused by 2.2.2. See [#743][743] for more details.
* Bugfix: Fix 500 error is OAuth not attempted with OAuthAuthentication class installed.
* `Serializer.save()` now supports arbitrary keyword args which are passed through to the object `.save()` method. Mixins use `force_insert` and `force_update` where appropriate, resulting in one less database query.