aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2020-02-25 22:19:07 +0000
committerKai Knoblich <kai@FreeBSD.org>2020-02-25 22:19:07 +0000
commit9cdba54864bc91a1f001627337ddec49f11c9c04 (patch)
tree921819688751034495cc2e0e0305adc94515a21c /UPDATING
parent3c95ee3541ced274e6bd33390cf2c1062a65183d (diff)
downloadports-9cdba54864bc91a1f001627337ddec49f11c9c04.tar.gz
ports-9cdba54864bc91a1f001627337ddec49f11c9c04.zip
net-mgmt/netbox: Update to 2.7.7
* Remove the "post-patch" target because the "requirements.txt" is only used for installations via devel/py-pip. Notable changes since 2.6.12: * Bulk import of device components via CSV files * External file storage support (FTP, S3, SFTP, etc.) * Rack elevations rendered by SVG (= Scalable Vector Graphics) * Separate configuration for Webhooks and Cache databases via Redis * Add ability to clone objects (pre-populate form fields) * Toggle config context display between JSON and YAML * Add support for Redis Sentinel * Further cable and port types * Many other enhancements and bugfixes https://github.com/netbox-community/netbox/blob/v2.7.7/docs/release-notes/version-2.7.md
Notes
Notes: svn path=/head/; revision=527141
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING59
1 files changed, 59 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 4272fbdc8faa..af111fb34be5 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,65 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20200225:
+ AFFECTS: users of net-mgmt/netbox
+ AUTHOR: kai@FreeBSD.org
+
+ 1. Removal of the Topology Maps feature
+
+ The deprecated topology maps feature has been removed. Please replicate
+ any required data to another source before upgrading NetBox to v2.7.7, as
+ any existing topology maps will be deleted.
+
+
+ 2. Changed REDIS database configuration settings
+
+ The REDIS database configuration parameters were splitted up in two
+ discrete subsections named "webhooks" and "caching" with the 2.7 release.
+ This requires modification of the REDIS parameter in configuration.py as
+ follows:
+
+ Old Redis sample configuration:
+
+ REDIS = {
+ 'HOST': 'localhost',
+ 'PORT': 6379,
+ 'PASSWORD': '',
+ 'DATABASE': 0,
+ 'CACHE_DATABASE': 1,
+ 'DEFAULT_TIMEOUT': 300,
+ 'SSL': False,
+ }
+
+ New Redis sample configuration:
+
+ REDIS = {
+ 'webhooks': {
+ 'HOST': 'redis.example.com',
+ 'PORT': 1234,
+ 'PASSWORD': 'foobar',
+ 'DATABASE': 0,
+ 'DEFAULT_TIMEOUT': 300,
+ 'SSL': False,
+ },
+ 'caching': {
+ 'HOST': 'localhost',
+ 'PORT': 6379,
+ 'PASSWORD': '',
+ 'DATABASE': 1,
+ 'DEFAULT_TIMEOUT': 300,
+ 'SSL': False,
+ }
+ }
+
+ Note that the CACHE_DATABASE parameter has been removed and the connection
+ settings have been duplicated for both webhooks and caching. This allows
+ one to make use of separate Redis instances if desired. It is fine to use
+ the same Redis service for both functions, although the database
+ identifiers should be different.
+
+ Please also check the pkg-message and the changelogs for further info.
+
20200223:
AFFECTS: users of security/gsasl
AUTHOR: hrs@FreeBSD.org