diff --git a/docs/administration/permissions.md b/docs/administration/permissions.md index 95f0f0c05..d16d599d9 100644 --- a/docs/administration/permissions.md +++ b/docs/administration/permissions.md @@ -70,8 +70,6 @@ The `$user` token can be used only as a constraint value, or as an item within a ### Default Permissions -!!! info "This feature was introduced in NetBox v3.6." - While permissions are typically assigned to specific groups and/or users, it is also possible to define a set of default permissions that are applied to _all_ authenticated users. This is done using the [`DEFAULT_PERMISSIONS`](../configuration/security.md#default_permissions) configuration parameter. Note that statically configuring permissions for specific users or groups is **not** supported. ### Example Constraint Definitions diff --git a/docs/configuration/security.md b/docs/configuration/security.md index 2ae92285f..a21b82a04 100644 --- a/docs/configuration/security.md +++ b/docs/configuration/security.md @@ -92,8 +92,6 @@ CSRF_TRUSTED_ORIGINS = ( ## DEFAULT_PERMISSIONS -!!! info "This parameter was introduced in NetBox v3.6." - Default: ```python diff --git a/docs/features/customization.md b/docs/features/customization.md index 59ba6dd9c..1fbace3c5 100644 --- a/docs/features/customization.md +++ b/docs/features/customization.md @@ -20,8 +20,6 @@ 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/models/extras/bookmark.md b/docs/models/extras/bookmark.md index 2922a2562..1fd006be9 100644 --- a/docs/models/extras/bookmark.md +++ b/docs/models/extras/bookmark.md @@ -1,7 +1,5 @@ # 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 bd392fe9a..4f4e134ec 100644 --- a/docs/models/extras/customfieldchoiceset.md +++ b/docs/models/extras/customfieldchoiceset.md @@ -1,7 +1,5 @@ # 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/extras/tag.md b/docs/models/extras/tag.md index 684be582e..39de48261 100644 --- a/docs/models/extras/tag.md +++ b/docs/models/extras/tag.md @@ -18,8 +18,6 @@ The color to use when displaying the tag in the NetBox UI. ### Object Types -!!! info "This feature was introduced in NetBox v3.6." - The assignment of a tag may be limited to a prescribed set of objects. For example, it may be desirable to limit the application of a specific tag to only devices and virtual machines. If no object types are specified, the tag will be assignable to any type of object. diff --git a/docs/plugins/development/navigation.md b/docs/plugins/development/navigation.md index 45d02f805..90b523473 100644 --- a/docs/plugins/development/navigation.md +++ b/docs/plugins/development/navigation.md @@ -72,8 +72,6 @@ A `PluginMenuItem` has the following attributes: | `staff_only` | - | Display only for users who have `is_staff` set to true (any specified permissions will also be required) | | `buttons` | - | An iterable of PluginMenuButton instances to include | -!!! info "The `staff_only` attribute was introduced in NetBox v3.6.1." - ## Menu Buttons Each menu item can include a set of buttons. These can be handy for providing shortcuts related to the menu item. For instance, most items in NetBox's navigation menu include buttons to create and import new objects. diff --git a/docs/plugins/development/tables.md b/docs/plugins/development/tables.md index 9d57a9603..6fe8357b3 100644 --- a/docs/plugins/development/tables.md +++ b/docs/plugins/development/tables.md @@ -90,8 +90,6 @@ The table column classes listed below are supported for use in plugins. These cl ## Extending Core Tables -!!! info "This feature was introduced in NetBox v3.7." - Plugins can register their own custom columns on core tables using the `register_table_column()` utility function. This allows a plugin to attach additional information, such as relationships to its own models, to built-in object lists. ```python