!!! warning "Python 3.8 or Later Required"
NetBox v3.2 requires Python 3.8 or later.
asn field has been removed from the site model. Please use the ASN model introduced in NetBox v3.1 to track ASN assignments for sites.asn query filter for sites now matches against the AS number of assigned ASNs.contact_name, contact_phone, and contact_email fields have been removed from the site model. Please use the new contact model introduced in NetBox v3.1 to store contact information for sites.Custom choices can be now added to most status fields in NetBox. This is done by defining the FIELD_CHOICES configuration parameter to map field identifiers to an iterable of custom choices. These choices are populated automatically when NetBox initializes. For example, the following will add three custom choices for the site status field:
FIELD_CHOICES = {
'dcim.Site.status': (
('foo', 'Foo'),
('bar', 'Bar'),
('baz', 'Baz'),
)
}
asn, contact_name, contact_phone, and contact_email fields