Date: Mon, 4 Nov 2019 07:25:55 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r516618 - branches/2019Q4/net-mgmt/netbox Message-ID: <201911040725.xA47PtUS044799@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Mon Nov 4 07:25:54 2019 New Revision: 516618 URL: https://svnweb.freebsd.org/changeset/ports/516618 Log: 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) Modified: branches/2019Q4/net-mgmt/netbox/Makefile branches/2019Q4/net-mgmt/netbox/distinfo branches/2019Q4/net-mgmt/netbox/pkg-plist Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/net-mgmt/netbox/Makefile ============================================================================== --- branches/2019Q4/net-mgmt/netbox/Makefile Mon Nov 4 07:24:01 2019 (r516617) +++ branches/2019Q4/net-mgmt/netbox/Makefile Mon Nov 4 07:25:54 2019 (r516618) @@ -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: ${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} Modified: branches/2019Q4/net-mgmt/netbox/distinfo ============================================================================== --- branches/2019Q4/net-mgmt/netbox/distinfo Mon Nov 4 07:24:01 2019 (r516617) +++ branches/2019Q4/net-mgmt/netbox/distinfo Mon Nov 4 07:25:54 2019 (r516618) @@ -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 Modified: branches/2019Q4/net-mgmt/netbox/pkg-plist ============================================================================== --- branches/2019Q4/net-mgmt/netbox/pkg-plist Mon Nov 4 07:24:01 2019 (r516617) +++ branches/2019Q4/net-mgmt/netbox/pkg-plist Mon Nov 4 07:25:54 2019 (r516618) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911040725.xA47PtUS044799>