mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-17 03:51:03 +03:00
Version 2.1.15
This commit is contained in:
parent
4223786ddc
commit
ad671022e1
13
README.md
13
README.md
|
@ -81,6 +81,19 @@ To run the tests.
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### 2.1.15
|
||||||
|
|
||||||
|
**Date**: 3rd Jan 2013
|
||||||
|
|
||||||
|
* Added `PATCH` support.
|
||||||
|
* Added `RetrieveUpdateAPIView`.
|
||||||
|
* Relation changes are now persisted in `save` instead of in `.restore_object`.
|
||||||
|
* Remove unused internal `save_m2m` flag on `ModelSerializer.save()`.
|
||||||
|
* Tweak behavior of hyperlinked fields with an explicit format suffix.
|
||||||
|
* Relation changes are now persisted in `.save()` instead of in `.restore_object()`.
|
||||||
|
* Bugfix: Fix issue with FileField raising exception instead of validation error when files=None.
|
||||||
|
* Bugfix: Partial updates should not set default values if field is not included.
|
||||||
|
|
||||||
### 2.1.14
|
### 2.1.14
|
||||||
|
|
||||||
**Date**: 31st Dec 2012
|
**Date**: 31st Dec 2012
|
||||||
|
|
|
@ -16,7 +16,9 @@ Major version numbers (x.0.0) are reserved for project milestones. No major poi
|
||||||
|
|
||||||
## 2.1.x series
|
## 2.1.x series
|
||||||
|
|
||||||
### Master
|
### 2.1.15
|
||||||
|
|
||||||
|
**Date**: 3rd Jan 2013
|
||||||
|
|
||||||
* Added `PATCH` support.
|
* Added `PATCH` support.
|
||||||
* Added `RetrieveUpdateAPIView`.
|
* Added `RetrieveUpdateAPIView`.
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
__version__ = '2.1.14'
|
__version__ = '2.1.15'
|
||||||
|
|
||||||
VERSION = __version__ # synonym
|
VERSION = __version__ # synonym
|
||||||
|
|
Loading…
Reference in New Issue
Block a user