Netbox-plugin-dns

Latest version: v1.2.6

Safety actively analyzes 723625 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 6 of 15

1.0.3

What's Changed
* Implemented Parent/Child information in the Zone detail view by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/290
* Fixed manually coded "linkify" in Zone template by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/291
* Fixed rendering for the RFC2317 card in the Zone detail view by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/293
* Removed additional instances of manually-coded linkify by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/294
* Made the plugin menu more configurable by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/297
* Provide an option to allow additional characters in zone labels by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/300


**Full Changelog**: https://github.com/peteeckel/netbox-plugin-dns/compare/1.0.2...1.0.3

Deprecation Notice
The configuration variable `tolerate_underscores_in_hostnames` has been renamed to the more correct name `tolerate_underscores_in_labels`. The old name will still be accepted, but its use is deprecated. Planned removal: Version 1.2.0 (Spring 2025).

1.0.2

What's Changed
* Improve Documentation by Stathogon in https://github.com/peteeckel/netbox-plugin-dns/pull/274
* Add Ansible named.conf.local generation example by Stathogon in https://github.com/peteeckel/netbox-plugin-dns/pull/276
* Avoid saving records when nothing has changed in their values by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/279
* Made default_view a boolean column in the view table by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/282
* Fixed `__str__` for unsaved Record objects by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/284
* Added leading underscores in all labels to valid domain name patterns by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/286
* Added tests for the correct handling of event rules by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/281


**Full Changelog**: https://github.com/peteeckel/netbox-plugin-dns/compare/1.0.1...1.0.2

1.0.1

What's Changed
* Introduced stricter validation of domain names as part of record values by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/257
* Re-allowed as value for CNAME records by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/259
* Updated using_netbox_dns.md by Stathogon in https://github.com/peteeckel/netbox-plugin-dns/pull/260
* Added validation of SOA SERIAL changes by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/267
* Minor UI cleanup actions for consistency by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/268
* Added documentation for SOA SERIAL checks by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/270
* Included playbook to create zone files for all active zones from NetBox DNS by Stathogon in https://github.com/peteeckel/netbox-plugin-dns/pull/265

New Contributors
* Stathogon made their first contribution in https://github.com/peteeckel/netbox-plugin-dns/pull/260

**Full Changelog**: https://github.com/peteeckel/netbox-plugin-dns/compare/1.0.0...1.0.1

1.0.0

What's Changed
* NetBox 4.0 support and dropped support for earlier versions up to 3.7.8
* Adjusted GitHub workflows to reflect dropped support for Python 3.8 and 3.9
* Replaced references to `extras.plugins` with `netbox.plugins`
* Replaced object references with a reference by object `id`/`pk` in cases where a potentially unsaved object is referenced in `filter()` expressions
* Removed the `ready()` method that accessed the database by calling `ContentType.objects.get_for_model()` because of a `RuntimeWarning` during initialisation
* Changed the `actions` attributes in tables to be dictionaries instead of tuples because of [NetBox PR 14670](https://github.com/netbox-community/netbox/pull/14670)
* Modified the 'Add Record' button in the base template for the zone detail view so it matches the rendition of the other buttons (using `<button>` instead of CSS on the `<a>` element
* Adjusted the menu item buttons to the new UI look by removing the colours
* Refactored filtersets to become compatible with `htmx.ObjectSelectorView`, specifically its `_get_filterset_class()` method.
* Added the `brief_field` attribute to all model serializers
* Added `description` to all models and to `brief_fields` for all serializers matching [NetBox PR 15238](https://github.com/netbox-community/netbox/issues/15238)
* Workaround for [NetBox 15351](https://github.com/netbox-community/netbox/issues/15351): Remove validators from `ZoneSerializer` if `nested=True`
* Renamed `ContentType` to `ObjectType` and changed parameter name to `object_type` [NetBox PR 15327](https://github.com/netbox-community/netbox/pull/15327)
* Added tests for all filter sets to make automated testing by the extended NetBox filter set test framework possible [NetBox PR 15369](https://github.com/netbox-community/netbox/pull/15369)
* Renamed the `object_type` attribute for the IPAM Coupling `ipaddress_dns_zone_id` CF to `related_object_type` [NetBox PR 15366](https://github.com/netbox-community/netbox/pull/15366)
* Added missing filters detected by the new NetBox test functionality from [NetBox PR 15369](https://github.com/netbox-community/netbox/pull/15369)
* Migrated old-style fieldsets to the new `FieldSet` class to remove 'fieldsets contains a non-FieldSet item' warnings [NetBox PR 15415](https://github.com/netbox-community/netbox/pull/15415)
* Reworked the whole GraphQL support to work with Strawberry [NetBox PR 15141](https://github.com/netbox-community/netbox/pull/15141) and added GraphQL tests
* Views are no longer optional with this PR, but a new 'Default View' largely takes the role of the former `view=None` case.

What's Changed
* NetBox 4 Compatibility by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/153
* "Default View" concept by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/242

1.0beta2

What's Changed
* Fixed typo in management command "cleanup_rrset_ttl" by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/236
* Added FQDN to global search by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/240
* Improved get_value_record() based on the new fqdn field by peteeckel in https://github.com/peteeckel/netbox-plugin-dns/pull/243


**Full Changelog**: https://github.com/peteeckel/netbox-plugin-dns/compare/1.0-beta1...1.0-beta2

1.0beta1

Caution: Pre-Release

This release makes NetBox DNS compatible with NetBox 4 in its first pre-release 4.0-beta1.

It is provided for testing purposes only and should not be used in production. There may or may not be a migration path to the final release 1.0.0, so make sure you have a good backup when you install this version.

For a list of changes, please see 153. Full release notes will be published with the final release 1.0.0.

Page 6 of 15

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.