From 699b4dfade2d37cf557e00a67ee9efa26261c935 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 1 Aug 2023 14:25:25 -0400 Subject: [PATCH] Update feature introduction flags --- docs/features/configuration-rendering.md | 2 -- docs/features/customization.md | 2 ++ docs/features/synchronized-data.md | 2 -- docs/integrations/rest-api.md | 2 -- docs/models/circuits/provideraccount.md | 2 -- docs/models/extras/bookmark.md | 2 ++ docs/models/extras/customfieldchoiceset.md | 2 ++ docs/models/ipam/asnrange.md | 2 -- docs/plugins/development/dashboard-widgets.md | 2 -- 9 files changed, 6 insertions(+), 12 deletions(-) diff --git a/docs/features/configuration-rendering.md b/docs/features/configuration-rendering.md index caa441771..9d212a34e 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 1fbace3c5..59ba6dd9c 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 244a46f44..f266519b6 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 cf3d11126..9d6367b3e 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 a1748a6d6..9602a6148 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 1fd006be9..2922a2562 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 4f4e134ec..bd392fe9a 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 4dcb25624..30d2f49c3 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 1842fb61f..b1c9d0e45 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