mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 05:21:55 -06:00
Release v2.8.1
This commit is contained in:
parent
70b8b9ecdb
commit
3ece4f137f
@ -2,6 +2,21 @@
|
||||
|
||||
## v2.8.1 (FUTURE)
|
||||
|
||||
### Notes
|
||||
|
||||
In accordance with the fix in [#4459](https://github.com/netbox-community/netbox/issues/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:
|
||||
|
||||
```text
|
||||
$ 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](https://github.com/netbox-community/netbox/issues/4464) - Add 21-inch rack width (ETSI)
|
||||
@ -19,21 +34,6 @@
|
||||
* [#4496](https://github.com/netbox-community/netbox/issues/4496) - Fix exception when validating certain models via REST API
|
||||
* [#4510](https://github.com/netbox-community/netbox/issues/4510) - Enforce address family for device primary IPv4/v6 addresses
|
||||
|
||||
### Notes
|
||||
|
||||
In accordance with the fix in [#4459](https://github.com/netbox-community/netbox/issues/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:
|
||||
|
||||
```text
|
||||
$ python netbox/manage.py nbshell
|
||||
### NetBox interactive shell (Mac-Pro.local)
|
||||
### Python 3.6.4 | Django 3.0.5 | NetBox 2.8.1-dev
|
||||
### lsmodels() will show available models. Use help(<model>) for more info.
|
||||
>>> Region.objects.rebuild()
|
||||
>>> RackGroup.objects.rebuild()
|
||||
>>> TenantGroup.objects.rebuild()
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## v2.8.0 (2020-04-13)
|
||||
|
@ -16,7 +16,7 @@ from django.core.validators import URLValidator
|
||||
# Environment setup
|
||||
#
|
||||
|
||||
VERSION = '2.8.1-dev'
|
||||
VERSION = '2.8.1'
|
||||
|
||||
# Hostname
|
||||
HOSTNAME = platform.node()
|
||||
|
Loading…
Reference in New Issue
Block a user