11 KiB
NetBox v2.8
v2.8.5 (FUTURE)
Note: The minimum required version of PostgreSQL is now 9.6.
Enhancements
- #4665 - Add NEMA L14 and L21 power port/outlet types
Bug Fixes
- #3304 - Fix caching invalidation issue related to device/virtual machine primary IP addresses
- #4644 - Fix ordering of services table by parent
- #4646 - Correct UI link for reports with custom name
- #4647 - Fix caching invalidation issue related to assigning new IP addresses to interfaces
- #4648 - Fix bulk CSV import of child devices
- #4649 - Fix interface assignment for bulk-imported IP addresses
- #4684 - Fix ignored comment field when adding device type via YAML/JSON import.
v2.8.4 (2020-05-13)
Enhancements
- #4632 - Extend email configuration parameters to support SSL/TLS
Bug Fixes
- #4598 - Display error message when invalid cable length is specified
- #4604 - Multi-position rear ports may only be connected to other rear ports
- #4607 - Missing Contextual help for API Tokens
- #4613 - Fix tag assignment on config contexts (regression from #4527)
- #4617 - Restore IP prefix depth notation in list view
- #4629 - Replicate assigned interface when cloning IP addresses
- #4633 - Bump django-rq to v2.3.2 to fix ImportError with rq 1.4.0
- #4634 - Inventory Item List view exception caused by incorrect accessor definition
v2.8.3 (2020-05-06)
Bug Fixes
- #4593 - Fix AttributeError exception when viewing object lists as a non-authenticated user
v2.8.2 (2020-05-06)
Enhancements
- #492 - Enable toggling and rearranging table columns
- #3147 - Allow specifying related objects by arbitrary attribute during CSV import
- #3064 - Include tags in object lists as a toggleable table column
- #3294 - Implement mechanism for storing user preferences
- #4421 - Retain user's preference for config context format
- #4502 - Enable configuration of proxies for outbound HTTP requests
- #4531 - Retain user's preference for page length
- #4554 - Add ServerTech's HDOT Cx power outlet type
Bug Fixes
- #4527 - Fix assignment of certain tags to config contexts
- #4545 - Removed all squashed schema migrations to allow direct upgrades from very old releases
- #4548 - Fix tracing cables through a single RearPort
- #4549 - Fix encoding unicode webhook body data
- #4556 - Update form for adding devices to clusters
- #4578 - Prevent setting 0U height on device type with racked instances
- #4584 - Ensure consistent support for filtering objects by
id
across all REST API endpoints - #4588 - Restore ability to add/remove tags on services, virtual chassis in bulk
v2.8.1 (2020-04-23)
Notes
In accordance with the fix in #4459, users that are experiencing invalid nested data with regions, rack groups, or tenant groups can perform a one-time operation using the NetBox shell to rebuild the correct nested relationships after upgrading:
$ python netbox/manage.py nbshell
### NetBox interactive shell (localhost)
### Python 3.6.4 | Django 3.0.5 | NetBox 2.8.1
### lsmodels() will show available models. Use help(<model>) for more info.
>>> Region.objects.rebuild()
>>> RackGroup.objects.rebuild()
>>> TenantGroup.objects.rebuild()
Enhancements
- #4464 - Add 21-inch rack width (ETSI)
Bug Fixes
- #2994 - Prevent modifying termination points of existing cable to ensure end-to-end path integrity
- #3356 - Correct Swagger schema specification for the available prefixes/IPs API endpoints
- #4139 - Enable assigning all relevant attributes during bulk device/VM component creation
- #4336 - Ensure interfaces without a subinterface ID are ordered before subinterface zero
- #4361 - Fix Type of
connection_state
in Swagger schema - #4388 - Fix detection of connected endpoints when connecting rear ports
- #4459 - Fix caching issue resulting in erroneous nested data for regions, rack groups, and tenant groups
- #4489 - Fix display of parent/child role on device type view
- #4496 - Fix exception when validating certain models via REST API
- #4510 - Enforce address family for device primary IPv4/v6 addresses
v2.8.0 (2020-04-13)
NOTE: Beginning with release 2.8.0, NetBox requires Python 3.6 or later.
New Features (Beta)
This releases introduces two new features in beta status. While they are expected to be functional, their precise implementation is subject to change during the v2.8 release cycle. It is recommended to wait until NetBox v2.9 to deploy them in production.
Remote Authentication Support (#2328)
Several new configuration parameters provide support for authenticating an incoming request based on the value of a specific HTTP header. This can be leveraged to employ remote authentication via an nginx or Apache plugin, directing NetBox to create and configure a local user account as needed. The configuration parameters are:
REMOTE_AUTH_ENABLED
- Enables remote authentication (disabled by default)REMOTE_AUTH_HEADER
- The name of the HTTP header which conveys the usernameREMOTE_AUTH_AUTO_CREATE_USER
- Enables the automatic creation of new users (disabled by default)REMOTE_AUTH_DEFAULT_GROUPS
- A list of groups to assign newly created usersREMOTE_AUTH_DEFAULT_PERMISSIONS
- A list of permissions to assign newly created users
If further customization of remote authentication is desired (for instance, if you want to pass group/permission information via HTTP headers as well), NetBox allows you to inject a custom Django authentication backend to retain full control over the authentication and configuration of remote users.
Plugins (#3351)
This release introduces support for custom plugins, which can be used to extend NetBox's functionality beyond what the core product provides. For example, plugins can be used to:
- Add new Django models
- Provide new views with custom templates
- Inject custom template into object views
- Introduce new API endpoints
- Add custom request/response middleware
For NetBox plugins to be recognized, they must be installed and added by name to the PLUGINS
configuration parameter. (Plugin support is disabled by default.) Plugins can be configured under the PLUGINS_CONFIG
parameter. More information can be found the in the plugins documentation.
Enhancements
- #1754 - Added support for nested rack groups
- #3939 - Added support for nested tenant groups
- #4078 - Standardized description fields across all models
- #4195 - Enabled application logging (see logging configuration)
Bug Fixes
- #4474 - Fix population of device types when bulk editing devices
- #4476 - Correct typo in slugs for Infiniband interface types
API Changes
- The
_choices
API endpoints have been removed. Instead, use anOPTIONS
request to a model's endpoint to view the available values for all fields. (#3416) - The
id__in
filter has been removed from all models (#4313). Use the format?id=1&id=2
instead. - dcim.Manufacturer: Added a
description
field - dcim.Platform: Added a
description
field - dcim.Rack: The
/api/dcim/racks/<pk>/units/
endpoint has been replaced with/api/dcim/racks/<pk>/elevation/
. - dcim.RackGroup: Added a
description
field - dcim.Region: Added a
description
field - extras.Tag: Renamed
comments
todescription
; truncated length to 200 characters; removed Markdown rendering - ipam.RIR: Added a
description
field - ipam.VLANGroup: Added a
description
field - tenancy.TenantGroup: Added a
description
field - virtualization.ClusterGroup: Added a
description
field - virtualization.ClusterType: Added a
description
field
Other Changes
- #4081 - The
family
field has been removed from the Aggregate, Prefix, and IPAddress models. The field remains available in the API representations of these models, however the column has been removed from the database table.