MFH: r516284

net-mgmt/netbox: Update to 2.6.7

* Change GH_ACCOUNT as upstream's repository redirects to a new location.

Changelog:

Enhancements:
* Add support for additional user defined headers to be added to
  webhook requests
* Add ca_file_path to Webhook model to support user supplied CA certificate
  verification of webhook requests
* Add ChoiceVar for custom scripts
* Add 400GE OSFP interface type
* Add filtering for objects in admin UI

Bug Fixes:
* Rewrite change logging middleware to resolve sporadic testing failures
* Add missing options to connect front ports to console ports
* Enable filter sites/devices/VMs by null region
* Extend upgrade script to validate Python dependencies
* Prevent server error when reassigning a device to a new device bay
* Use get_lldp_neighors_detail to validate LLDP neighbors
* Add missing cache support for the circuits app
* Add missing rack_group field to PowerFeed CSV export
* Limit next/previous rack by assigned rack group

https://github.com/netbox-community/netbox/releases/tag/v2.6.7

Approved by:	ports-secteam (miwi)
This commit is contained in:
Kai Knoblich 2019-11-04 07:25:54 +00:00
parent fd44b3bcfe
commit c81ae62ffa
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/branches/2019Q4/; revision=516618
3 changed files with 10 additions and 6 deletions

View File

@ -2,7 +2,7 @@
PORTNAME= netbox
DISTVERSIONPREFIX= v
DISTVERSION= 2.6.6
DISTVERSION= 2.6.7
CATEGORIES= net-mgmt
MAINTAINER= kai@FreeBSD.org
@ -31,12 +31,12 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=2.2<2.3:www/py-django22@${PY_FLAVO
${PYTHON_PKGNAMEPREFIX}markdown>=2.6.11:textproc/py-markdown@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}netaddr>=0.7.19:net/py-netaddr@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pycryptodome>=3.8.2:security/py-pycryptodome@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pillow>=6.0.0:graphics/py-pillow@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pillow>=6.2.0:graphics/py-pillow@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}psycopg2>=2.8.3:databases/py-psycopg2@${PY_FLAVOR}
USES= pgsql:9.4+ python:3.5+
USE_GITHUB= yes
GH_ACCOUNT= digitalocean
GH_ACCOUNT= netbox-community
SUB_FILES= netboxrc.sample pkg-message
SUB_LIST= DATADIR=${DATADIR} PYTHON_CMD=${PYTHON_CMD} PYTHON_VER=${PYTHON_VER} WWWOWN=${WWWOWN}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1570968180
SHA256 (digitalocean-netbox-v2.6.6_GH0.tar.gz) = f211fba7b35332fb2883ababfd9ffc79de2e7a727710d94a007e0bef0b9376a2
SIZE (digitalocean-netbox-v2.6.6_GH0.tar.gz) = 2414895
TIMESTAMP = 1572671276
SHA256 (netbox-community-netbox-v2.6.7_GH0.tar.gz) = 530d5f49df79ca9f0deab469d9a48349a6386751895188036f99aea16639fcda
SIZE (netbox-community-netbox-v2.6.7_GH0.tar.gz) = 2416096

View File

@ -251,6 +251,8 @@
%%DATADIR%%/extras/migrations/0023_fix_tag_sequences.py
%%DATADIR%%/extras/migrations/0024_scripts.py
%%DATADIR%%/extras/migrations/0025_objectchange_time_index.py
%%DATADIR%%/extras/migrations/0026_webhook_ca_file_path.py
%%DATADIR%%/extras/migrations/0027_webhook_additional_headers.py
%%DATADIR%%/extras/migrations/__init__.py
%%DATADIR%%/extras/models.py
%%DATADIR%%/extras/querysets.py
@ -785,6 +787,7 @@
%%DATADIR%%/utilities/middleware.py
%%DATADIR%%/utilities/models.py
%%DATADIR%%/utilities/paginator.py
%%DATADIR%%/utilities/querysets.py
%%DATADIR%%/utilities/tables.py
%%DATADIR%%/utilities/templates/buttons/add.html
%%DATADIR%%/utilities/templates/buttons/export.html
@ -800,6 +803,7 @@
%%DATADIR%%/utilities/testing.py
%%DATADIR%%/utilities/tests/__init__.py
%%DATADIR%%/utilities/tests/test_api.py
%%DATADIR%%/utilities/tests/test_filters.py
%%DATADIR%%/utilities/tests/test_managers.py
%%DATADIR%%/utilities/tests/test_utils.py
%%DATADIR%%/utilities/utils.py