From 7e40f40248b58377f3aca916f0f4e5f5e7195928 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Fri, 8 Aug 2025 15:33:37 -0500 Subject: [PATCH] Closes #20060: Update v4.3.5 release docs to note impact of fixing #18900 --- docs/release-notes/version-4.3.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/release-notes/version-4.3.md b/docs/release-notes/version-4.3.md index a217725db..dc426ba38 100644 --- a/docs/release-notes/version-4.3.md +++ b/docs/release-notes/version-4.3.md @@ -16,6 +16,9 @@ * [#19934](https://github.com/netbox-community/netbox/issues/19934) - Added missing description field to tenant bulk edit form * [#19956](https://github.com/netbox-community/netbox/issues/19956) - Prevent duplicate deletion records in changelog from cascading deletions +!!! note "Plugin Developer Advisory" + The fix for bug [#18900](https://github.com/netbox-community/netbox/issues/18900) now raises explicit exceptions when API endpoints attempt to paginate unordered querysets. Plugin maintainers should review their API viewsets to ensure proper queryset ordering is applied before pagination, either by using `.order_by()` on querysets or by setting `ordering` in model Meta classes. Previously silent pagination issues in plugin code will now raise `QuerySetNotOrdered` exceptions and may require updates to maintain compatibility. + ## v4.3.4 (2025-07-15) ### Enhancements