From 53ba12fb8d6a97197c5a0c8eaa11f667812c5c95 Mon Sep 17 00:00:00 2001 From: Louis Date: Fri, 10 Jul 2026 09:31:37 +0200 Subject: [PATCH] Fix NetBox migration dependencies --- COMPATIBILITY.md | 1 + netbox_vmware_importer/__init__.py | 2 +- netbox_vmware_importer/migrations/0001_initial.py | 6 +++--- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/COMPATIBILITY.md b/COMPATIBILITY.md index 4468a61..f2123ab 100644 --- a/COMPATIBILITY.md +++ b/COMPATIBILITY.md @@ -5,3 +5,4 @@ | 0.1.0 | 4.4.0 | 4.5.x | | 0.1.1 | 4.4.0 | 4.5.x | | 0.1.2 | 4.4.0 | 4.5.x | +| 0.1.3 | 4.4.0 | 4.5.x | diff --git a/netbox_vmware_importer/__init__.py b/netbox_vmware_importer/__init__.py index 7907bf1..8820ff0 100644 --- a/netbox_vmware_importer/__init__.py +++ b/netbox_vmware_importer/__init__.py @@ -5,7 +5,7 @@ class VMwareImporterConfig(PluginConfig): name = "netbox_vmware_importer" verbose_name = "VMware Importer" description = "Synchronize VMware vSphere virtual machines into NetBox." - version = "0.1.2" + version = "0.1.3" author = "Internal NetBox Team" base_url = "vmware-importer" min_version = "4.4.0" diff --git a/netbox_vmware_importer/migrations/0001_initial.py b/netbox_vmware_importer/migrations/0001_initial.py index e1418b3..ad0dc19 100644 --- a/netbox_vmware_importer/migrations/0001_initial.py +++ b/netbox_vmware_importer/migrations/0001_initial.py @@ -7,9 +7,9 @@ class Migration(migrations.Migration): initial = True dependencies = [ - ("dcim", "0001_initial"), - ("tenancy", "0001_initial"), - ("virtualization", "0001_initial"), + ("dcim", "__latest__"), + ("tenancy", "__latest__"), + ("virtualization", "__latest__"), ] operations = [ diff --git a/pyproject.toml b/pyproject.toml index 6440039..45916f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "netbox-vmware-importer" -version = "0.1.2" +version = "0.1.3" description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox." readme = "README.md" requires-python = ">=3.12"