Received: by mail.netbsd.org (Postfix, from userid 605) id B6F9B84D74; Tue, 6 Feb 2024 16:56:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E5C6084D4B for ; Tue, 6 Feb 2024 16:56:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id HPM5rYOjg0oN for ; Tue, 6 Feb 2024 16:56:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5366784D26 for ; Tue, 6 Feb 2024 16:56:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4B47EFA42; Tue, 6 Feb 2024 16:56:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_170723857072420" MIME-Version: 1.0 Date: Tue, 6 Feb 2024 16:56:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-django-debug-toolbar To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240206165610.4B47EFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_170723857072420 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Feb 6 16:56:10 UTC 2024 Modified Files: pkgsrc/www/py-django-debug-toolbar: Makefile distinfo Log Message: py-django-debug-toolbar: updated to 4.3.0 4.3.0 (2024-02-01) ------------------ * Dropped support for Django 4.0. * Added Python 3.12 to test matrix. * Removed outdated third-party panels from the list. * Avoided the unnecessary work of recursively quoting SQL parameters. * Postponed context process in templates panel to include lazy evaluated content. * Fixed template panel to avoid evaluating ``LazyObject`` when not already evaluated. * Added support for Django 5.0. * Refactor the ``utils.get_name_from_obj`` to simulate the behavior of ``django.contrib.admindocs.utils.get_view_name``. * Switched from black to the `ruff formatter `__. * Changed the default position of the toolbar from top to the upper top position. * Added the setting, ``UPDATE_ON_FETCH`` to control whether the toolbar automatically updates to the latest AJAX request or not. It defaults to ``False``. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-django-debug-toolbar/Makefile \ pkgsrc/www/py-django-debug-toolbar/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_170723857072420 Content-Disposition: inline Content-Length: 1785 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-django-debug-toolbar/Makefile diff -u pkgsrc/www/py-django-debug-toolbar/Makefile:1.5 pkgsrc/www/py-django-debug-toolbar/Makefile:1.6 --- pkgsrc/www/py-django-debug-toolbar/Makefile:1.5 Sat Dec 2 08:11:21 2023 +++ pkgsrc/www/py-django-debug-toolbar/Makefile Tue Feb 6 16:56:10 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2023/12/02 08:11:21 adam Exp $ +# $NetBSD: Makefile,v 1.6 2024/02/06 16:56:10 adam Exp $ -DISTNAME= django_debug_toolbar-4.2.0 +DISTNAME= django_debug_toolbar-4.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/g} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-debug-toolbar/} Index: pkgsrc/www/py-django-debug-toolbar/distinfo diff -u pkgsrc/www/py-django-debug-toolbar/distinfo:1.5 pkgsrc/www/py-django-debug-toolbar/distinfo:1.6 --- pkgsrc/www/py-django-debug-toolbar/distinfo:1.5 Sat Dec 2 08:11:21 2023 +++ pkgsrc/www/py-django-debug-toolbar/distinfo Tue Feb 6 16:56:10 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2023/12/02 08:11:21 adam Exp $ +$NetBSD: distinfo,v 1.6 2024/02/06 16:56:10 adam Exp $ -BLAKE2s (django_debug_toolbar-4.2.0.tar.gz) = 1463a7adfc1f5398a838ecbadc22345fdb2ea6a54171fafb34cce7cca75d00fa -SHA512 (django_debug_toolbar-4.2.0.tar.gz) = ff36d92132fd9338e88a2f078747c1e54e7633aecc6babea28ccb0c080b0beb99feccf1d1c00960ba109e3e6e4805562c36c6571842ea3baeda860c71ffcbd50 -Size (django_debug_toolbar-4.2.0.tar.gz) = 259709 bytes +BLAKE2s (django_debug_toolbar-4.3.0.tar.gz) = fa706aa511237093c277d27e7c796d329b966bb91fa9b44e5a2e02ce971e0912 +SHA512 (django_debug_toolbar-4.3.0.tar.gz) = 48e06187289fc92216e5d7c0a77f88ce2fd105eef5ae2bc8dd0d398929c86a9fe021ea1f88f03083174f846f7e43cd07353e1175694733bfa0d55e4aa612c7f3 +Size (django_debug_toolbar-4.3.0.tar.gz) = 261173 bytes --_----------=_170723857072420--