netbox-plugin-dns 1.2.8__tar.gz → 1.2.9__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.
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/PKG-INFO +1 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/__init__.py +1 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/dnssec_policy.py +0 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/zone.py +1 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/dnssec_policy.py +0 -21
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/zone.py +18 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/dnssec_policy.py +0 -20
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/zone.py +21 -0
- netbox_plugin_dns-1.2.9/netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py +29 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/dnssec_policy.py +0 -9
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/zone.py +9 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/dnssecpolicy.html +0 -10
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone.html +10 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/PKG-INFO +1 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/SOURCES.txt +1 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/pyproject.toml +1 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/LICENSE +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/README.md +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/field_serializers.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/nested_serializers.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/prefix.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/urls.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/views.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/apps.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/utilities.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/zone.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/address.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/choice_array.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/ipam.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/network.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/rfc2317.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/fields/timeperiod.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/graphql/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/graphql/filters.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/graphql/schema.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/graphql/types.py +1 -1
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/de/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/en/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/fr/LC_MESSAGES/django.mo +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/cleanup_database.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/cleanup_rrset_ttl.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/rebuild_dnssync.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/setup_dnssync.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/update_soa.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0001_squashed_netbox_dns_0_15.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0001_squashed_netbox_dns_0_22.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0002_contact_description_registrar_description.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0003_default_view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0004_create_and_assign_default_view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0005_alter_zone_view_not_null.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0006_templating.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0007_alter_ordering_options.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0008_view_prefixes.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0009_rename_contact_registrationcontact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0010_view_ip_address_filter.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0011_rename_related_fields.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0012_natural_ordering.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0013_zonetemplate_soa_mname_zonetemplate_soa_rname.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0014_alter_unique_constraints_lowercase.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0015_dnssec.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0016_dnssec_policy_status.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0020_netbox_3_4.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0021_record_ip_address.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0022_search.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0023_alter_record_value.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0024_tenancy.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0025_ipam_coupling_cf.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0026_domain_registration.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0027_alter_registrar_iana_id.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0028_rfc2317_fields.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0029_record_fqdn.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/mixins/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/mixins/object_modification.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/navigation.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/signals/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/signals/dnssec.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/signals/ipam_dnssync.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/ipam_dnssync.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/zone.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/template_content.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/dnsseckeytemplate.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/nameserver.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/record/managed.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/record/related.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/record.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/recordtemplate.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/registrar.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/registrationcontact.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view/button.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view/prefix.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view/related.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/base.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/child.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/child_zone.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/delegation_record.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/managed_record.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/record.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/registration.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/rfc2317_child_zone.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zonetemplate/child.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zonetemplate.html +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templatetags/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templatetags/netbox_dns.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/urls.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/utilities/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/utilities/conversions.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/utilities/dns.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/utilities/ipam_dnssync.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/validators/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/validators/dns_name.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/validators/dns_value.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/validators/dnssec.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/validators/rfc2317.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/__init__.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/dnssec_key_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/dnssec_policy.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/nameserver.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/record.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/record_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/registrar.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/registration_contact.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/view.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/zone.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/zone_template.py +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/dependency_links.txt +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/requires.txt +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/top_level.txt +0 -0
- {netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/setup.cfg +0 -0
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import netaddr
|
|
2
|
-
from netaddr.core import AddrFormatError
|
|
3
|
-
|
|
4
1
|
import django_filters
|
|
5
2
|
|
|
6
3
|
from django.db.models import Q
|
|
@@ -38,7 +35,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
38
35
|
"create_cdnskey",
|
|
39
36
|
"parent_ds_ttl",
|
|
40
37
|
"parent_propagation_delay",
|
|
41
|
-
"parental_agents",
|
|
42
38
|
"use_nsec3",
|
|
43
39
|
"nsec3_iterations",
|
|
44
40
|
"nsec3_opt_out",
|
|
@@ -88,10 +84,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
88
84
|
to_field_name="id",
|
|
89
85
|
label=_("Zone Template IDs"),
|
|
90
86
|
)
|
|
91
|
-
parental_agents = MultiValueCharFilter(
|
|
92
|
-
method="filter_parental_agents",
|
|
93
|
-
label=_("Parental Agents"),
|
|
94
|
-
)
|
|
95
87
|
|
|
96
88
|
def filter_cds_digest_types(self, queryset, name, value):
|
|
97
89
|
if not value:
|
|
@@ -99,19 +91,6 @@ class DNSSECPolicyFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
99
91
|
|
|
100
92
|
return queryset.filter(cds_digest_types__overlap=value)
|
|
101
93
|
|
|
102
|
-
def filter_parental_agents(self, queryset, name, value):
|
|
103
|
-
if not value:
|
|
104
|
-
return queryset
|
|
105
|
-
|
|
106
|
-
query_values = []
|
|
107
|
-
for v in value:
|
|
108
|
-
try:
|
|
109
|
-
query_values.append(str(netaddr.IPAddress(v)))
|
|
110
|
-
except (AddrFormatError, ValueError):
|
|
111
|
-
pass
|
|
112
|
-
|
|
113
|
-
return queryset.filter(parental_agents__overlap=query_values)
|
|
114
|
-
|
|
115
94
|
def search(self, queryset, name, value):
|
|
116
95
|
if not value.strip():
|
|
117
96
|
return queryset
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import netaddr
|
|
2
|
+
from netaddr.core import AddrFormatError
|
|
2
3
|
|
|
3
4
|
import django_filters
|
|
4
5
|
from django.db.models import Q
|
|
@@ -68,6 +69,10 @@ class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
68
69
|
to_field_name="name",
|
|
69
70
|
label=_("DNSSEC Policy"),
|
|
70
71
|
)
|
|
72
|
+
parental_agents = MultiValueCharFilter(
|
|
73
|
+
method="filter_parental_agents",
|
|
74
|
+
label=_("Parental Agents"),
|
|
75
|
+
)
|
|
71
76
|
rfc2317_prefix = MultiValueCharFilter(
|
|
72
77
|
method="filter_rfc2317_prefix",
|
|
73
78
|
label=_("RFC2317 Prefix"),
|
|
@@ -167,6 +172,19 @@ class ZoneFilterSet(TenancyFilterSet, NetBoxModelFilterSet):
|
|
|
167
172
|
"domain_status",
|
|
168
173
|
)
|
|
169
174
|
|
|
175
|
+
def filter_parental_agents(self, queryset, name, value):
|
|
176
|
+
if not value:
|
|
177
|
+
return queryset
|
|
178
|
+
|
|
179
|
+
query_values = []
|
|
180
|
+
for v in value:
|
|
181
|
+
try:
|
|
182
|
+
query_values.append(str(netaddr.IPAddress(v)))
|
|
183
|
+
except (AddrFormatError, ValueError):
|
|
184
|
+
pass
|
|
185
|
+
|
|
186
|
+
return queryset.filter(parental_agents__overlap=query_values)
|
|
187
|
+
|
|
170
188
|
def filter_arpa_network(self, queryset, name, value):
|
|
171
189
|
if not value:
|
|
172
190
|
return queryset
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
from packaging.version import Version
|
|
2
2
|
|
|
3
3
|
from django import forms
|
|
4
|
-
from django.contrib.postgres.forms import SimpleArrayField
|
|
5
4
|
from django.utils.translation import gettext_lazy as _
|
|
6
5
|
|
|
7
6
|
from netbox.forms import (
|
|
@@ -66,7 +65,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
66
65
|
"cds_digest_types",
|
|
67
66
|
"parent_ds_ttl",
|
|
68
67
|
"parent_propagation_delay",
|
|
69
|
-
"parental_agents",
|
|
70
68
|
name=_("Parent Delegation"),
|
|
71
69
|
),
|
|
72
70
|
FieldSet(
|
|
@@ -147,11 +145,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
147
145
|
label=_("Parent Propagation Delay"),
|
|
148
146
|
placeholder=DNSSECPolicy.get_fallback_setting("parent_propagation_delay"),
|
|
149
147
|
)
|
|
150
|
-
parental_agents = SimpleArrayField(
|
|
151
|
-
required=False,
|
|
152
|
-
base_field=forms.GenericIPAddressField(),
|
|
153
|
-
label=_("Parental Agents"),
|
|
154
|
-
)
|
|
155
148
|
|
|
156
149
|
class Meta:
|
|
157
150
|
model = DNSSECPolicy
|
|
@@ -174,7 +167,6 @@ class DNSSECPolicyForm(TenancyForm, NetBoxModelForm):
|
|
|
174
167
|
"cds_digest_types",
|
|
175
168
|
"parent_ds_ttl",
|
|
176
169
|
"parent_propagation_delay",
|
|
177
|
-
"parental_agents",
|
|
178
170
|
"use_nsec3",
|
|
179
171
|
"nsec3_iterations",
|
|
180
172
|
"nsec3_opt_out",
|
|
@@ -219,7 +211,6 @@ class DNSSECPolicyFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
219
211
|
"cds_digest_types",
|
|
220
212
|
"parent_ds_ttl",
|
|
221
213
|
"parent_propagation_delay",
|
|
222
|
-
"parental_agents",
|
|
223
214
|
name=_("Parent Delegation"),
|
|
224
215
|
),
|
|
225
216
|
FieldSet(
|
|
@@ -320,10 +311,6 @@ class DNSSECPolicyFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
320
311
|
required=False,
|
|
321
312
|
label=_("Parent Propagation Delay"),
|
|
322
313
|
)
|
|
323
|
-
parental_agents = forms.GenericIPAddressField(
|
|
324
|
-
required=False,
|
|
325
|
-
label=_("Parental Agent"),
|
|
326
|
-
)
|
|
327
314
|
use_nsec3 = forms.NullBooleanField(
|
|
328
315
|
required=False,
|
|
329
316
|
widget=forms.Select(choices=BOOLEAN_WITH_BLANK_CHOICES),
|
|
@@ -427,7 +414,6 @@ class DNSSECPolicyImportForm(NetBoxModelImportForm):
|
|
|
427
414
|
"cds_digest_types",
|
|
428
415
|
"parent_ds_ttl",
|
|
429
416
|
"parent_propagation_delay",
|
|
430
|
-
"parental_agents",
|
|
431
417
|
"use_nsec3",
|
|
432
418
|
"nsec3_iterations",
|
|
433
419
|
"nsec3_opt_out",
|
|
@@ -508,11 +494,6 @@ class DNSSECPolicyBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
508
494
|
required=False,
|
|
509
495
|
label=_("Parent Propagation Delay"),
|
|
510
496
|
)
|
|
511
|
-
parental_agents = SimpleArrayField(
|
|
512
|
-
required=False,
|
|
513
|
-
base_field=forms.GenericIPAddressField(),
|
|
514
|
-
label=_("Parental Agents"),
|
|
515
|
-
)
|
|
516
497
|
use_nsec3 = forms.NullBooleanField(
|
|
517
498
|
required=False,
|
|
518
499
|
widget=BulkEditNullBooleanSelect(),
|
|
@@ -566,7 +547,6 @@ class DNSSECPolicyBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
566
547
|
"cds_digest_types",
|
|
567
548
|
"parent_ds_ttl",
|
|
568
549
|
"parent_propagation_delay",
|
|
569
|
-
"parental_agents",
|
|
570
550
|
name=_("Parent Delegation"),
|
|
571
551
|
),
|
|
572
552
|
FieldSet(
|
|
@@ -5,6 +5,7 @@ from django.db import transaction
|
|
|
5
5
|
from django.conf import settings
|
|
6
6
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
|
7
7
|
from django.core.exceptions import ValidationError
|
|
8
|
+
from django.contrib.postgres.forms import SimpleArrayField
|
|
8
9
|
from django.utils.translation import gettext_lazy as _
|
|
9
10
|
|
|
10
11
|
from netbox.forms import (
|
|
@@ -242,6 +243,12 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
242
243
|
label=_("SOA Serial"),
|
|
243
244
|
)
|
|
244
245
|
|
|
246
|
+
parental_agents = SimpleArrayField(
|
|
247
|
+
required=False,
|
|
248
|
+
base_field=forms.GenericIPAddressField(),
|
|
249
|
+
label=_("Parental Agents"),
|
|
250
|
+
)
|
|
251
|
+
|
|
245
252
|
rfc2317_prefix = RFC2317NetworkFormField(
|
|
246
253
|
required=False,
|
|
247
254
|
validators=[validate_ipv4, validate_prefix, validate_rfc2317],
|
|
@@ -282,6 +289,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
282
289
|
FieldSet(
|
|
283
290
|
"dnssec_policy",
|
|
284
291
|
"inline_signing",
|
|
292
|
+
"parental_agents",
|
|
285
293
|
name=_("DNSSEC"),
|
|
286
294
|
),
|
|
287
295
|
FieldSet(
|
|
@@ -386,6 +394,7 @@ class ZoneForm(ZoneTemplateUpdateMixin, TenancyForm, NetBoxModelForm):
|
|
|
386
394
|
"rfc2317_parent_managed",
|
|
387
395
|
"dnssec_policy",
|
|
388
396
|
"inline_signing",
|
|
397
|
+
"parental_agents",
|
|
389
398
|
"registrar",
|
|
390
399
|
"registry_domain_id",
|
|
391
400
|
"expiration_date",
|
|
@@ -425,6 +434,7 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
425
434
|
FieldSet(
|
|
426
435
|
"dnssec_policy_id",
|
|
427
436
|
"inline_signing",
|
|
437
|
+
"parental_agents",
|
|
428
438
|
name=_("DNSSEC"),
|
|
429
439
|
),
|
|
430
440
|
FieldSet(
|
|
@@ -517,6 +527,10 @@ class ZoneFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm):
|
|
|
517
527
|
widget=forms.Select(choices=BOOLEAN_WITH_BLANK_CHOICES),
|
|
518
528
|
label=_("Use Inline Signing"),
|
|
519
529
|
)
|
|
530
|
+
parental_agents = forms.GenericIPAddressField(
|
|
531
|
+
required=False,
|
|
532
|
+
label=_("Parental Agent"),
|
|
533
|
+
)
|
|
520
534
|
registrar_id = DynamicModelMultipleChoiceField(
|
|
521
535
|
queryset=Registrar.objects.all(),
|
|
522
536
|
required=False,
|
|
@@ -756,6 +770,7 @@ class ZoneImportForm(ZoneTemplateUpdateMixin, NetBoxModelImportForm):
|
|
|
756
770
|
"soa_minimum",
|
|
757
771
|
"dnssec_policy",
|
|
758
772
|
"inline_signing",
|
|
773
|
+
"parental_agents",
|
|
759
774
|
"rfc2317_prefix",
|
|
760
775
|
"rfc2317_parent_managed",
|
|
761
776
|
"registrar",
|
|
@@ -886,6 +901,11 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
886
901
|
widget=BulkEditNullBooleanSelect(),
|
|
887
902
|
label=_("Use Inline Signing"),
|
|
888
903
|
)
|
|
904
|
+
parental_agents = SimpleArrayField(
|
|
905
|
+
required=False,
|
|
906
|
+
base_field=forms.GenericIPAddressField(),
|
|
907
|
+
label=_("Parental Agents"),
|
|
908
|
+
)
|
|
889
909
|
registrar = DynamicModelChoiceField(
|
|
890
910
|
queryset=Registrar.objects.all(),
|
|
891
911
|
required=False,
|
|
@@ -962,6 +982,7 @@ class ZoneBulkEditForm(NetBoxModelBulkEditForm):
|
|
|
962
982
|
FieldSet(
|
|
963
983
|
"dnssec_policy",
|
|
964
984
|
"inline_signing",
|
|
985
|
+
"parental_agents",
|
|
965
986
|
name=_("DNSSEC"),
|
|
966
987
|
),
|
|
967
988
|
FieldSet(
|
netbox_plugin_dns-1.2.9/netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Generated by Django 5.1.8 on 2025-04-22 21:45
|
|
2
|
+
|
|
3
|
+
import django.contrib.postgres.fields
|
|
4
|
+
from django.db import migrations, models
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Migration(migrations.Migration):
|
|
8
|
+
|
|
9
|
+
dependencies = [
|
|
10
|
+
("netbox_dns", "0019_dnssecpolicy_parental_agents"),
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
operations = [
|
|
14
|
+
migrations.RemoveField(
|
|
15
|
+
model_name="dnssecpolicy",
|
|
16
|
+
name="parental_agents",
|
|
17
|
+
),
|
|
18
|
+
migrations.AddField(
|
|
19
|
+
model_name="zone",
|
|
20
|
+
name="parental_agents",
|
|
21
|
+
field=django.contrib.postgres.fields.ArrayField(
|
|
22
|
+
base_field=models.GenericIPAddressField(),
|
|
23
|
+
blank=True,
|
|
24
|
+
default=list,
|
|
25
|
+
null=True,
|
|
26
|
+
size=None,
|
|
27
|
+
),
|
|
28
|
+
),
|
|
29
|
+
]
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
from django.db import models
|
|
2
2
|
from django.urls import reverse
|
|
3
|
-
from django.contrib.postgres.fields import ArrayField
|
|
4
3
|
from django.utils.translation import gettext_lazy as _
|
|
5
4
|
|
|
6
5
|
from netbox.models import NetBoxModel
|
|
@@ -118,14 +117,6 @@ class DNSSECPolicy(ContactsMixin, NetBoxModel):
|
|
|
118
117
|
blank=True,
|
|
119
118
|
null=True,
|
|
120
119
|
)
|
|
121
|
-
parental_agents = ArrayField(
|
|
122
|
-
base_field=models.GenericIPAddressField(
|
|
123
|
-
protocol="both",
|
|
124
|
-
),
|
|
125
|
-
blank=True,
|
|
126
|
-
null=True,
|
|
127
|
-
default=list,
|
|
128
|
-
)
|
|
129
120
|
|
|
130
121
|
use_nsec3 = models.BooleanField(
|
|
131
122
|
verbose_name=_("Use NSEC3"),
|
|
@@ -17,6 +17,7 @@ from django.db.models.signals import m2m_changed
|
|
|
17
17
|
from django.urls import reverse
|
|
18
18
|
from django.dispatch import receiver
|
|
19
19
|
from django.conf import settings
|
|
20
|
+
from django.contrib.postgres.fields import ArrayField
|
|
20
21
|
from django.utils.translation import gettext_lazy as _
|
|
21
22
|
|
|
22
23
|
from netbox.models import NetBoxModel
|
|
@@ -193,6 +194,14 @@ class Zone(ObjectModificationMixin, ContactsMixin, NetBoxModel):
|
|
|
193
194
|
help_text=_("Use inline signing for DNSSEC"),
|
|
194
195
|
default=True,
|
|
195
196
|
)
|
|
197
|
+
parental_agents = ArrayField(
|
|
198
|
+
base_field=models.GenericIPAddressField(
|
|
199
|
+
protocol="both",
|
|
200
|
+
),
|
|
201
|
+
blank=True,
|
|
202
|
+
null=True,
|
|
203
|
+
default=list,
|
|
204
|
+
)
|
|
196
205
|
registrar = models.ForeignKey(
|
|
197
206
|
verbose_name=_("Registrar"),
|
|
198
207
|
to="Registrar",
|
|
@@ -118,16 +118,6 @@
|
|
|
118
118
|
<th scope="row">{% trans "Parent Propagation Delay" %}</th>
|
|
119
119
|
<td>{{ object.parent_propagation_delay|placeholder }}</td>
|
|
120
120
|
</tr>
|
|
121
|
-
<tr>
|
|
122
|
-
<th scope="row">{% trans "Parental Agents" %}</th>
|
|
123
|
-
<td>
|
|
124
|
-
<table>
|
|
125
|
-
{% for parental_agent in object.parental_agents %}
|
|
126
|
-
<tr><td>{{ parental_agent }}</td></tr>
|
|
127
|
-
{% endfor %}
|
|
128
|
-
</table>
|
|
129
|
-
</td>
|
|
130
|
-
</tr>
|
|
131
121
|
</table>
|
|
132
122
|
</div>
|
|
133
123
|
<div class="card">
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone.html
RENAMED
|
@@ -108,6 +108,16 @@
|
|
|
108
108
|
<th scope="row">{% trans "Use Inline Signing" %}</th>
|
|
109
109
|
<td>{% checkmark object.inline_signing %}</td>
|
|
110
110
|
</tr>
|
|
111
|
+
<tr>
|
|
112
|
+
<th scope="row">{% trans "Parental Agents" %}</th>
|
|
113
|
+
<td>
|
|
114
|
+
<table>
|
|
115
|
+
{% for parental_agent in object.parental_agents %}
|
|
116
|
+
<tr><td>{{ parental_agent }}</td></tr>
|
|
117
|
+
{% endfor %}
|
|
118
|
+
</table>
|
|
119
|
+
</td>
|
|
120
|
+
</tr>
|
|
111
121
|
</table>
|
|
112
122
|
</div>
|
|
113
123
|
{% endif %}
|
|
@@ -91,6 +91,7 @@ netbox_dns/migrations/0017_dnssec_policy_zone_zone_template.py
|
|
|
91
91
|
netbox_dns/migrations/0018_zone_domain_status_zone_expiration_date.py
|
|
92
92
|
netbox_dns/migrations/0019_dnssecpolicy_parental_agents.py
|
|
93
93
|
netbox_dns/migrations/0020_netbox_3_4.py
|
|
94
|
+
netbox_dns/migrations/0020_remove_dnssecpolicy_parental_agents_and_more.py
|
|
94
95
|
netbox_dns/migrations/0021_record_ip_address.py
|
|
95
96
|
netbox_dns/migrations/0022_search.py
|
|
96
97
|
netbox_dns/migrations/0023_alter_record_value.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/nameserver.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/record_template.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/registrar.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/api/serializers_/zone_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/choices/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/record_template.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/filtersets/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/forms/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -90,6 +90,7 @@ class NetBoxDNSZoneType(NetBoxObjectType):
|
|
|
90
90
|
| None
|
|
91
91
|
)
|
|
92
92
|
inline_signing: bool
|
|
93
|
+
parental_agents: List[str]
|
|
93
94
|
registrar: (
|
|
94
95
|
Annotated["NetBoxDNSRegistrarType", strawberry.lazy("netbox_dns.graphql.types")]
|
|
95
96
|
| None
|
|
@@ -214,7 +215,6 @@ class NetBoxDNSDNSSECPolicyType(NetBoxObjectType):
|
|
|
214
215
|
cds_digest_types: List[str]
|
|
215
216
|
parent_ds_ttl: BigInt | None
|
|
216
217
|
parent_propagation_delay: BigInt | None
|
|
217
|
-
parental_agents: List[str]
|
|
218
218
|
use_nsec3: bool
|
|
219
219
|
nsec3_iterations: BigInt | None
|
|
220
220
|
nsec3_opt_out: bool
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/de/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/en/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/locale/fr/LC_MESSAGES/django.mo
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/setup_dnssync.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/management/commands/update_soa.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0003_default_view.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0006_templating.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0008_view_prefixes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0012_natural_ordering.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0020_netbox_3_4.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0021_record_ip_address.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0023_alter_record_value.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0025_ipam_coupling_cf.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0028_rfc2317_fields.py
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/migrations/0029_record_fqdn.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/mixins/object_modification.py
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/models/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/dnssec_key_template.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/tables/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/nameserver.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/record.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/registrar.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view/button.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view/prefix.html
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/view.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/base.html
RENAMED
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/child.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/templates/netbox_dns/zone/record.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_dns/views/registration_contact.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{netbox_plugin_dns-1.2.8 → netbox_plugin_dns-1.2.9}/netbox_plugin_dns.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|