aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2020-11-10 09:11:35 +0000
committerKai Knoblich <kai@FreeBSD.org>2020-11-10 09:11:35 +0000
commitdbb65ebd01b4e59574ca1b1cdfd5e5e2e1c01908 (patch)
treeef9095634c8b7e3c36e549ad9bd7eec99b528dee /UPDATING
parent07dd16f22045177c66515bb068197f5cca6681cd (diff)
downloadports-dbb65ebd01b4e59574ca1b1cdfd5e5e2e1c01908.tar.gz
ports-dbb65ebd01b4e59574ca1b1cdfd5e5e2e1c01908.zip
net-mgmt/netbox: Update to 2.9.8
* Limit the version ranges of the required Python packages and use very narrow ranges for those ones, which often cause regressions. That is because upstream already uses fixed Python package dependencies for a while and had relaxed them for a short period of time. However, because it led to regressions when some Python packages were updated during that time, upstream has been using fixed package dependencies again since then. Changelog since 2.7.12: It contains many bugfixes/enhancements and the following new features: * Object-Based Permissions * Background Execution of Scripts & Reports * Named Virtual Chassis * Changes to Tag Creation * Dedicated Model for VM Interfaces * REST API Endpoints for Users and Groups * Remote Authentication Support * Plugins https://github.com/netbox-community/netbox/blob/v2.8.9/docs/release-notes/version-2.9.md https://github.com/netbox-community/netbox/blob/v2.8.9/docs/release-notes/version-2.8.md
Notes
Notes: svn path=/head/; revision=554823
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING23
1 files changed, 23 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 60545d274dd3..4605bafb8430 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,29 @@ 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.
+20201110:
+ AFFECTS: users of net-mgmt/netbox
+ AUTHOR: kai@FreeBSD.org
+
+ Changes related to the NetBox configuration:
+
+ 1. If in use, LDAP authentication must be enabled by setting
+ REMOTE_AUTH_BACKEND to 'netbox.authentication.LDAPBackend'. (The LDAP
+ configuration parameters in ldap_config.py remain unchanged.)
+
+ 2. REMOTE_AUTH_DEFAULT_PERMISSIONS now takes a dictionary rather than a
+ list. This is a mapping of permission names to a dictionary of
+ constraining attributes, or None.
+
+ For example, ['dcim.add_site', 'dcim.change_site'] would become
+ {'dcim.add_site': None, 'dcim.change_site': None}.
+
+ 3. Support for the DEFAULT_TIMEOUT parameter under REDIS database
+ configuration was removed. Set RQ_DEFAULT_TIMEOUT as a global
+ configuration parameter instead.
+
+ Please also check the pkg-message and the changelogs for further info.
+
20201106:
AFFECTS: users of www/samdruckerserver
AUTHOR: dvl@FreeBSD.org