فهرست منبع

Changelog for #8894, #8998, #9122; PEP8 fix

jeremystretch 3 سال پیش
والد
کامیت
da1aabdfc1
2فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 3 0
      docs/release-notes/version-3.2.md
  2. 1 1
      netbox/users/api/serializers.py

+ 3 - 0
docs/release-notes/version-3.2.md

@@ -4,6 +4,9 @@
 
 ### Enhancements
 
+* [#8894](https://github.com/netbox-community/netbox/issues/8894) - Include full names when listing users
+* [#8998](https://github.com/netbox-community/netbox/issues/8998) - Enable filtering racks & reservations by site group
+* [#9122](https://github.com/netbox-community/netbox/issues/9122) - Introduce `clearcache` management command & clear cache during upgrade
 * [#9278](https://github.com/netbox-community/netbox/issues/9278) - Linkify device types count under manufacturers list
 
 ### Bug Fixes

+ 1 - 1
netbox/users/api/serializers.py

@@ -44,7 +44,7 @@ class UserSerializer(ValidatedModelSerializer):
         user.save()
 
         return user
-    
+
     def get_display(self, obj):
         if full_name := obj.get_full_name():
             return f"{obj.username} ({full_name})"