Added requirement for UserAdmin.search_fields to 3.10 release notes.

Closes #6808.
This commit is contained in:
Carlton Gibson 2019-07-16 20:47:12 +02:00
parent a4c2d4f0d5
commit c1fc6cf69c

View File

@ -57,6 +57,11 @@ You can determine your currently installed version using `pip show`:
* Don't strict disallow redundant `SerializerMethodField` field name arguments.
* Don't render extra actions in browable API if not authenticated.
* Strip null characters from search parameters.
* Allowed autocomplete for User lookup in the `TokenAdmin`.
**Note**: If you're using a custom user model, ensure your user admin
declared the `search_fields` property, in order to work with `TokenAdmin`
autocomplete fields.
## 3.9.x series