Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=ZrVPC6IV; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=ktfWeNTr Received: by mail.netbsd.org (Postfix, from userid 605) id 4228384D36; Fri, 26 Apr 2024 20:13:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714162385; bh=AVQIP4rwNLCQpCkFlu+7+egK5OSjrcmQt016To63/tE=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=ZrVPC6IVFTHN93lHHj+ykbstzSGLXWU8vNF7OcvsCHUm1ziZLS/39W2TEYdQZNL4R LK6OL8bGi8vXhGuexPIUe8TD+yX32S9nAf5wsW/6t2V0/aAkQeCsw9E7JgzFQidjSO 5KVUMyCBiNqdIGlhPwtsp2UlqdaruojgzatrezvQ= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 339D984CD9 for ; Fri, 26 Apr 2024 20:13:04 +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 9sR0-awyneAr for ; Fri, 26 Apr 2024 20:13:03 +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 9276784CC9 for ; Fri, 26 Apr 2024 20:13:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714162383; bh=AVQIP4rwNLCQpCkFlu+7+egK5OSjrcmQt016To63/tE=; h=Date:From:Subject:To:Reply-To; b=ktfWeNTrBXz9C9jDn2jp5YgCqNkG5EX1FRKKk19CUEGlRmj6Ru9IwYNY/rxTqm0y2 uqNLFRie8OU2RYDRjHYiOsCd0bHXqnWjvARvBc1so4stHFnieADwWnagUH1U98JN9r 0PiyttAFN9qgQUnKuiRImLKOokGwbkbO+cXoobKE= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 838C5FA2C; Fri, 26 Apr 2024 20:13:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171416238350610" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 20:13:03 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-tortoise-orm To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240426201303.838C5FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171416238350610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Apr 26 20:13:03 UTC 2024 Modified Files: pkgsrc/databases/py-tortoise-orm: Makefile distinfo Log Message: py-tortoise-orm: updated to 0.20.1 0.20.1 Added - Add binary compression support for `UUIDField` in `MySQL`. - Only `Model`, `Tortoise`, `BaseDBAsyncClient`, `__version__`, and `connections` are now exported from `tortoise` - Add parameter `validators` to `pydantic_model_creator`. Fixed - Fix order of fields in `ValuesListQuery` when it has more than 10 fields. - Fix pydantic v2 pydantic_model_creator nullable field not optional. - Fix pydantic v2.5 unittest error. - Fix pydantic_model_creator `exclude_readonly` parameter not working. - Fix annotation propagation for non-filter queries. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/py-tortoise-orm/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/py-tortoise-orm/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171416238350610 Content-Disposition: inline Content-Length: 2180 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-tortoise-orm/Makefile diff -u pkgsrc/databases/py-tortoise-orm/Makefile:1.18 pkgsrc/databases/py-tortoise-orm/Makefile:1.19 --- pkgsrc/databases/py-tortoise-orm/Makefile:1.18 Wed Dec 13 19:14:29 2023 +++ pkgsrc/databases/py-tortoise-orm/Makefile Fri Apr 26 20:13:03 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2023/12/13 19:14:29 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2024/04/26 20:13:03 adam Exp $ -DISTNAME= tortoise_orm-0.20.0 +DISTNAME= tortoise_orm-0.20.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=t/tortoise-orm/} @@ -12,7 +12,7 @@ LICENSE= apache-2.0 TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core>=0:../../devel/py-poetry-core DEPENDS+= ${PYPKGPREFIX}-aiosqlite>=0.16.0:../../databases/py-aiosqlite -DEPENDS+= ${PYPKGPREFIX}-iso8601>=0.1.13:../../time/py-iso8601 +DEPENDS+= ${PYPKGPREFIX}-iso8601>=1.0.2:../../time/py-iso8601 DEPENDS+= ${PYPKGPREFIX}-pypika-tortoise>=0.1.6:../../databases/py-pypika-tortoise DEPENDS+= ${PYPKGPREFIX}-pytz>=2020.4:../../time/py-pytz # accel Index: pkgsrc/databases/py-tortoise-orm/distinfo diff -u pkgsrc/databases/py-tortoise-orm/distinfo:1.13 pkgsrc/databases/py-tortoise-orm/distinfo:1.14 --- pkgsrc/databases/py-tortoise-orm/distinfo:1.13 Thu Nov 23 07:58:34 2023 +++ pkgsrc/databases/py-tortoise-orm/distinfo Fri Apr 26 20:13:03 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.13 2023/11/23 07:58:34 adam Exp $ +$NetBSD: distinfo,v 1.14 2024/04/26 20:13:03 adam Exp $ -BLAKE2s (tortoise_orm-0.20.0.tar.gz) = 1af043bb635912fd94b6f7be4a86d9294ba16d9fc8abe80436d3992857b1b1f5 -SHA512 (tortoise_orm-0.20.0.tar.gz) = 21dfd669391dc9f71aec38b4a10c8cff8e3edaeac99f11e121b3c5dcf73fd5aae843987b6146ca9c0f175529dfd6bb7e78d9fdbc8f5e8ba109848cfbb105969e -Size (tortoise_orm-0.20.0.tar.gz) = 131922 bytes +BLAKE2s (tortoise_orm-0.20.1.tar.gz) = 570824951bd8ee426189c4b1d782a348d725a87262be8d7eace69046a35be178 +SHA512 (tortoise_orm-0.20.1.tar.gz) = 181f330b0afc0bf51e9fe2c057cfb0ab5d5258a5a2d9e2385c481b074a6a81dd943db00895f7dfa21cedacc6371e6a2b8c2bb98b125b1da56bea9c6cafde6b50 +Size (tortoise_orm-0.20.1.tar.gz) = 133141 bytes --_----------=_171416238350610--