This commit is contained in:
2026-07-10 09:46:23 +02:00
parent e78d921671
commit 9fdb6175ac
4 changed files with 41 additions and 2 deletions
+1
View File
@@ -7,3 +7,4 @@
| 0.1.2 | 4.4.0 | 4.5.x | | 0.1.2 | 4.4.0 | 4.5.x |
| 0.1.3 | 4.4.0 | 4.5.x | | 0.1.3 | 4.4.0 | 4.5.x |
| 0.1.4 | 4.4.0 | 4.6.x | | 0.1.4 | 4.4.0 | 4.6.x |
| 0.1.5 | 4.4.0 | 4.6.x |
+1 -1
View File
@@ -5,7 +5,7 @@ class VMwareImporterConfig(PluginConfig):
name = "netbox_vmware_importer" name = "netbox_vmware_importer"
verbose_name = "VMware Importer" verbose_name = "VMware Importer"
description = "Synchronize VMware vSphere virtual machines into NetBox." description = "Synchronize VMware vSphere virtual machines into NetBox."
version = "0.1.4" version = "0.1.5"
author = "Internal NetBox Team" author = "Internal NetBox Team"
base_url = "vmware-importer" base_url = "vmware-importer"
min_version = "4.4.0" min_version = "4.4.0"
@@ -0,0 +1,38 @@
import taggit.managers
import utilities.json
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("extras", "__latest__"),
("netbox_vmware_importer", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="vcenterendpoint",
name="created",
field=models.DateTimeField(auto_now_add=True, blank=True, null=True, verbose_name="created"),
),
migrations.AlterField(
model_name="vcenterendpoint",
name="last_updated",
field=models.DateTimeField(auto_now=True, blank=True, null=True, verbose_name="last updated"),
),
migrations.AlterField(
model_name="vcenterendpoint",
name="custom_field_data",
field=models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder),
),
migrations.AddField(
model_name="vcenterendpoint",
name="tags",
field=taggit.managers.TaggableManager(
help_text="A comma-separated list of tags.",
through="extras.TaggedItem",
to="extras.Tag",
verbose_name="Tags",
),
),
]
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "netbox-vmware-importer" name = "netbox-vmware-importer"
version = "0.1.4" version = "0.1.5"
description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox." description = "NetBox plugin to synchronize VMware vSphere virtual machines into NetBox."
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"