Announcements
This new release is compatible with NetBox 3.1.
Breaking Changes
Api endpoints changed `/api/plugins/netbox_dns/` to `/api/plugins/netbox-dns/`:
Old endpoints:
GET /api/plugins/netbox_dns/
{
"nameservers": "http://127.0.0.1:8000/api/plugins/netbox_dns/nameservers/",
"records": "http://127.0.0.1:8000/api/plugins/netbox_dns/records/",
"zones": "http://127.0.0.1:8000/api/plugins/netbox_dns/zones/"
}
New endpoints:
GET /api/plugins/netbox-dns/
{
"nameservers": "http://127.0.0.1:8000/api/plugins/netbox-dns/nameservers/",
"records": "http://127.0.0.1:8000/api/plugins/netbox-dns/records/",
"zones": "http://127.0.0.1:8000/api/plugins/netbox-dns/zones/"
}
What's Changed
* Run the data migration for A/AAAA PTR records non-atomically by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/69
* Provide zone field in the record filter set by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/77
* Do not try to update pointers for non-existing address records by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/71
* Automatically maintain NS records for zones by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/68
* Make SOA MNAME bulk-editable by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/79
* Allow disable_ptr on record CSV import by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/81
* Display an error message for zones without nameservers by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/82
* Added a test suite for the Auto SOA record feature by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/84
* Added unit tests for automatic generation of PTR records by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/86
* fix workflow until 89 fix. by hatsat32 in https://github.com/auroraresearchlab/netbox-dns/pull/90
* Fixed display error in zone record view by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/88
* Automatic generation of SOA Serial numbers based on the modification dates of zone and records by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/74
* Fixed validated viewnames in templates by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/94
* Added BulkEdit functionality for Name Servers by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/96
* Improved the filter interface by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/98
* Implemented Netbox 3.1 compatibility fixes by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/99
* Improved performance of renaming or adding reverse zones by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/101
* add base_url config to the DNSConfig by hatsat32 in https://github.com/auroraresearchlab/netbox-dns/pull/91
* Added missing migration for soa_serial_auto default value by peteeckel in https://github.com/auroraresearchlab/netbox-dns/pull/103
**Full Changelog**: https://github.com/auroraresearchlab/netbox-dns/compare/0.6.0...0.7.0
Thanks to all contributors for their work on this! Especially peteeckel