From owner-svn-ports-all@freebsd.org Mon Nov 4 07:25:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 047051B5847; Mon, 4 Nov 2019 07:25:56 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47648g6JRWz44Dk; Mon, 4 Nov 2019 07:25:55 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BB80420A25; Mon, 4 Nov 2019 07:25:55 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA47Pt3T044802; Mon, 4 Nov 2019 07:25:55 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA47PtUS044799; Mon, 4 Nov 2019 07:25:55 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201911040725.xA47PtUS044799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 4 Nov 2019 07:25:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r516618 - branches/2019Q4/net-mgmt/netbox X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: branches/2019Q4/net-mgmt/netbox X-SVN-Commit-Revision: 516618 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Nov 2019 07:25:56 -0000 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