diff --git a/docs/features/configuration-rendering.md b/docs/features/configuration-rendering.md index caa4417717..9d212a34ee 100644 --- a/docs/features/configuration-rendering.md +++ b/docs/features/configuration-rendering.md @@ -1,7 +1,5 @@ # Configuration Rendering -!!! info "This feature was introduced in NetBox v3.5." - One of the critical aspects of operating a network is ensuring that every network node is configured correctly. By leveraging configuration templates and [context data](./context-data.md), NetBox can render complete configuration files for each device on your network. ```mermaid diff --git a/docs/features/customization.md b/docs/features/customization.md index 1fbace3c5b..59ba6dd9c2 100644 --- a/docs/features/customization.md +++ b/docs/features/customization.md @@ -20,6 +20,8 @@ GET /api/dcim/devices/?tag=monitored&tag=deprecated ## Bookmarks +!!! info "This feature was introduced in NetBox v3.6." + Users can bookmark their most commonly visited objects for convenient access. Bookmarks are listed under a user's profile, and can be displayed with custom filtering and ordering on the user's personal dashboard. ## Custom Fields diff --git a/docs/features/synchronized-data.md b/docs/features/synchronized-data.md index 244a46f442..f266519b66 100644 --- a/docs/features/synchronized-data.md +++ b/docs/features/synchronized-data.md @@ -1,7 +1,5 @@ # Synchronized Data -!!! info "This feature was introduced in NetBox v3.5." - Several models in NetBox support the automatic synchronization of local data from a designated remote source. For example, [configuration templates](./configuration-rendering.md) defined in NetBox can source their content from text files stored in a remote git repository. This accomplished using the core [data source](../models/core/datasource.md) and [data file](../models/core/datafile.md) models. To enable remote data synchronization, the NetBox administrator first designates one or more remote data sources. NetBox currently supports the following source types: diff --git a/docs/integrations/rest-api.md b/docs/integrations/rest-api.md index cf3d11126f..9d6367b3e2 100644 --- a/docs/integrations/rest-api.md +++ b/docs/integrations/rest-api.md @@ -671,8 +671,6 @@ This header specifies the API version in use. This will always match the version ### `X-Request-ID` -!!! info "This feature was introduced in NetBox v3.5." - This header specifies the unique ID assigned to the received API request. It can be very handy for correlating a request with change records. For example, after creating several new objects, you can filter against the object changes API endpoint to retrieve the resulting change records: ``` diff --git a/docs/models/circuits/provideraccount.md b/docs/models/circuits/provideraccount.md index a1748a6d6e..9602a61484 100644 --- a/docs/models/circuits/provideraccount.md +++ b/docs/models/circuits/provideraccount.md @@ -1,7 +1,5 @@ # Provider Accounts -!!! info "This model was introduced in NetBox v3.5." - This model can be used to represent individual accounts associated with a provider. ## Fields diff --git a/docs/models/extras/bookmark.md b/docs/models/extras/bookmark.md index 1fd006be92..2922a25623 100644 --- a/docs/models/extras/bookmark.md +++ b/docs/models/extras/bookmark.md @@ -1,5 +1,7 @@ # Bookmarks +!!! info "This feature was introduced in NetBox v3.6." + A user can bookmark individual objects for convenient access. Bookmarks are listed under a user's profile and can be displayed using a dashboard widget. ## Fields diff --git a/docs/models/extras/customfieldchoiceset.md b/docs/models/extras/customfieldchoiceset.md index 4f4e134ec5..bd392fe9ab 100644 --- a/docs/models/extras/customfieldchoiceset.md +++ b/docs/models/extras/customfieldchoiceset.md @@ -1,5 +1,7 @@ # Custom Field Choice Sets +!!! info "This feature was introduced in NetBox v3.6." + Single- and multi-selection [custom fields](../../customization/custom-fields.md) must define a set of valid choices from which the user may choose when defining the field value. These choices are defined as sets that may be reused among multiple custom fields. A choice set must define a base choice set and/or a set of arbitrary extra choices. diff --git a/docs/models/ipam/asnrange.md b/docs/models/ipam/asnrange.md index 4dcb256242..30d2f49c3e 100644 --- a/docs/models/ipam/asnrange.md +++ b/docs/models/ipam/asnrange.md @@ -1,7 +1,5 @@ # ASN Ranges -!!! info "This model was introduced in NetBox v3.5." - Ranges can be defined to group [AS numbers](./asn.md) numerically and to facilitate their automatic provisioning. Each range must be assigned to a [RIR](./rir.md). ## Fields diff --git a/docs/plugins/development/dashboard-widgets.md b/docs/plugins/development/dashboard-widgets.md index 1842fb61ff..b1c9d0e450 100644 --- a/docs/plugins/development/dashboard-widgets.md +++ b/docs/plugins/development/dashboard-widgets.md @@ -1,7 +1,5 @@ # Dashboard Widgets -!!! info "This feature was introduced in NetBox v3.5." - Each NetBox user can customize his or her personal dashboard by adding and removing widgets and by manipulating the size and position of each. Plugins can register their own dashboard widgets to complement those already available natively. ## The DashboardWidget Class