mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-24 17:38:37 -06:00
Changelog cnad cleanup for #7853
This commit is contained in:
parent
05d4c127ee
commit
5abfe821bc
@ -69,6 +69,7 @@ Inventory item templates can be arranged hierarchically within a device type, an
|
|||||||
* [#7784](https://github.com/netbox-community/netbox/issues/7784) - Support cluster type assignment for config contexts
|
* [#7784](https://github.com/netbox-community/netbox/issues/7784) - Support cluster type assignment for config contexts
|
||||||
* [#7846](https://github.com/netbox-community/netbox/issues/7846) - Enable associating inventory items with device components
|
* [#7846](https://github.com/netbox-community/netbox/issues/7846) - Enable associating inventory items with device components
|
||||||
* [#7852](https://github.com/netbox-community/netbox/issues/7852) - Enable assigning interfaces to VRFs
|
* [#7852](https://github.com/netbox-community/netbox/issues/7852) - Enable assigning interfaces to VRFs
|
||||||
|
* [#7853](https://github.com/netbox-community/netbox/issues/7853) - Add `speed` and `duplex` fields to interface model
|
||||||
* [#8168](https://github.com/netbox-community/netbox/issues/8168) - Add `min_vid` and `max_vid` fields to VLAN group
|
* [#8168](https://github.com/netbox-community/netbox/issues/8168) - Add `min_vid` and `max_vid` fields to VLAN group
|
||||||
* [#8295](https://github.com/netbox-community/netbox/issues/8295) - Webhook URLs can now be templatized
|
* [#8295](https://github.com/netbox-community/netbox/issues/8295) - Webhook URLs can now be templatized
|
||||||
* [#8296](https://github.com/netbox-community/netbox/issues/8296) - Allow disabling custom links
|
* [#8296](https://github.com/netbox-community/netbox/issues/8296) - Allow disabling custom links
|
||||||
@ -100,7 +101,7 @@ Inventory item templates can be arranged hierarchically within a device type, an
|
|||||||
* dcim.FrontPort
|
* dcim.FrontPort
|
||||||
* Added `module` field
|
* Added `module` field
|
||||||
* dcim.Interface
|
* dcim.Interface
|
||||||
* Added `module` and `vrf` fields
|
* Added `module`, `speed`, `duplex`, and `vrf` fields
|
||||||
* dcim.InventoryItem
|
* dcim.InventoryItem
|
||||||
* Added `component_type`, `component_id`, and `role` fields
|
* Added `component_type`, `component_id`, and `role` fields
|
||||||
* Added read-only `component` field
|
* Added read-only `component` field
|
||||||
|
@ -620,8 +620,7 @@ class InterfaceCSVForm(CustomFieldModelCSVForm):
|
|||||||
)
|
)
|
||||||
duplex = CSVChoiceField(
|
duplex = CSVChoiceField(
|
||||||
choices=InterfaceDuplexChoices,
|
choices=InterfaceDuplexChoices,
|
||||||
required=False,
|
required=False
|
||||||
help_text='Duplex'
|
|
||||||
)
|
)
|
||||||
mode = CSVChoiceField(
|
mode = CSVChoiceField(
|
||||||
choices=InterfaceModeChoices,
|
choices=InterfaceModeChoices,
|
||||||
|
@ -546,12 +546,10 @@ class Interface(ModularComponentModel, BaseInterface, LinkTermination, PathEndpo
|
|||||||
help_text='This interface is used only for out-of-band management'
|
help_text='This interface is used only for out-of-band management'
|
||||||
)
|
)
|
||||||
speed = models.PositiveIntegerField(
|
speed = models.PositiveIntegerField(
|
||||||
verbose_name='Speed',
|
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True
|
null=True
|
||||||
)
|
)
|
||||||
duplex = models.CharField(
|
duplex = models.CharField(
|
||||||
verbose_name='Duplex',
|
|
||||||
max_length=50,
|
max_length=50,
|
||||||
blank=True,
|
blank=True,
|
||||||
null=True,
|
null=True,
|
||||||
|
Loading…
Reference in New Issue
Block a user