Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=F0tC9k9R; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=fm1TNtvS Received: by mail.netbsd.org (Postfix, from userid 605) id D233284EC5; Fri, 5 Apr 2024 10:40:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712313619; bh=Xy4iLno/7svjptD4wb9fZG58Ky01WkIHajYStpIHz70=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=F0tC9k9RTCM282mIWjzNr0D6gxts24VtPt3D5nlR588EC/fjh/8A0Ewhi894ZkjOx 5pHGFRCa8zWpAf6yB1glcWk9KuqkgFdfg0JHO7AVQOYpvsmIAwfaPbfgInV2lv8y+j kzwL3iF2IfWm23I4bWYq/lgFL4GPudaSq/rwFFcE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C2D3484EAD for ; Fri, 5 Apr 2024 10:40:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id uFryJlWsK8vj for ; Fri, 5 Apr 2024 10:40:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 34F9084CD5 for ; Fri, 5 Apr 2024 10:40:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712313617; bh=Xy4iLno/7svjptD4wb9fZG58Ky01WkIHajYStpIHz70=; h=Date:From:Subject:To:Reply-To; b=fm1TNtvSyE56HFJlxPq3suaYq42wDeI71qtTyTejcxEOSnZ8qzTSHecvE67gmfzRS CTcugCDlFsPRIrlk7sUjSfPcqV59GTtePKwYa+GSTWfxNYsg1e/mnfTXkiaigkuwGD GG/uTSoxuHZ/1abzAW1qqJ6ylESGj2hQ5ZwUl2VQ= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 30C2AFA2C; Fri, 5 Apr 2024 10:40:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712313617245170" MIME-Version: 1.0 Date: Fri, 5 Apr 2024 10:40:17 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-django To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240405104017.30C2AFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712313617245170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Fri Apr 5 10:40:17 UTC 2024 Modified Files: pkgsrc/www/py-django: Makefile distinfo Log Message: py-django: updated to 5.0.4 Django 5.0.4 fixes several bugs in 5.0.3. Bugfixes Fixed a bug in Django 5.0 that caused a crash of Model.full_clean() on fields with expressions in db_default. As a consequence, Model.full_clean() no longer validates for empty values in fields with db_default Fixed a regression in Django 5.0 where the AdminFileWidget could be rendered with two id attributes on the “Clear” checkbox Fixed a bug in Django 5.0 that caused a migration crash on PostgreSQL 15+ when adding a partial UniqueConstraint with nulls_distinct Fixed a crash in Django 5.0 when performing queries involving table aliases and lookups on a GeneratedField of the aliased table Fixed a bug in Django 5.0 that caused a migration crash when adding a GeneratedField relying on the __contains or __icontains lookups or using a Value containing a "%" To generate a diff of this commit: cvs rdiff -u -r1.126 -r1.127 pkgsrc/www/py-django/Makefile cvs rdiff -u -r1.102 -r1.103 pkgsrc/www/py-django/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712313617245170 Content-Disposition: inline Content-Length: 1572 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-django/Makefile diff -u pkgsrc/www/py-django/Makefile:1.126 pkgsrc/www/py-django/Makefile:1.127 --- pkgsrc/www/py-django/Makefile:1.126 Mon Mar 4 15:49:51 2024 +++ pkgsrc/www/py-django/Makefile Fri Apr 5 10:40:17 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.126 2024/03/04 15:49:51 adam Exp $ +# $NetBSD: Makefile,v 1.127 2024/04/05 10:40:17 adam Exp $ -DISTNAME= Django-5.0.3 +DISTNAME= Django-5.0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= www python MASTER_SITES= https://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/ Index: pkgsrc/www/py-django/distinfo diff -u pkgsrc/www/py-django/distinfo:1.102 pkgsrc/www/py-django/distinfo:1.103 --- pkgsrc/www/py-django/distinfo:1.102 Mon Mar 4 15:49:51 2024 +++ pkgsrc/www/py-django/distinfo Fri Apr 5 10:40:17 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.102 2024/03/04 15:49:51 adam Exp $ +$NetBSD: distinfo,v 1.103 2024/04/05 10:40:17 adam Exp $ -BLAKE2s (Django-5.0.3.tar.gz) = 18a278fb16453744905534d9e62ec9601641e476dc174ec9f55b89777f7b991d -SHA512 (Django-5.0.3.tar.gz) = ed1899007898fc1f6c0889b28fc94016aa9cd2a3556f486bf77efc4310d04896c73bcef93fb4c9162ce884da01c557f6343a20da15a7d6cf2193fd9e88e0dadb -Size (Django-5.0.3.tar.gz) = 10620661 bytes +BLAKE2s (Django-5.0.4.tar.gz) = 3454485079d0f7f3f9e56daf6717cc0dbc6d807851ace67ff6ac171c583128b6 +SHA512 (Django-5.0.4.tar.gz) = 322b0de4e9e533831937b9f50929e150d9c1ff3045e92b3530d49708df05ad0139819a1056c3def529e93826d26ef8e04f1ced655525fe8c9c2d449c2c701f28 +Size (Django-5.0.4.tar.gz) = 10638006 bytes --_----------=_1712313617245170--