aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-11-19 14:03:19 +0000
committerTom Christie2014-11-19 14:03:19 +0000
commit51b7033e4aeeefe19012a77b09a0b23d4a52a5bc (patch)
tree70e9489826db526cd2efa06b6f65409feee1b3c1
parent8586290df80ac8448d71cdb3326bc822c399cad1 (diff)
downloaddjango-rest-framework-51b7033e4aeeefe19012a77b09a0b23d4a52a5bc.tar.bz2
Further notes in 3.0 announcement
-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 90cbda4d..3c73881f 100644
--- a/docs/topics/3.0-announcement.md
+++ b/docs/topics/3.0-announcement.md
@@ -821,6 +821,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.