From nobody Wed Oct 06 13:10:50 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id A848C12DE86A; Wed, 6 Oct 2021 13:10:50 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HPZZf4SMjz3Hv2; Wed, 6 Oct 2021 13:10:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 797FA20B0D; Wed, 6 Oct 2021 13:10:50 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 196DAoqa019657; Wed, 6 Oct 2021 13:10:50 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 196DAotF019656; Wed, 6 Oct 2021 13:10:50 GMT (envelope-from git) Date: Wed, 6 Oct 2021 13:10:50 GMT Message-Id: <202110061310.196DAotF019656@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Kai Knoblich Subject: git: 3920d9afce73 - main - net-mgmt/netbox: Update to 3.0.5 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: kai X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3920d9afce735b366e12f36eb95b2cca555ab837 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by kai: URL: https://cgit.FreeBSD.org/ports/commit/?id=3920d9afce735b366e12f36eb95b2cca555ab837 commit 3920d9afce735b366e12f36eb95b2cca555ab837 Author: Kai Knoblich AuthorDate: 2021-10-06 13:05:40 +0000 Commit: Kai Knoblich CommitDate: 2021-10-06 13:05:40 +0000 net-mgmt/netbox: Update to 3.0.5 Changelog: Enhancements: * Always show IP addresses tab under prefix view * Cache rendered REST API specifications * Add image attachment support for circuits, power panels * Enable arbitrary ordering of custom scripts * Don't select hidden rows when selecting all in a table Bug Fixes: * Fix bulk editing of child prefixes under aggregate view * Custom field columns should be removed from tables upon their deletion * Remove errant markup for null values in CSV export * Prevent rack elevations from overlapping when higher width is specified * Fix flashing when server, client, and browser color-mode preferences are mismatched * Fix AttributeError exception when rendering export template for devices via REST API * Pin jsonschema package to v3.2.0 to fix REST API docs rendering * Fix exception in UI when adding member devices to virtual chassis * Fix exception in UI when adding child device to device bay * Prevent exception when filtering objects list by invalid tag * Housekeeping command should honor zero verbosity https://github.com/netbox-community/netbox/releases/tag/v3.0.5 --- net-mgmt/netbox/Makefile | 3 ++- net-mgmt/netbox/distinfo | 6 +++--- net-mgmt/netbox/pkg-plist | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/net-mgmt/netbox/Makefile b/net-mgmt/netbox/Makefile index 090947a8c55d..89da23591930 100644 --- a/net-mgmt/netbox/Makefile +++ b/net-mgmt/netbox/Makefile @@ -1,6 +1,6 @@ PORTNAME= netbox DISTVERSIONPREFIX= v -DISTVERSION= 3.0.4 +DISTVERSION= 3.0.5 CATEGORIES= net-mgmt python MAINTAINER= kai@FreeBSD.org @@ -39,6 +39,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django32>=3.2.7<3.3:www/py-django32@${PY_FLA ${PYTHON_PKGNAMEPREFIX}dj32-graphene-django>=2.15.0<3:devel/py-dj32-graphene-django@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}django-pglocks>=1.0.4<1.1:www/py-django-pglocks@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=3.0.1<4:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jsonschema>=3.2.0<4:devel/py-jsonschema@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markdown>=3.3.4<3.5:textproc/py-markdown@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}netaddr>=0.8.0<1:net/py-netaddr@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pillow>=8.2.0<9:graphics/py-pillow@${PY_FLAVOR} \ diff --git a/net-mgmt/netbox/distinfo b/net-mgmt/netbox/distinfo index b8e664611e4d..620a580ab53c 100644 --- a/net-mgmt/netbox/distinfo +++ b/net-mgmt/netbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1632927300 -SHA256 (netbox-community-netbox-v3.0.4_GH0.tar.gz) = 10273f484142e0607d5654c0fd1c62801390e8b78365674c8b552fce045edead -SIZE (netbox-community-netbox-v3.0.4_GH0.tar.gz) = 4490751 +TIMESTAMP = 1633454344 +SHA256 (netbox-community-netbox-v3.0.5_GH0.tar.gz) = 6dd92217ad79d90bcc5b91236c2184f81d8fe3bde519f6b4809bfaca02bc064e +SIZE (netbox-community-netbox-v3.0.5_GH0.tar.gz) = 4491864 diff --git a/net-mgmt/netbox/pkg-plist b/net-mgmt/netbox/pkg-plist index 009d471c12a8..224c898a05bb 100644 --- a/net-mgmt/netbox/pkg-plist +++ b/net-mgmt/netbox/pkg-plist @@ -697,7 +697,7 @@ %%DATADIR%%/templates/inc/comments_panel.html %%DATADIR%%/templates/inc/custom_fields_panel.html %%DATADIR%%/templates/inc/filter_list.html -%%DATADIR%%/templates/inc/image_attachments.html +%%DATADIR%%/templates/inc/image_attachments_panel.html %%DATADIR%%/templates/inc/messages.html %%DATADIR%%/templates/inc/paginator.html %%DATADIR%%/templates/inc/panel_table.html