netbox-plugin-dns 1.0.5__tar.gz → 1.0.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of netbox-plugin-dns might be problematic. Click here for more details.

Files changed (136) hide show
  1. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/PKG-INFO +1 -1
  2. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/__init__.py +1 -1
  3. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/nested_serializers.py +1 -1
  4. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/contact.py +1 -1
  5. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/nameserver.py +1 -1
  6. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/record.py +1 -1
  7. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/record_template.py +2 -1
  8. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/registrar.py +1 -1
  9. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/view.py +1 -1
  10. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/zone.py +2 -1
  11. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/zone_template.py +2 -1
  12. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/choices/record.py +1 -1
  13. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/choices/zone.py +1 -1
  14. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/fields/address.py +1 -1
  15. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/fields/network.py +1 -1
  16. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/fields/rfc2317.py +4 -1
  17. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/contact.py +1 -1
  18. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/nameserver.py +1 -1
  19. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/record.py +1 -1
  20. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/record_template.py +1 -1
  21. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/registrar.py +1 -1
  22. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/view.py +1 -1
  23. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/zone.py +1 -1
  24. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/zone_template.py +1 -1
  25. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/contact.py +1 -1
  26. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/nameserver.py +14 -3
  27. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/record.py +2 -2
  28. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/record_template.py +1 -1
  29. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/registrar.py +1 -1
  30. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/view.py +1 -1
  31. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/zone.py +17 -6
  32. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/zone_template.py +1 -1
  33. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/mixins/object_modification.py +3 -1
  34. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/contact.py +1 -1
  35. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/nameserver.py +1 -1
  36. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/record.py +4 -1
  37. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/record_template.py +1 -1
  38. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/registrar.py +1 -1
  39. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/view.py +1 -1
  40. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/zone.py +9 -8
  41. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/zone_template.py +2 -1
  42. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/contact.py +1 -1
  43. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/nameserver.py +1 -1
  44. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/record.py +1 -1
  45. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/record_template.py +1 -1
  46. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/registrar.py +1 -1
  47. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/view.py +1 -1
  48. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/zone.py +1 -1
  49. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/zone_template.py +1 -1
  50. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/validators/dns_name.py +1 -1
  51. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/validators/dns_value.py +1 -1
  52. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/validators/rfc2317.py +1 -1
  53. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/contact.py +2 -1
  54. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/nameserver.py +2 -1
  55. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/record.py +1 -1
  56. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/record_template.py +1 -1
  57. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/registrar.py +1 -1
  58. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/view.py +1 -1
  59. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/zone.py +1 -1
  60. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/zone_template.py +1 -1
  61. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/pyproject.toml +1 -1
  62. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/LICENSE +0 -0
  63. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/README.md +0 -0
  64. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers.py +0 -0
  65. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/serializers_/__init__.py +0 -0
  66. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/urls.py +0 -0
  67. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/api/views.py +0 -0
  68. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/apps.py +0 -0
  69. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/choices/__init__.py +0 -0
  70. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/fields/__init__.py +0 -0
  71. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/filtersets/__init__.py +0 -0
  72. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/forms/__init__.py +0 -0
  73. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/graphql/__init__.py +0 -0
  74. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/graphql/filters.py +0 -0
  75. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/graphql/schema.py +0 -0
  76. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/graphql/types.py +0 -0
  77. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/management/commands/cleanup_database.py +0 -0
  78. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/management/commands/cleanup_rrset_ttl.py +0 -0
  79. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/management/commands/setup_coupling.py +0 -0
  80. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/management/commands/update_soa.py +0 -0
  81. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -0
  82. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +0 -0
  83. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0002_contact_description_registrar_description.py +0 -0
  84. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0003_default_view.py +0 -0
  85. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0004_create_and_assign_default_view.py +0 -0
  86. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0005_alter_zone_view_not_null.py +0 -0
  87. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0006_templating.py +0 -0
  88. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0020_netbox_3_4.py +0 -0
  89. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0021_record_ip_address.py +0 -0
  90. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0022_search.py +0 -0
  91. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0023_alter_record_value.py +0 -0
  92. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0024_tenancy.py +0 -0
  93. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0025_ipam_coupling_cf.py +0 -0
  94. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0026_domain_registration.py +0 -0
  95. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0027_alter_registrar_iana_id.py +0 -0
  96. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0028_rfc2317_fields.py +0 -0
  97. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/0029_record_fqdn.py +0 -0
  98. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/migrations/__init__.py +0 -0
  99. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/mixins/__init__.py +0 -0
  100. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/models/__init__.py +0 -0
  101. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/navigation.py +0 -0
  102. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/signals/__init__.py +0 -0
  103. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/signals/ipam_coupling.py +0 -0
  104. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/tables/__init__.py +0 -0
  105. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/template_content.py +0 -0
  106. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/contact.html +0 -0
  107. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/nameserver.html +0 -0
  108. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/record/managed.html +0 -0
  109. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/record/related.html +0 -0
  110. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/record.html +0 -0
  111. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/recordtemplate.html +0 -0
  112. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/registrar.html +0 -0
  113. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/related_dns_objects.html +0 -0
  114. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/view.html +0 -0
  115. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/base.html +0 -0
  116. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/child.html +0 -0
  117. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/child_zone.html +0 -0
  118. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/managed_record.html +0 -0
  119. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/record.html +0 -0
  120. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/registration.html +0 -0
  121. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +0 -0
  122. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zone.html +0 -0
  123. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/templates/netbox_dns/zonetemplate.html +0 -0
  124. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/__init__.py +0 -0
  125. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/contact.py +0 -0
  126. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/nameserver.py +0 -0
  127. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/record.py +0 -0
  128. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/record_template.py +0 -0
  129. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/registrar.py +0 -0
  130. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/view.py +0 -0
  131. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/zone.py +0 -0
  132. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/urls/zone_template.py +0 -0
  133. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/utilities/__init__.py +0 -0
  134. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/utilities/ipam_coupling.py +0 -0
  135. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/validators/__init__.py +0 -0
  136. {netbox_plugin_dns-1.0.5 → netbox_plugin_dns-1.0.6}/netbox_dns/views/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: netbox-plugin-dns
