diff options
| author | Tom Christie | 2012-11-05 12:51:04 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-11-05 12:51:04 +0000 |
| commit | 33be4b43b95273da117f6896adc7814aaedf43fa (patch) | |
| tree | ac203801b75a0c4681d0b44d1626d95c87c5bb47 /docs/topics | |
| parent | ccd5f29510bd39e85ea8267836e42545370fff1e (diff) | |
| download | django-rest-framework-33be4b43b95273da117f6896adc7814aaedf43fa.tar.bz2 | |
`queryset` argument is now optional on writable model fields.
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/release-notes.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 6c0a7d3c..6e7008f1 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -11,9 +11,11 @@ **Warning**: Please read [this thread][2.1.0-notes] regarding the `instance` and `data` keyword args before updating to 2.1.0. * **Serializer `instance` and `data` keyword args have their position swapped.** +* `queryset` argument is now optional on writable model fields. * Support Django's cache framework. * Minor field improvements. (Don't stringify dicts, more robust many-pk fields.) -* Bugfixes (Support choice field in Browseable API) +* Bugfix: Support choice field in Browseable API. +* Bugfix: Related fields with `read_only=True` do not require a `queryset` argument. ## 2.0.2 |
