Skip to content

Commit e2d53dd

Browse files
network-scriptsKani999
authored andcommitted
NetBox v4.4 upgrade
1 parent 4e80f64 commit e2d53dd

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ A NetBox plugin that dynamically reloads plugins without requiring a server rest
1616
|----------------|---------------|
1717
| 4.2.x | 0.0.2 |
1818
| 4.3.x | 4.3.x |
19+
| 4.4.x | 4.4.x |
20+
1921

2022
**Version Format**: X.X.Y where X.X = NetBox version (e.g., 4.3) and Y = plugin version increment
2123

netbox_plugin_reloader/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class NetboxPluginReloaderConfig(PluginConfig):
2020
description = "Dynamically reload NetBox plugins without server restart"
2121
version = __version__
2222
base_url = "netbox-plugin-reloader"
23-
min_version = "4.3.0"
24-
max_version = "4.3.99"
23+
min_version = "4.4.0"
24+
max_version = "4.4.99"
2525

2626
def ready(self):
2727
"""
@@ -31,8 +31,8 @@ def ready(self):
3131
"""
3232
super().ready()
3333

34-
from core.models import ObjectType
35-
from django.apps import apps
34+
from core.models.object_types import ObjectType
35+
from django.apps.registry import apps
3636
from django.conf import settings
3737
from django.utils.translation import gettext_lazy as _
3838
from extras.forms.model_forms import CustomFieldForm, TagForm

netbox_plugin_reloader/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information."""
22

3-
__version__ = "4.3.1"
3+
__version__ = "4.4.0"

0 commit comments

Comments
 (0)