3
- Version: 1.0.5
3
+ Version: 1.0.6
4
4
  Summary: NetBox DNS is a NetBox plugin for managing DNS data.
5
5
  Home-page: https://github.com/peteeckel/netbox-plugin-dns
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  from netbox.plugins import PluginConfig
2
2
 
3
- __version__ = "1.0.5"
3
+ __version__ = "1.0.6"
4
4
 
5
5
 
6
6
  class DNSConfig(PluginConfig):
@@ -6,7 +6,7 @@ from netbox_dns.models import Zone, Record, ZoneTemplate, RecordTemplate
6
6
  from netbox_dns.api.serializers_.view import ViewSerializer
7
7
 
8
8
 
9
- __ALL__ = (
9
+ __all__ = (
10
10
  "NestedZoneSerializer",
11
11
  "NestedRecordSerializer",
12
12
  "NestedZoneTemplateSerializer",
@@ -5,7 +5,7 @@ from netbox.api.serializers import NetBoxModelSerializer
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactSerializer",)
8
+ __all__ = ("ContactSerializer",)
9
9
 
10
10
 
11
11
  class ContactSerializer(NetBoxModelSerializer):
@@ -8,7 +8,7 @@ from netbox_dns.models import NameServer
8
8
  from ..nested_serializers import NestedZoneSerializer
9
9
 
10
10
 
11
- __ALL__ = ("NameServerSerializer",)
11
+ __all__ = ("NameServerSerializer",)
12
12
 
13
13
 
14
14
  class NameServerSerializer(NetBoxModelSerializer):
@@ -9,7 +9,7 @@ from netbox_dns.models import Record
9
9
  from ..nested_serializers import NestedZoneSerializer, NestedRecordSerializer
10
10
 
11
11
 
12
- __ALL__ = ("RecordSerializer",)
12
+ __all__ = ("RecordSerializer",)
13
13
 
14
14
 
15
15
  class RecordSerializer(NetBoxModelSerializer):
@@ -7,7 +7,8 @@ from netbox_dns.models import RecordTemplate
7
7
 
8
8
  from ..nested_serializers import NestedZoneTemplateSerializer
9
9
 
10
- __ALL__ = ("RecordTemplateSerializer",)
10
+
11
+ __all__ = ("RecordTemplateSerializer",)
11
12
 
12
13
 
13
14
  class RecordTemplateSerializer(NetBoxModelSerializer):
@@ -5,7 +5,7 @@ from netbox.api.serializers import NetBoxModelSerializer
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarSerializer",)
8
+ __all__ = ("RegistrarSerializer",)
9
9
 
10
10
 
11
11
  class RegistrarSerializer(NetBoxModelSerializer):
@@ -6,7 +6,7 @@ from tenancy.api.serializers_.tenants import TenantSerializer
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewSerializer",)
9
+ __all__ = ("ViewSerializer",)
10
10
 
11
11
 
12
12
  class ViewSerializer(NetBoxModelSerializer):
@@ -13,7 +13,8 @@ from ..nested_serializers import NestedZoneSerializer
13
13
 
14
14
  from netbox_dns.models import Zone
15
15
 
16
- __ALL__ = ("NameServerSerializer",)
16
+
17
+ __all__ = ("ZoneSerializer",)
17
18
 
18
19
 
19
20
  class ZoneSerializer(NetBoxModelSerializer):
@@ -10,7 +10,8 @@ from .nameserver import NameServerSerializer
10
10
  from .registrar import RegistrarSerializer
11
11
  from .contact import ContactSerializer
12
12
 
13
- __ALL__ = ("ZoneTemplateSerializer",)
13
+
14
+ __all__ = ("ZoneTemplateSerializer",)
14
15
 
15
16
 
16
17
  class ZoneTemplateSerializer(NetBoxModelSerializer):
@@ -9,7 +9,7 @@ def initialize_choice_names(cls):
9
9
  return cls
10
10
 
11
11
 
12
- __ALL__ = (
12
+ __all__ = (
13
13
  "RecordTypeChoices",
14
14
  "RecordClassChoices",
15
15
  "RecordStatusChoices",
@@ -1,7 +1,7 @@
1
1
  from utilities.choices import ChoiceSet
2
2
 
3
3
 
4
- __ALL__ = ("ZoneStatusChoices",)
4
+ __all__ = ("ZoneStatusChoices",)
5
5
 
6
6
 
7
7
  class ZoneStatusChoices(ChoiceSet):
@@ -5,7 +5,7 @@ from django.core.exceptions import ValidationError
5
5
  from netaddr import AddrFormatError, IPAddress
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "AddressFormField",
10
10
  "AddressField",
11
11
  )
@@ -6,7 +6,7 @@ from django.core.exceptions import ValidationError
6
6
  from netaddr import AddrFormatError, IPNetwork
7
7
 
8
8
 
9
- __ALL__ = ()
9
+ __all__ = ("NetworkField",)
10
10
 
11
11
 
12
12
  class NetContains(Lookup):
@@ -10,7 +10,10 @@ from .network import NetContains, NetContained, NetOverlap, NetMaskLength
10
10
  INVALID_RFC2317 = "RFC2317 requires an IPv4 prefix with a length of at least 25 bits."
11
11
 
12
12
 
13
- __ALL__ = ()
13
+ __all__ = (
14
+ "RFC2317NetworkField",
15
+ "RFC2317NetworkFormField",
16
+ )
14
17
 
15
18
 
16
19
  class RFC2317NetworkFormField(forms.Field):
@@ -5,7 +5,7 @@ from netbox.filtersets import NetBoxModelFilterSet
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactFilterSet",)
8
+ __all__ = ("ContactFilterSet",)
9
9
 
10
10
 
11
11
  class ContactFilterSet(NetBoxModelFilterSet):
@@ -7,7 +7,7 @@ from tenancy.filtersets import TenancyFilterSet
7
7
  from netbox_dns.models import NameServer, Zone
8
8
 
9
9
 
10
- __ALL__ = ("NameServerFilterSet",)
10
+ __all__ = ("NameServerFilterSet",)
11
11
 
12
12
 
13
13
  class NameServerFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -13,7 +13,7 @@ from netbox_dns.models import View, Zone, Record
13
13
  from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
14
14
 
15
15
 
16
- __ALL__ = ("RecordFilterSet",)
16
+ __all__ = ("RecordFilterSet",)
17
17
 
18
18
 
19
19
  class RecordFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -8,7 +8,7 @@ from netbox_dns.models import RecordTemplate, ZoneTemplate
8
8
  from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
9
9
 
10
10
 
11
- __ALL__ = ("RecordTemplateFilterSet",)
11
+ __all__ = ("RecordTemplateFilterSet",)
12
12
 
13
13
 
14
14
  class RecordTemplateFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -5,7 +5,7 @@ from netbox.filtersets import NetBoxModelFilterSet
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarFilterSet",)
8
+ __all__ = ("RegistrarFilterSet",)
9
9
 
10
10
 
11
11
  class RegistrarFilterSet(NetBoxModelFilterSet):
@@ -6,7 +6,7 @@ from tenancy.filtersets import TenancyFilterSet
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewFilterSet",)
9
+ __all__ = ("ViewFilterSet",)
10
10
 
11
11
 
12
12
  class ViewFilterSet(NetBoxModelFilterSet, TenancyFilterSet):
@@ -11,7 +11,7 @@ from netbox_dns.models import View, Zone, Registrar, Contact, NameServer
11
11
  from netbox_dns.choices import ZoneStatusChoices
12
12
 
13
13
 
14
- __ALL__ = ("ZoneFilterSet",)
14
+ __all__ = ("ZoneFilterSet",)
15
15
 
16
16
 
17
17
  class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -14,7 +14,7 @@ from netbox_dns.models import (
14
14
  )
15
15
 
16
16
 
17
- __ALL__ = ("ZoneTemplateFilterSet",)
17
+ __all__ = ("ZoneTemplateFilterSet",)
18
18
 
19
19
 
20
20
  class ZoneTemplateFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
@@ -12,7 +12,7 @@ from utilities.forms.rendering import FieldSet
12
12
  from netbox_dns.models import Contact
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "ContactForm",
17
17
  "ContactFilterForm",
18
18
  "ContactImportForm",
@@ -11,16 +11,17 @@ from utilities.forms.fields import (
11
11
  TagFilterField,
12
12
  CSVModelChoiceField,
13
13
  DynamicModelChoiceField,
14
+ DynamicModelMultipleChoiceField,
14
15
  )
15
16
  from utilities.forms.rendering import FieldSet
16
17
  from tenancy.models import Tenant
17
18
  from tenancy.forms import TenancyForm, TenancyFilterForm
18
19
 
19
- from netbox_dns.models import NameServer
20
+ from netbox_dns.models import NameServer, Zone
20
21
  from netbox_dns.utilities import name_to_unicode
21
22
 
22
23
 
23
- __ALL__ = (
24
+ __all__ = (
24
25
  "NameServerForm",
25
26
  "NameServerFilterForm",
26
27
  "NameServerImportForm",
@@ -50,6 +51,16 @@ class NameServerForm(TenancyForm, NetBoxModelForm):
50
51
  class NameServerFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
51
52
  model = NameServer
52
53
 
54
+ zone_id = DynamicModelMultipleChoiceField(
55
+ queryset=Zone.objects.all(),
56
+ required=False,
57
+ label="Zones",
58
+ )
59
+ soa_zone_id = DynamicModelMultipleChoiceField(
60
+ queryset=Zone.objects.all(),
61
+ required=False,
62
+ label="SOA Zones",
63
+ )
53
64
  name = forms.CharField(
54
65
  required=False,
55
66
  )
@@ -60,7 +71,7 @@ class NameServerFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
60
71
 
61
72
  fieldsets = (
62
73
  FieldSet("q", "filter_id", "tag"),
63
- FieldSet("name", "description", name="Attributes"),
74
+ FieldSet("name", "zone_id", "soa_zone_id", "description", name="Attributes"),
64
75
  FieldSet("tenant_group_id", "tenant_id", name="Tenancy"),
65
76
  )
66
77
 
@@ -24,7 +24,7 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  from netbox_dns.utilities import name_to_unicode
25
25
 
26
26
 
27
- __ALL__ = (
27
+ __all__ = (
28
28
  "RecordForm",
29
29
  "RecordFilterForm",
30
30
  "RecordImportForm",
@@ -60,7 +60,7 @@ class RecordForm(TenancyForm, NetBoxModelForm):
60
60
  label="Zone",
61
61
  )
62
62
 
63
- disable_ptr = forms.NullBooleanField(
63
+ disable_ptr = forms.BooleanField(
64
64
  label="Disable PTR",
65
65
  required=False,
66
66
  )
@@ -24,7 +24,7 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  from netbox_dns.utilities import name_to_unicode
25
25
 
26
26
 
27
- __ALL__ = (
27
+ __all__ = (
28
28
  "RecordTemplateForm",
29
29
  "RecordTemplateFilterForm",
30
30
  "RecordTemplateImportForm",
@@ -12,7 +12,7 @@ from utilities.forms.rendering import FieldSet
12
12
  from netbox_dns.models import Registrar
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "RegistrarForm",
17
17
  "RegistrarFilterForm",
18
18
  "RegistrarImportForm",
@@ -19,7 +19,7 @@ from tenancy.forms import TenancyForm, TenancyFilterForm
19
19
  from netbox_dns.models import View
20
20
 
21
21
 
22
- __ALL__ = (
22
+ __all__ = (
23
23
  "ViewForm",
24
24
  "ViewFilterForm",
25
25
  "ViewImportForm",
@@ -39,7 +39,7 @@ from netbox_dns.fields import RFC2317NetworkFormField
39
39
  from netbox_dns.validators import validate_ipv4, validate_prefix, validate_rfc2317
40
40
 
41
41
 
42
- __ALL__ = (
42
+ __all__ = (
43
43
  "ZoneForm",
44
44
  "ZoneFilterForm",
45
45
  "ZoneImportForm",
@@ -81,6 +81,14 @@ class ZoneTemplateUpdateMixin:
81
81
  else:
82
82
  zone_data = self.cleaned_data.copy()
83
83
 
84
+ custom_fields = dict()
85
+ for key, value in zone_data.copy().items():
86
+ if key.startswith("cf_"):
87
+ custom_fields[key[3:]] = value
88
+ zone_data.pop(key)
89
+ if custom_fields:
90
+ zone_data["custom_field_data"] = custom_fields
91
+
84
92
  zone_data.pop("template", None)
85
93
  zone_data.pop("tenant_group", None)
86
94
  zone_data.pop("_init_time", None)
@@ -261,9 +269,6 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
261
269
  if self.initial.get("soa_ttl") is None:
262
270
  self.initial["soa_ttl"] = self.initial.get("default_ttl")
263
271
 
264
- if self.initial.get("soa_serial_auto"):
265
- self.initial["soa_serial"] = None
266
-
267
272
  if self.initial.get("soa_mname") is None:
268
273
  default_soa_mname = defaults.get("zone_soa_mname")
269
274
  if default_soa_mname is not None:
@@ -330,7 +335,12 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
330
335
  fieldsets = (
331
336
  FieldSet("q", "filter_id", "tag"),
332
337
  FieldSet(
333
- "view_id", "status", "name", "nameservers", "description", name="Attributes"
338
+ "view_id",
339
+ "status",
340
+ "name",
341
+ "nameserver_id",
342
+ "description",
343
+ name="Attributes",
334
344
  ),
335
345
  FieldSet(
336
346
  "soa_mname_id",
@@ -368,9 +378,10 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
368
378
  name = forms.CharField(
369
379
  required=False,
370
380
  )
371
- nameservers = DynamicModelMultipleChoiceField(
381
+ nameserver_id = DynamicModelMultipleChoiceField(
372
382
  queryset=NameServer.objects.all(),
373
383
  required=False,
384
+ label="Nameservers",
374
385
  )
375
386
  description = forms.CharField(
376
387
  required=False,
@@ -26,7 +26,7 @@ from netbox_dns.models import (
26
26
  )
27
27
 
28
28
 
29
- __ALL__ = (
29
+ __all__ = (
30
30
  "ZoneTemplateForm",
31
31
  "ZoneTemplateFilterForm",
32
32
  "ZoneTemplateImportForm",
@@ -1,7 +1,7 @@
1
1
  from netbox.models import NetBoxModel
2
2
 
3
3
 
4
- __ALL__ = ("ObjectModificationMixin",)
4
+ __all__ = ("ObjectModificationMixin",)
5
5
 
6
6
 
7
7
  class ObjectModificationMixin:
@@ -15,6 +15,8 @@ class ObjectModificationMixin:
15
15
  - {"id"}
16
16
  )
17
17
 
18
+ self.__class__.check_fields.add("custom_field_data")
19
+
18
20
  @property
19
21
  def changed_fields(self):
20
22
  if self.pk is None:
@@ -7,7 +7,7 @@ from netbox.search import SearchIndex, register_search
7
7
  from taggit.managers import TaggableManager
8
8
 
9
9
 
10
- __ALL__ = (
10
+ __all__ = (
11
11
  "Contact",
12
12
  "ContactIndex",
13
13
  )
@@ -20,7 +20,7 @@ from netbox_dns.mixins import ObjectModificationMixin
20
20
  from .record import Record
21
21
 
22
22
 
23
- __ALL__ = (
23
+ __all__ = (
24
24
  "NameServer",
25
25
  "NameServerIndex",
26
26
  )
@@ -24,7 +24,8 @@ from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices
24
24
  # -
25
25
  from netbox_dns.models import zone
26
26
 
27
- __ALL__ = (
27
+
28
+ __all__ = (
28
29
  "Record",
29
30
  "RecordIndex",
30
31
  )
@@ -519,6 +520,7 @@ class Record(ObjectModificationMixin, NetBoxModel):
519
520
  )
520
521
  .exclude(ttl=self.ttl)
521
522
  .exclude(type=RecordTypeChoices.PTR, managed=True)
523
+ .exclude(status=RecordStatusChoices.STATUS_INACTIVE)
522
524
  )
523
525
 
524
526
  if not records.exists():
@@ -553,6 +555,7 @@ class Record(ObjectModificationMixin, NetBoxModel):
553
555
  .exclude(pk=self.pk)
554
556
  .exclude(ttl=ttl)
555
557
  .exclude(type=RecordTypeChoices.PTR, managed=True)
558
+ .exclude(status=RecordStatusChoices.STATUS_INACTIVE)
556
559
  )
557
560
 
558
561
  for record in records:
@@ -15,7 +15,7 @@ from netbox_dns.validators import validate_generic_name, validate_record_value
15
15
  from .record import Record
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "RecordTemplate",
20
20
  "RecordTemplateIndex",
21
21
  )
@@ -5,7 +5,7 @@ from netbox.models import NetBoxModel
5
5
  from netbox.search import SearchIndex, register_search
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "Registrar",
10
10
  "RegistrarIndex",
11
11
  )
@@ -10,7 +10,7 @@ from utilities.exceptions import AbortRequest
10
10
  from netbox_dns.mixins import ObjectModificationMixin
11
11
 
12
12
 
13
- __ALL__ = (
13
+ __all__ = (
14
14
  "View",
15
15
  "ViewIndex",
16
16
  )
@@ -43,7 +43,7 @@ from .view import View
43
43
  from .nameserver import NameServer
44
44
 
45
45
 
46
- __ALL__ = (
46
+ __all__ = (
47
47
  "Zone",
48
48
  "ZoneIndex",
49
49
  )
@@ -800,10 +800,11 @@ class Zone(ObjectModificationMixin, NetBoxModel):
800
800
  address_record.ptr_record.delete()
801
801
 
802
802
  ptr_records = self.record_set.filter(address_record__isnull=False)
803
- update_records = [
804
- address_record.pk
805
- for address_record in Record.objects.filter(ptr_record__in=ptr_records)
806
- ]
803
+ update_records = list(
804
+ Record.objects.filter(ptr_record__in=ptr_records).values_list(
805
+ "pk", flat=True
806
+ )
807
+ )
807
808
 
808
809
  cname_records = {
809
810
  ptr_record.rfc2317_cname_record
@@ -818,9 +819,9 @@ class Zone(ObjectModificationMixin, NetBoxModel):
818
819
  cname_zone.save_soa_serial()
819
820
  cname_zone.update_soa_record()
820
821
 
821
- rfc2317_child_zones = [
822
- child_zone.pk for child_zone in self.rfc2317_child_zones.all()
823
- ]
822
+ rfc2317_child_zones = list(
823
+ self.rfc2317_child_zones.all().values_list("pk", flat=True)
824
+ )
824
825
 
825
826
  if get_plugin_config("netbox_dns", "feature_ipam_coupling"):
826
827
  for ip in IPAddress.objects.filter(
@@ -5,7 +5,7 @@ from netbox.models import NetBoxModel
5
5
  from netbox.search import SearchIndex, register_search
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "ZoneTemplate",
10
10
  "ZoneTemplateIndex",
11
11
  )
@@ -85,6 +85,7 @@ class ZoneTemplate(NetBoxModel):
85
85
  clone_fields = [
86
86
  "description",
87
87
  "nameservers",
88
+ "record_templates",
88
89
  "tenant",
89
90
  "registrar",
90
91
  "registrant",
@@ -5,7 +5,7 @@ from netbox.tables import NetBoxTable, TagColumn
5
5
  from netbox_dns.models import Contact
6
6
 
7
7
 
8
- __ALL__ = ("ContactTable",)
8
+ __all__ = ("ContactTable",)
9
9
 
10
10
 
11
11
  class ContactTable(NetBoxTable):
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import NameServer
7
7
 
8
8
 
9
- __ALL__ = ("NameServerTable",)
9
+ __all__ = ("NameServerTable",)
10
10
 
11
11
 
12
12
  class NameServerTable(TenancyColumnsMixin, NetBoxTable):
@@ -12,7 +12,7 @@ from netbox_dns.models import Record
12
12
  from netbox_dns.utilities import value_to_unicode
13
13
 
14
14
 
15
- __ALL__ = (
15
+ __all__ = (
16
16
  "RecordTable",
17
17
  "ManagedRecordTable",
18
18
  "RelatedRecordTable",
@@ -7,7 +7,7 @@ from netbox_dns.models import RecordTemplate
7
7
  from netbox_dns.utilities import value_to_unicode
8
8
 
9
9
 
10
- __ALL__ = (
10
+ __all__ = (
11
11
  "RecordTemplateTable",
12
12
  "RecordTemplateDisplayTable",
13
13
  )
@@ -5,7 +5,7 @@ from netbox.tables import NetBoxTable, TagColumn
5
5
  from netbox_dns.models import Registrar
6
6
 
7
7
 
8
- __ALL__ = ("RegistrarTable",)
8
+ __all__ = ("RegistrarTable",)
9
9
 
10
10
 
11
11
  class RegistrarTable(NetBoxTable):
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import View
7
7
 
8
8
 
9
- __ALL__ = ("ViewTable",)
9
+ __all__ = ("ViewTable",)
10
10
 
11
11
 
12
12
  class ViewTable(TenancyColumnsMixin, NetBoxTable):
@@ -10,7 +10,7 @@ from tenancy.tables import TenancyColumnsMixin
10
10
  from netbox_dns.models import Zone
11
11
 
12
12
 
13
- __ALL__ = ("ZoneTable",)
13
+ __all__ = ("ZoneTable",)
14
14
 
15
15
 
16
16
  class ZoneTable(TenancyColumnsMixin, NetBoxTable):
@@ -6,7 +6,7 @@ from tenancy.tables import TenancyColumnsMixin
6
6
  from netbox_dns.models import ZoneTemplate
7
7
 
8
8
 
9
- __ALL__ = (
9
+ __all__ = (
10
10
  "ZoneTemplateTable",
11
11
  "ZoneTemplateDisplayTable",
12
12
  )
@@ -5,7 +5,7 @@ from django.core.exceptions import ValidationError
5
5
  from netbox.plugins.utils import get_plugin_config
6
6
 
7
7
 
8
- __ALL__ = (
8
+ __all__ = (
9
9
  "validate_fqdn",
10
10
  "validate_generic_name",
11
11
  "validate_domain_name",
@@ -11,7 +11,7 @@ from netbox_dns.validators import (
11
11
  )
12
12
 
13
13
 
14
- __ALL__ = ("validate_record_value",)
14
+ __all__ = ("validate_record_value",)
15
15
 
16
16
 
17
17
  def validate_record_value(record_type, value):
@@ -1,7 +1,7 @@
1
1
  from django.core.exceptions import ValidationError
2
2
 
3
3
 
4
- __ALL__ = (
4
+ __all__ = (
5
5
  "validate_prefix",
6
6
  "validate_ipv4",
7
7
  "validate_rfc2317",
@@ -15,8 +15,9 @@ from netbox_dns.forms import (
15
15
  from netbox_dns.tables import ContactTable, ZoneTable
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "ContactView",
20
+ "ContactEditView",
20
21
  "ContactListView",
21
22
  "ContactDeleteView",
22
23
  "ContactBulkImportView",
@@ -14,12 +14,13 @@ from netbox_dns.models import Zone, NameServer
14
14
  from netbox_dns.tables import NameServerTable, ZoneTable
15
15
 
16
16
 
17
- __ALL__ = (
17
+ __all__ = (
18
18
  "NameServerListView",
19
19
  "NameServerView",
20
20
  "NameServerEditView",
21
21
  "NameServerDeleteView",
22
22
  "NameServerBulkEditView",
23
+ "NameServerBulkImportView",
23
24
  "NameServerBulkDeleteView",
24
25
  "NameServerZoneListView",
25
26
  "NameServerSOAZoneListView",
@@ -15,7 +15,7 @@ from netbox_dns.tables import RecordTable, ManagedRecordTable, RelatedRecordTabl
15
15
  from netbox_dns.utilities import value_to_unicode
16
16
 
17
17
 
18
- __ALL__ = (
18
+ __all__ = (
19
19
  "RecordListView",
20
20
  "ManagedRecordListView",
21
21
  "RecordView",
@@ -14,7 +14,7 @@ from netbox_dns.tables import RecordTemplateTable, ZoneTemplateDisplayTable
14
14
  from netbox_dns.utilities import value_to_unicode
15
15
 
16
16
 
17
- __ALL__ = (
17
+ __all__ = (
18
18
  "RecordTemplateListView",
19
19
  "RecordTemplateView",
20
20
  "RecordTemplateEditView",
@@ -13,7 +13,7 @@ from netbox_dns.forms import (
13
13
  from netbox_dns.tables import RegistrarTable, ZoneTable
14
14
 
15
15
 
16
- __ALL__ = (
16
+ __all__ = (
17
17
  "RegistrarView",
18
18
  "RegistrarListView",
19
19
  "RegistrarEditView",
@@ -8,7 +8,7 @@ from netbox_dns.forms import ViewForm, ViewFilterForm, ViewImportForm, ViewBulkE
8
8
  from netbox_dns.tables import ViewTable, ZoneTable
9
9
 
10
10
 
11
- __ALL__ = (
11
+ __all__ = (
12
12
  "ViewView",
13
13
  "ViewListView",
14
14
  "ViewEditView",
@@ -18,7 +18,7 @@ from netbox_dns.tables import (
18
18
  )
19
19
 
20
20
 
21
- __ALL__ = (
21
+ __all__ = (
22
22
  "ZoneListView",
23
23
  "ZoneView",
24
24
  "ZoneEditView",
@@ -11,7 +11,7 @@ from netbox_dns.models import ZoneTemplate
11
11
  from netbox_dns.tables import ZoneTemplateTable, RecordTemplateDisplayTable
12
12
 
13
13
 
14
- __ALL__ = (
14
+ __all__ = (
15
15
  "ZoneTemplateListView",
16
16
  "ZoneTemplateView",
17
17
  "ZoneTemplateEditView",
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "netbox-plugin-dns"
3
- version = "1.0.5"
3
+ version = "1.0.6"
4
4
  description = "NetBox DNS is a NetBox plugin for managing DNS data."
5
5
  authors = ["Peter Eckel <pete@netbox-dns.org>"]
6
6
  homepage = "https://github.com/peteeckel/netbox-plugin-dns"