netbox-plugin-dns 1.2.5__py3-none-any.whl → 1.2.6__py3-none-any.whl

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.

netbox_dns/__init__.py CHANGED
@@ -7,7 +7,7 @@ from ipam.choices import IPAddressStatusChoices
7
7
 
8
8
  from netbox_dns.choices import RecordTypeChoices, RecordStatusChoices, ZoneStatusChoices
9
9
 
10
- __version__ = "1.2.5"
10
+ __version__ = "1.2.6"
11
11
 
12
12
 
13
13
  def _check_list(setting):
@@ -2,3 +2,4 @@ from .network import *
2
2
  from .address import *
3
3
  from .rfc2317 import *
4
4
  from .ipam import *
5
+ from .timeperiod import *
@@ -0,0 +1,31 @@
1
+ from django.forms import Field
2
+ from django.utils.dateparse import parse_duration
3
+ from django.core.exceptions import ValidationError
4
+
5
+
6
+ __all__ = ("TimePeriodField",)
7
+
8
+
9
+ class TimePeriodField(Field):
10
+ def to_python(self, value):
11
+ if not value:
12
+ return None
13
+
14
+ try:
15
+ return int(value)
16
+ except ValueError:
17
+ try:
18
+ duration = parse_duration(value)
19
+ if duration is None:
20
+ raise TypeError
21
+ return int(duration.total_seconds())
22
+ except TypeError:
23
+ raise ValidationError(
24
+ "Enter a valid integer or ISO 8601 duration (W, M and Y are not supported)"
25
+ )
26
+
27
+ def validate(self, value):
28
+ super().validate(value)
29
+
30
+ if value is not None and value < 0:
31
+ raise ValidationError("A time period cannot be negative.")
@@ -23,6 +23,7 @@ from tenancy.forms import TenancyForm, TenancyFilterForm
23
23
  from netbox_dns.models import View, Zone, Record
24
24
  from netbox_dns.choices import RecordSelectableTypeChoices, RecordStatusChoices
25
25
  from netbox_dns.utilities import name_to_unicode
26
+ from netbox_dns.fields import TimePeriodField
26
27
 
27
28
 
28
29
  __all__ = (
@@ -67,7 +68,7 @@ class RecordForm(TenancyForm, NetBoxModelForm):
67
68
  required=False,
68
69
  label=_("Disable PTR"),
69
70
  )
