From afce6bfb6ee122e74d1d668426c0c190008b2d1c Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Fri, 14 Aug 2026 09:20:57 -0500 Subject: [PATCH] Confirm compatibility with NetBox v4.7 Bump the maximum supported NetBox version to 4.7.x and record it in the compatibility matrix. No plugin code changes are required: the deferred search-cache flush error against Custom Object dynamic tables is fixed in NetBox core, so 4.7 support depends on a NetBox release carrying that fix. --- COMPATIBILITY.md | 1 + netbox_custom_objects/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 67087554..a0f45648 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -2,6 +2,7 @@ | Release | Minimum NetBox Version | Maximum NetBox Version | |---------|------------------------|------------------------| +| unreleased | 4.5.2 | 4.7.x | | 0.6.x | 4.5.2 | 4.6.x | | 0.5.2 | 4.5.2 | 4.6.x | | 0.5.1 | 4.5.2 | 4.6.x | diff --git a/netbox_custom_objects/__init__.py b/netbox_custom_objects/__init__.py index 839012a1..cd6d66cf 100644 --- a/netbox_custom_objects/__init__.py +++ b/netbox_custom_objects/__init__.py @@ -257,7 +257,7 @@ class CustomObjectsPluginConfig(PluginConfig): base_url = "custom-objects" # Remember to update COMPATIBILITY.md when modifying the minimum/maximum supported NetBox versions. min_version = "4.5.2" - max_version = "4.6.99" + max_version = "4.7.99" default_settings = { # The maximum number of Custom Object Types that may be created 'max_custom_object_types': 50,