From c1fc6cf69c22b1d74d0e1586fd22f216444c189d Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 16 Jul 2019 20:47:12 +0200 Subject: [PATCH] Added requirement for UserAdmin.search_fields to 3.10 release notes. Closes #6808. --- docs/community/release-notes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/community/release-notes.md b/docs/community/release-notes.md index e3f3820d3..f1fe67602 100644 --- a/docs/community/release-notes.md +++ b/docs/community/release-notes.md @@ -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