aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics
diff options
context:
space:
mode:
authorTom Christie2014-11-19 14:04:31 +0000
committerTom Christie2014-11-19 14:04:31 +0000
commitbc83dfece460b6639d915bd8fb42b3701cd91172 (patch)
tree7616b21fd6d02caef557be43a12e8d7979ee4997 /docs/topics
parentf269826a7d8a980536ffbce369be369c4df58d23 (diff)
parent51b7033e4aeeefe19012a77b09a0b23d4a52a5bc (diff)
downloaddjango-rest-framework-bc83dfece460b6639d915bd8fb42b3701cd91172.tar.bz2
Merge branch 'master' into 3.0-beta
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/3.0-announcement.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md
index 06fdc9fd..958be2d6 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -823,6 +823,11 @@ Or modify it on an individual serializer field, using the `coerce_to_string` key
The default JSON renderer will return float objects for uncoerced `Decimal` instances. This allows you to easily switch between string or float representations for decimals depending on your API design needs.
+## Miscellaneous notes.
+
+* The serializer `ChoiceField` does not currently display nested choices, as was the case in 2.4. This will be address as part of 3.1.
+* Due to the new templated form rendering, the 'widget' option is no longer valid. This means there's no easy way of using third party "autocomplete" widgets for rendering select inputs that contain a large number of choices. You'll either need to use a regular select or a plain text input. We may consider addressing this in 3.1 or 3.2 if there's sufficient demand.
+
## What's coming next.
3.0 is an incremental release, and there are several upcoming features that will build on the baseline improvements that it makes.