mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Changelog for #6732; misc fixes
This commit is contained in:
@ -47,7 +47,7 @@ Webhooks now include a `conditions` field, which may be used to specify conditio
|
|||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"attr": "status",
|
"attr": "status.value",
|
||||||
"op": "in",
|
"op": "in",
|
||||||
"value": ["active", "staged"]
|
"value": ["active", "staged"]
|
||||||
}
|
}
|
||||||
@ -61,6 +61,12 @@ A `bridge` field has been added to the interface model for devices and virtual m
|
|||||||
|
|
||||||
Multiple interfaces can be bridged to a single virtual interface to effect a bridge group. Alternatively, two physical interfaces can be bridged to one another, to effect an internal cross-connect.
|
Multiple interfaces can be bridged to a single virtual interface to effect a bridge group. Alternatively, two physical interfaces can be bridged to one another, to effect an internal cross-connect.
|
||||||
|
|
||||||
|
#### Multiple ASNs per Site ([#6732](https://github.com/netbox-community/netbox/issues/6732))
|
||||||
|
|
||||||
|
With the introduction of the new ASN model, NetBox now supports the assignment of multiple ASNs per site. Each ASN instance must have a 32-bit AS number, and may optionally be assigned to a RIR and/or Tenant.
|
||||||
|
|
||||||
|
The `asn` integer field on the site model has been preserved to maintain backward compatability until a later release.
|
||||||
|
|
||||||
#### Single Sign-On (SSO) Authentication ([#7649](https://github.com/netbox-community/netbox/issues/7649))
|
#### Single Sign-On (SSO) Authentication ([#7649](https://github.com/netbox-community/netbox/issues/7649))
|
||||||
|
|
||||||
Support for single sign-on (SSO) authentication has been added via the [python-social-auth](https://github.com/python-social-auth) library. NetBox administrators can configure one of the [supported authentication backends](https://python-social-auth.readthedocs.io/en/latest/intro.html#auth-providers) to enable SSO authentication for users.
|
Support for single sign-on (SSO) authentication has been added via the [python-social-auth](https://github.com/python-social-auth) library. NetBox administrators can configure one of the [supported authentication backends](https://python-social-auth.readthedocs.io/en/latest/intro.html#auth-providers) to enable SSO authentication for users.
|
||||||
@ -86,6 +92,8 @@ Support for single sign-on (SSO) authentication has been added via the [python-s
|
|||||||
|
|
||||||
### REST API Changes
|
### REST API Changes
|
||||||
|
|
||||||
|
* Added the following endpoints for ASNs:
|
||||||
|
* `/api/ipam/asn/`
|
||||||
* Added the following endpoints for contacts:
|
* Added the following endpoints for contacts:
|
||||||
* `/api/tenancy/contact-assignments/`
|
* `/api/tenancy/contact-assignments/`
|
||||||
* `/api/tenancy/contact-groups/`
|
* `/api/tenancy/contact-groups/`
|
||||||
@ -120,16 +128,19 @@ Support for single sign-on (SSO) authentication has been added via the [python-s
|
|||||||
* Added `airflow` field
|
* Added `airflow` field
|
||||||
* dcim.Interface
|
* dcim.Interface
|
||||||
* Added `bridge` field
|
* Added `bridge` field
|
||||||
* Added `rf_role` field
|
|
||||||
* Added `rf_channel` field
|
* Added `rf_channel` field
|
||||||
* Added `rf_channel_frequency` field
|
* Added `rf_channel_frequency` field
|
||||||
* Added `rf_chanel_width` field
|
* Added `rf_channel_width` field
|
||||||
|
* Added `rf_role` field
|
||||||
* Added `tx_power` field
|
* Added `tx_power` field
|
||||||
|
* Added `wireless_link` field
|
||||||
* Added `wwn` field
|
* Added `wwn` field
|
||||||
* `cable_peer` has been renamed to `link_peer`
|
* `cable_peer` has been renamed to `link_peer`
|
||||||
* `cable_peer_type` has been renamed to `link_peer_type`
|
* `cable_peer_type` has been renamed to `link_peer_type`
|
||||||
* dcim.Location
|
* dcim.Location
|
||||||
* Added `tenant` field
|
* Added `tenant` field
|
||||||
|
* dcim.Site
|
||||||
|
* Added `asns` relationship to ipam.ASN
|
||||||
* extras.Webhook
|
* extras.Webhook
|
||||||
* Added the `conditions` field
|
* Added the `conditions` field
|
||||||
* virtualization.VMInterface
|
* virtualization.VMInterface
|
||||||
|
Reference in New Issue
Block a user