70
- ttl = forms.IntegerField(
71
+ ttl = TimePeriodField(
71
72
  required=False,
72
73
  label=_("TTL"),
73
74
  )
@@ -112,16 +113,17 @@ class RecordFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
112
113
  fieldsets = (
113
114
  FieldSet("q", "filter_id", "tag"),
114
115
  FieldSet(
116
+ "name",
115
117
  "view_id",
116
118
  "zone_id",
117
- "name",
118
119
  "fqdn",
119
120
  "type",
120
121
  "value",
121
- "disable_ptr",
122
122
  "status",
123
- "active",
123
+ "ttl",
124
+ "disable_ptr",
124
125
  "description",
126
+ "active",
125
127
  name=_("Attributes"),
126
128
  ),
127
129
  FieldSet("tenant_group_id", "tenant_id", name=_("Tenancy")),
@@ -154,6 +156,10 @@ class RecordFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
154
156
  required=False,
155
157
  label=_("Status"),
156
158
  )
159
+ ttl = TimePeriodField(
160
+ required=False,
161
+ label=_("TTL"),
162
+ )
157
163
  view_id = DynamicModelMultipleChoiceField(
158
164
  queryset=View.objects.all(),
159
165
  required=False,
@@ -224,7 +230,7 @@ class RecordImportForm(NetBoxModelImportForm):
224
230
  required=False,
225
231
  label=_("Status"),
226
232
  )
227
- ttl = forms.IntegerField(
233
+ ttl = TimePeriodField(
228
234
  required=False,
229
235
  label=_("TTL"),
230
236
  )
@@ -286,7 +292,7 @@ class RecordBulkEditForm(NetBoxModelBulkEditForm):
286
292
  required=False,
287
293
  label=_("Status"),
288
294
  )
289
- ttl = forms.IntegerField(
295
+ ttl = TimePeriodField(
290
296
  required=False,
291
297
  label=_("TTL"),
292
298
  )
@@ -23,6 +23,7 @@ from tenancy.forms import TenancyForm, TenancyFilterForm
23
23
  from netbox_dns.models import RecordTemplate, ZoneTemplate
24
24
  from netbox_dns.choices import RecordSelectableTypeChoices, RecordStatusChoices
25
25
  from netbox_dns.utilities import name_to_unicode
26
+ from netbox_dns.fields import TimePeriodField
26
27
 
27
28
 
28
29
  __all__ = (
@@ -50,7 +51,7 @@ class RecordTemplateForm(TenancyForm, NetBoxModelForm):
50
51
  required=False,
51
52
  label=_("Disable PTR"),
52
53
  )
53
- ttl = forms.IntegerField(
54
+ ttl = TimePeriodField(
54
55
  required=False,
55
56
  label=_("TTL"),
56
57
  )
@@ -99,6 +100,7 @@ class RecordTemplateFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
99
100
  "type",
100
101
  "value",
101
102
  "status",
103
+ "ttl",
102
104
  "disable_ptr",
103
105
  "description",
104
106
  name=_("Attributes"),
@@ -129,6 +131,10 @@ class RecordTemplateFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
129
131
  required=False,
130
132
  label=_("Status"),
131
133
  )
134
+ ttl = TimePeriodField(
135
+ required=False,
136
+ label=_("TTL"),
137
+ )
132
138
  disable_ptr = forms.NullBooleanField(
133
139
  required=False,
134
140
  label=_("Disable PTR"),
@@ -156,7 +162,7 @@ class RecordTemplateImportForm(NetBoxModelImportForm):
156
162
  required=False,
157
163
  label=_("Status"),
158
164
  )
159
- ttl = forms.IntegerField(
165
+ ttl = TimePeriodField(
160
166
  required=False,
161
167
  label=_("TTL"),
162
168
  )
@@ -209,7 +215,7 @@ class RecordTemplateBulkEditForm(NetBoxModelBulkEditForm):
209
215
  required=False,
210
216
  label=_("Status"),
211
217
  )
212
- ttl = forms.IntegerField(
218
+ ttl = TimePeriodField(
213
219
  required=False,
214
220
  label=_("TTL"),
215
221
  )
netbox_dns/forms/zone.py CHANGED
@@ -39,7 +39,7 @@ from netbox_dns.models import (
39
39
  )
40
40
  from netbox_dns.choices import ZoneStatusChoices
41
41
  from netbox_dns.utilities import name_to_unicode, network_to_reverse
42
- from netbox_dns.fields import RFC2317NetworkFormField
42
+ from netbox_dns.fields import RFC2317NetworkFormField, TimePeriodField
43
43
  from netbox_dns.validators import validate_ipv4, validate_prefix, validate_rfc2317
44
44
 
45
45
 
@@ -171,7 +171,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
171
171
  label=_("Nameservers"),
172
172
  quick_add=QUICK_ADD,
173
173
  )
174
- default_ttl = forms.IntegerField(
174
+ default_ttl = TimePeriodField(
175
175
  required=False,
176
176
  help_text=_("Default TTL for new records in this zone"),
177
177
  validators=[MinValueValidator(1)],
@@ -181,7 +181,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
181
181
  required=False,
182
182
  label=_("Description"),
183
183
  )
184
- soa_ttl = forms.IntegerField(
184
+ soa_ttl = TimePeriodField(
185
185
  required=True,
186
186
  help_text=_("TTL for the SOA record of the zone"),
187
187
  validators=[MinValueValidator(1)],
@@ -199,25 +199,25 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
199
199
  help_text=_("Mailbox of the zone's administrator"),
200
200
  label=_("SOA RName"),
201
201
  )
202
- soa_refresh = forms.IntegerField(
202
+ soa_refresh = TimePeriodField(
203
203
  required=True,
204
204
  help_text=_("Refresh interval for secondary nameservers"),
205
205
  validators=[MinValueValidator(1)],
206
206
  label=_("SOA Refresh"),
207
207
  )
208
- soa_retry = forms.IntegerField(
208
+ soa_retry = TimePeriodField(
209
209
  required=True,
210
210
  help_text=_("Retry interval for secondary nameservers"),
211
211
  validators=[MinValueValidator(1)],
212
212
  label=_("SOA Retry"),
213
213
  )
214
- soa_expire = forms.IntegerField(
214
+ soa_expire = TimePeriodField(
215
215
  required=True,
216
216
  validators=[MinValueValidator(1)],
217
217
  help_text=_("Expire time after which the zone is considered unavailable"),
218
218
  label=_("SOA Expire"),
219
219
  )
220
- soa_minimum = forms.IntegerField(
220
+ soa_minimum = TimePeriodField(
221
221
  required=True,
222
222
  help_text=_("Minimum TTL for negative results, e.g. NXRRSET, NXDOMAIN"),
223
223
  validators=[MinValueValidator(1)],
@@ -243,7 +243,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
243
243
  rfc2317_parent_managed = forms.BooleanField(
244
244
  required=False,
245
245
  help_text=_(
246
- "IPv4 reverse zone for deletgating the RFC2317 PTR records is managed in NetBox DNS"
246
+ "IPv4 reverse zone for delegating the RFC2317 PTR records is managed in NetBox DNS"
247
247
  ),
248
248
  label=_("RFC2317 Parent Managed"),
249
249
  )
@@ -530,11 +530,11 @@ class ZoneImportForm(ZoneTemplateUpdateMixin, NetBoxModelImportForm):
530
530
  required=False,
531
531
  label=_("Nameservers"),
532
532
  )
533
- default_ttl = forms.IntegerField(
533
+ default_ttl = TimePeriodField(
534
534
  required=False,
535
535
  label=_("Default TTL"),
536
536
  )
537
- soa_ttl = forms.IntegerField(
537
+ soa_ttl = TimePeriodField(
538
538
  required=False,
539
539
  help_text=_("TTL for the SOA record of the zone"),
540
540
  label=_("SOA TTL"),
@@ -562,22 +562,22 @@ class ZoneImportForm(ZoneTemplateUpdateMixin, NetBoxModelImportForm):
562
562
  required=False,
563
563
  label=_("SOA Serial"),
564
564
  )
565
- soa_refresh = forms.IntegerField(
565
+ soa_refresh = TimePeriodField(
566
566
  required=False,
567
567
  help_text=_("Refresh interval for secondary nameservers"),
568
568
  label=_("SOA Refresh"),
569
569
  )
570
- soa_retry = forms.IntegerField(
570
+ soa_retry = TimePeriodField(
571
571
  required=False,
572
572
  help_text=_("Retry interval for secondary nameservers"),
573
573
  label=_("SOA Retry"),
574
574
  )
575
- soa_expire = forms.IntegerField(
575
+ soa_expire = TimePeriodField(
576
576
  required=False,
577
577
  help_text=_("Expire time after which the zone is considered unavailable"),
578
578
  label=_("SOA Expire"),
579
579
  )
580
- soa_minimum = forms.IntegerField(
580
+ soa_minimum = TimePeriodField(
581
581
  required=False,
582
582
  help_text=_("Minimum TTL for negative results, e.g. NXRRSET, NXDOMAIN"),
583
583
  label=_("SOA Minimum TTL"),
@@ -590,7 +590,7 @@ class ZoneImportForm(ZoneTemplateUpdateMixin, NetBoxModelImportForm):
590
590
  rfc2317_parent_managed = forms.BooleanField(
591
591
  required=False,
592
592
  help_text=_(
593
- "IPv4 reverse zone for deletgating the RFC2317 PTR records is managed in NetBox DNS"
593
+ "IPv4 reverse zone for delegating the RFC2317 PTR records is managed in NetBox DNS"
594
594
  ),
595
595
  label=_("RFC2317 Parent Managed"),
596
596
  )
@@ -726,7 +726,7 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
726
726
  required=False,
727
727
  label=_("Nameservers"),
728
728
  )
729
- default_ttl = forms.IntegerField(
729
+ default_ttl = TimePeriodField(
730
730
  required=False,
731
731
  validators=[MinValueValidator(1)],
732
732
  label=_("Default TTL"),
@@ -736,7 +736,7 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
736
736
  required=False,
737
737
  label=_("Description"),
738
738
  )
739
- soa_ttl = forms.IntegerField(
739
+ soa_ttl = TimePeriodField(
740
740
  required=False,
741
741
  validators=[MinValueValidator(1)],
742
742
  label=_("SOA TTL"),
@@ -760,22 +760,22 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
760
760
  validators=[MinValueValidator(1), MaxValueValidator(4294967295)],
761
761
  label=_("SOA Serial"),
762
762
  )
763
- soa_refresh = forms.IntegerField(
763
+ soa_refresh = TimePeriodField(
764
764
  required=False,
765
765
  validators=[MinValueValidator(1)],
766
766
  label=_("SOA Refresh"),
767
767
  )
768
- soa_retry = forms.IntegerField(
768
+ soa_retry = TimePeriodField(
769
769
  required=False,
770
770
  validators=[MinValueValidator(1)],
771
771
  label=_("SOA Retry"),
772
772
  )
773
- soa_expire = forms.IntegerField(
773
+ soa_expire = TimePeriodField(
774
774
  required=False,
775
775
  validators=[MinValueValidator(1)],
776
776
  label=_("SOA Expire"),
777
777
  )
778
- soa_minimum = forms.IntegerField(
778
+ soa_minimum = TimePeriodField(
779
779
  required=False,
780
780
  validators=[MinValueValidator(1)],
781
781
  label=_("SOA Minimum TTL"),
@@ -790,7 +790,7 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
790
790
  required=False,
791
791
  widget=BulkEditNullBooleanSelect(),
792
792
  help_text=_(
793
- "IPv4 reverse zone for deletgating the RFC2317 PTR records is managed in NetBox DNS"
793
+ "IPv4 reverse zone for delegating the RFC2317 PTR records is managed in NetBox DNS"
794
794
  ),
795
795
  label=_("RFC2317 Parent Managed"),
796
796
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: netbox-plugin-dns
3
- Version: 1.2.5
3
+ Version: 1.2.6
4
4
  Summary: NetBox DNS is a NetBox plugin for managing DNS data.
5
5
  Author-email: Peter Eckel <pete@netbox-dns.org>
6
6
  Project-URL: Homepage, https://github.com/peteeckel/netbox-plugin-dns
@@ -1,4 +1,4 @@
1
- netbox_dns/__init__.py,sha256=nnD4iq2_TUmMshut8Z3viAIlrY0RSc9YH6fllV11R4E,3098
1
+ netbox_dns/__init__.py,sha256=SRd9IcagSOm_ILlfm6xe1UBrFQTJ9GH_S7eP4G42vgI,3098
2
2
  netbox_dns/apps.py,sha256=JCW5eS-AQBUubDJve1DjP-IRFKTFGQh1NLGWzJpC5MI,151
3
3
  netbox_dns/navigation.py,sha256=36clAzlWftW94_VZ3EHu8_btzzA_dah50CLTfoov-O4,6226
4
4
  netbox_dns/template_content.py,sha256=T06L7-m4eGrLMeGsCvPpQLAGfn3S2FL7z0Cd1hhbisY,4225
@@ -20,11 +20,12 @@ netbox_dns/api/serializers_/zone_template.py,sha256=NQFycXBNcHSMPID62o6w6EKbPkj_
20
20
  netbox_dns/choices/__init__.py,sha256=jOVs2VGV5SVADRlqVnrFeAy26i8BIeEAbGpiX7K8bL8,42
21
21
  netbox_dns/choices/record.py,sha256=ZSpyiZE2YCsF2wF53A5DFWgwCIhkFhgOKt__RJ0KxSk,2084
22
22
  netbox_dns/choices/zone.py,sha256=Vblm5RUtNtPNkULh8U1NxBMme1iHPllD6B6LkQkWZW4,621
23
- netbox_dns/fields/__init__.py,sha256=U1nbFIwwtvr10pp3Sk91jEZeWkVQBSJtr0BVWYgOfiA,89
23
+ netbox_dns/fields/__init__.py,sha256=zvUOvkEy68tL7nNPfFrxE5_nbvr-pzo6UBJSNdAEylE,115
24
24
  netbox_dns/fields/address.py,sha256=qNLHmpwwJ3TevljG1QsUr_f2h6NrPsK6wr-R-Ti8eZI,1262
25
25
  netbox_dns/fields/ipam.py,sha256=wla-kBm77BpD0LNQhgRZS1RYbVois7WDqPpyQkUT02k,481
26
26
  netbox_dns/fields/network.py,sha256=a5nTzjscRufxgMjVsf5juszSYuTujU50pQ9P7q4qMVs,3740
27
27
  netbox_dns/fields/rfc2317.py,sha256=y72PZKlXZ8_6P4eeWZ8IF3gqOMjPxW48gk3AB81XboE,2642
28
+ netbox_dns/fields/timeperiod.py,sha256=QEdrmczeZWpBCuZubFrWxiHtm973qneGMM2LvtIosqM,901
28
29
  netbox_dns/filtersets/__init__.py,sha256=f8zJhpC3-TyK1OMgTaXmm1E6C2wUc1mNtoI6LOKkljQ,210
29
30
  netbox_dns/filtersets/nameserver.py,sha256=7hk9Wh4v4-IHP44rQC4nhdvpYbDYNYYf-XZp6Yo72xE,1203
30
31
  netbox_dns/filtersets/record.py,sha256=Ao2666F6z435TXD_hV2dgItI0sWXlS-jyQ1TQZEL8Yc,3913
@@ -36,12 +37,12 @@ netbox_dns/filtersets/zone.py,sha256=zl39SOiYIZxAi3G1wx0s9UEIgh8hG9Bdb46qIXLwMr8
36
37
  netbox_dns/filtersets/zone_template.py,sha256=So-sxWeDhlm-DTtujYp5B_gDbnAVUHnLdRZgw7cOc4o,4347
37
38
  netbox_dns/forms/__init__.py,sha256=axENVF9vX9BtDKCNxrapRjye1NnygUg9BS0BBj6a0io,209
38
39
  netbox_dns/forms/nameserver.py,sha256=GJe3ece4yIGwMtLZ6wQihBrJu1dk_ZSiwX-vSU0fRa0,3397
39
- netbox_dns/forms/record.py,sha256=QNGLqWprhsGFTSlH2YAe-SHmCx1K1QbT_osAhCegyJg,8252
40
- netbox_dns/forms/record_template.py,sha256=UcB-AlK-ZDoNmIMJhUrxfr76oGkwJ8d7JhkDj9vbMDI,6337
40
+ netbox_dns/forms/record.py,sha256=wkl3YpbKfq0bH6U8atNYrYwrV-kNPRqG1PRQG3X1eHA,8389
41
+ netbox_dns/forms/record_template.py,sha256=BdcDkQ5VPER3-nBKq6R1MINOG__H8yGa4uqdIqoLZuU,6474
41
42
  netbox_dns/forms/registrar.py,sha256=GaRH3w5zlhrpwy_U0pxlrl1DrAEaMB78MUlnGxBRwZI,3949
42
43
  netbox_dns/forms/registration_contact.py,sha256=IhNAqElY7hOdpDG0jwWMdy3y2mB43xmjUhj3lsgJ3SE,5906
43
44
  netbox_dns/forms/view.py,sha256=GacwKHXSDvxQEs-d3ys7rietqA_MzpSd0XjWaSsIbU0,10339
44
- netbox_dns/forms/zone.py,sha256=b63kCukS4uFgkxGnQ_h-i8d-d8GaSINfppDJlrBuXJA,26195
45
+ netbox_dns/forms/zone.py,sha256=XRMt9qjIC6d0klRATtAeMKs6zKMh6JatX8DYwxBdMHM,26155
45
46
  netbox_dns/forms/zone_template.py,sha256=P7jdEz0MI_tjD_fuVDuKOIFCInqGI4opf7l_qaDmG1g,10098
46
47
  netbox_dns/graphql/__init__.py,sha256=jghYD6uOSAis6YyLbtI3YJGZfwPw1uL2FBRsHs1EhNk,514
47
48
  netbox_dns/graphql/filters.py,sha256=fHCjFIwbPBJJMk2W7HI8LhrfFhCtQtCM9IE8ZMgVafc,1766
@@ -49,6 +50,7 @@ netbox_dns/graphql/schema.py,sha256=q9DQ_hfRB0e6Znq4-IS6UEeTOfMkZmrWkwxcAql1uOA,
49
50
  netbox_dns/graphql/types.py,sha256=zAH8bkMCQdp9_g8HzBdrxSS0spxLwvqHhMA61kp65gk,8268
50
51
  netbox_dns/locale/de/LC_MESSAGES/django.mo,sha256=L0qwlTBiL4M5IRoN33eejQRgzP11oinumTdGzrsfKEA,20148
51
52
  netbox_dns/locale/en/LC_MESSAGES/django.mo,sha256=GDnSZkfHs3yjtTsll7dksEEej4B50F8pc9RGytZNubM,393
53
+ netbox_dns/locale/fr/LC_MESSAGES/django.mo,sha256=r6ue_d6ccBgVR6BiEafvTZ1j5MU0NnOLwp1GZrOJ3Cw,20631
52
54
  netbox_dns/management/commands/cleanup_database.py,sha256=1-tAl0Sht80qaNZyfFyUW19Eh9gBUuc7GdbHN4aemGU,5935
53
55
  netbox_dns/management/commands/cleanup_rrset_ttl.py,sha256=UFRURLBcFeGHUS2lrYFv7UWIebjI72aG1EUQJt0XsXw,2046
54
56
  netbox_dns/management/commands/rebuild_dnssync.py,sha256=Tcl385u6kJTX47SvSyRzKm1RIx4nYRYCMcKr3uVnV60,1246
@@ -143,8 +145,8 @@ netbox_dns/views/registration_contact.py,sha256=c9KrNkfFNsb55pL74A5rN1CNx32M82V6
143
145
  netbox_dns/views/view.py,sha256=VfrKaLC9D_KNZNmRyFVohRlmMlMbtblAuPgNg0LNyf8,3421
144
146
  netbox_dns/views/zone.py,sha256=W66Miyaf4RKW-8z5wMrerrtmHclhht3h-lPqTWFpiOw,7163
145
147
  netbox_dns/views/zone_template.py,sha256=IIW1lr6RQmhShtqJu6A6LnHdxdBrkkZQHxIDSTqQeyc,2705
146
- netbox_plugin_dns-1.2.5.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
147
- netbox_plugin_dns-1.2.5.dist-info/METADATA,sha256=CmCyW64s9xmp49ADdEBc48ns2IOYXysCOA8zL9-Ad_0,7636
148
- netbox_plugin_dns-1.2.5.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
149
- netbox_plugin_dns-1.2.5.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
150
- netbox_plugin_dns-1.2.5.dist-info/RECORD,,
148
+ netbox_plugin_dns-1.2.6.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
149
+ netbox_plugin_dns-1.2.6.dist-info/METADATA,sha256=9-3nqBkJcPlEPjHWCFAB9RjUwRr2HqojNEmhk0yzMDA,7636
150
+ netbox_plugin_dns-1.2.6.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
151
+ netbox_plugin_dns-1.2.6.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
152
+ netbox_plugin_dns-1.2.6.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5