netbox-plugin-dns 1.2.0__py3-none-any.whl → 1.2b1__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.0"
10
+ __version__ = "1.2b1"
11
11
 
12
12
 
13
13
  def _check_list(setting):
@@ -49,9 +49,8 @@ class DNSConfig(PluginConfig):
49
49
  "dnssync_minimum_zone_labels": 2,
50
50
  "tolerate_characters_in_zone_labels": "",
51
51
  "tolerate_underscores_in_labels": False,
52
+ "tolerate_underscores_in_hostnames": False, # Deprecated, will be removed in 1.2.0
52
53
  "tolerate_leading_underscore_types": [
53
- RecordTypeChoices.CNAME,
54
- RecordTypeChoices.DNAME,
55
54
  RecordTypeChoices.SRV,
56
55
  RecordTypeChoices.TLSA,
57
56
  RecordTypeChoices.TXT,
@@ -29,6 +29,20 @@ class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
29
29
  to_field_name="name",
30
30
  label=_("View"),
31
31
  )
32
+ # DEPRECATED: Remove in 1.1
33
+ name_server_id = django_filters.ModelMultipleChoiceFilter(
34
+ queryset=NameServer.objects.all(),
35
+ field_name="nameservers",
36
+ to_field_name="id",
37
+ label=_("Nameserver IDs"),
38
+ )
39
+ # DEPRECATED: Remove in 1.1
40
+ name_server = django_filters.ModelMultipleChoiceFilter(
41
+ queryset=NameServer.objects.all(),
42
+ field_name="nameservers__name",
43
+ to_field_name="name",
44
+ label=_("Nameservers"),
45
+ )
32
46
  nameserver_id = django_filters.ModelMultipleChoiceFilter(
33
47
  queryset=NameServer.objects.all(),
34
48
  field_name="nameservers",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: netbox-plugin-dns
3
- Version: 1.2.0
3
+ Version: 1.2b1
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
@@ -8,7 +8,7 @@ Project-URL: Documentation, https://github.com/peteeckel/netbox-plugin-dns/blob/
8
8
  Project-URL: Repository, https://github.com/peteeckel/netbox-plugin-dns
9
9
  Project-URL: Issues, https://github.com/peteeckel/netbox-plugin-dns/issues
10
10
  Keywords: netbox,netbox-plugin,dns
11
- Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Development Status :: 4 - Beta
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
@@ -1,4 +1,4 @@
1
- netbox_dns/__init__.py,sha256=6u14dsk7Fdgtlz-sJloVuIST-5eIiex44ttFir1ZJoU,2982
1
+ netbox_dns/__init__.py,sha256=l39Hu_zZEZ1n15O9AzQx0Kr3s8U2EiRDyFIK91e2ErM,3000
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
@@ -32,7 +32,7 @@ netbox_dns/filtersets/record_template.py,sha256=wir5s2QWfDnw0M1wWnzJs9im5ok4l5cT
32
32
  netbox_dns/filtersets/registrar.py,sha256=Wh_l-IXRHnJhW7Pyokp3czQZISDKzXnWeSQKp512Drc,977
33
33
  netbox_dns/filtersets/registration_contact.py,sha256=903sOcHPRCI0dVzqn1i0pn5VPr_4YpHPh5QE2-akR-Y,1139
34
34
  netbox_dns/filtersets/view.py,sha256=IlQz3k2J_N6eSbT9op0KOu3sKLrn-HTsJCcrIqoYgyY,1047
35
- netbox_dns/filtersets/zone.py,sha256=zl39SOiYIZxAi3G1wx0s9UEIgh8hG9Bdb46qIXLwMr8,6334
35
+ netbox_dns/filtersets/zone.py,sha256=KjF8oUOIaDkW98pw-OuGNofA4muA922wcDOx3pm6kTc,6818
36
36
  netbox_dns/filtersets/zone_template.py,sha256=Sm40P33IhN0sOqtjz4JzoBbEK-dTLpfQqYGcM_Xb7KM,3870
37
37
  netbox_dns/forms/__init__.py,sha256=axENVF9vX9BtDKCNxrapRjye1NnygUg9BS0BBj6a0io,209
38
38
  netbox_dns/forms/nameserver.py,sha256=GJe3ece4yIGwMtLZ6wQihBrJu1dk_ZSiwX-vSU0fRa0,3397
@@ -139,8 +139,8 @@ netbox_dns/views/registration_contact.py,sha256=u__0w4Nm1_5lnAeFXfTY-cD86facWxIo
139
139
  netbox_dns/views/view.py,sha256=a6-wdMyTWoZekiR2VnM3VNSOjX-8L3Qjqqi973UobAA,3391
140
140
  netbox_dns/views/zone.py,sha256=H7UPN4T_sn_3ijvXi7t8iteJFs6qqEtVzhvchKOOzCM,7133
141
141
  netbox_dns/views/zone_template.py,sha256=vNXG96D6uZJo4KRdsgsTL3d9JzRtiDJg4_h4_3gjAfk,2667
142
- netbox_plugin_dns-1.2.0.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
143
- netbox_plugin_dns-1.2.0.dist-info/METADATA,sha256=5fWilWPt2sNDbGW2MLj3x3Zg-CRLCazKyXJDjVK-bD0,7223
144
- netbox_plugin_dns-1.2.0.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
145
- netbox_plugin_dns-1.2.0.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
146
- netbox_plugin_dns-1.2.0.dist-info/RECORD,,
142
+ netbox_plugin_dns-1.2b1.dist-info/LICENSE,sha256=I3tDu11bZfhFm3EkV4zOD5TmWgLjnUNLEFwrdjniZYs,1112
143
+ netbox_plugin_dns-1.2b1.dist-info/METADATA,sha256=h9Zr7ncCUaMmqBVt9XTUlsOI9-VjJagU4S6FUBC8yBA,7210
144
+ netbox_plugin_dns-1.2b1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
145
+ netbox_plugin_dns-1.2b1.dist-info/top_level.txt,sha256=sA1Rwl1mRKvMC6XHe2ylZ1GF-Q1NGd08XedK9Y4xZc4,11
146
+ netbox_plugin_dns-1.2b1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.7.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5