From ebada4bf72ad5bebae8d52c53cdc46a41af28167 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 31 Dec 2025 10:42:47 -0500 Subject: [PATCH] Closes #21001: Annotate plugin filterset registration in v4.5 release notes (#21058) --- docs/release-notes/version-4.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/release-notes/version-4.5.md b/docs/release-notes/version-4.5.md index 1b777b0e2..2efffd47a 100644 --- a/docs/release-notes/version-4.5.md +++ b/docs/release-notes/version-4.5.md @@ -22,7 +22,7 @@ #### Lookup Modifiers in Filter Forms ([#7604](https://github.com/netbox-community/netbox/issues/7604)) -Most object list filters within the UI have been extended to include optional lookup modifiers to support more complex queries. For instance, filters for numeric values now include a dropdown where a user can select "less than," "greater than," or "not" in addition to the default equivalency match. The specific modifiers available depend on the type of each filter. +Most object list filters within the UI have been extended to include optional lookup modifiers to support more complex queries. For instance, filters for numeric values now include a dropdown where a user can select "less than," "greater than," or "not" in addition to the default equivalency match. The specific modifiers available depend on the type of each filter. Plugins can register their own filtersets using the `register_filterset()` decorator to enable this new functionality. (Note that this feature does not introduce any new filters. Rather, it makes available in the UI filters which already exist.)