diff options
| author | Tom Christie | 2013-02-12 12:14:29 +0000 | 
|---|---|---|
| committer | Tom Christie | 2013-02-12 12:14:29 +0000 | 
| commit | 112753917d7a9a1effe6e64d9344de3466425733 (patch) | |
| tree | 268ebe892652922fbf8189b5ad66379366df52b9 /docs | |
| parent | 36cdefbb4d689e511aa53b46f05ca29106960847 (diff) | |
| download | django-rest-framework-112753917d7a9a1effe6e64d9344de3466425733.tar.bz2 | |
Update release notes
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/release-notes.md | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 4317b83c..63f8539a 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -28,8 +28,14 @@ You can determine your currently installed version using `pip freeze`:  ### Master +* Python 3 support.  * Added a `post_save()` hook to the generic views.  * Allow serializers to handle dicts as well as objects. +* Deprecate `ManyRelatedField()` syntax in favor of `RelatedField(many=True)` +* Deprecate `null=True` on relations in favor of `required=False`. +* Deprecate `blank=True` on CharFields, just use `required=False`. +* Deprecate optional `obj` argument in permissions checks in favor of `has_object_permission`. +* Bugfix: Allow serializer output to be cached.  * Bugfix: Fix styling on browsable API login.  * Bugfix: Fix issue with deserializing empty to-many relations.  * Bugfix: Ensure model field validation is still applied for ModelSerializer subclasses with an custom `.restore_object()` method.  | 
