Received: by mail.netbsd.org (Postfix, from userid 605) id 0807C84EBD; Thu, 29 Dec 2022 12:40:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 39B2F84EB4 for ; Thu, 29 Dec 2022 12:40:52 +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 eqhCvQnV6ONR for ; Thu, 29 Dec 2022 12:40:51 +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 A9B5684E67 for ; Thu, 29 Dec 2022 12:40:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9D86FFA90; Thu, 29 Dec 2022 12:40:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1672317651127200" MIME-Version: 1.0 Date: Thu, 29 Dec 2022 12:40:51 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-httpcore To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221229124051.9D86FFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1672317651127200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Dec 29 12:40:51 UTC 2022 Modified Files: pkgsrc/www/py-httpcore: Makefile distinfo Log Message: py-httpcore: updated to 0.16.3 0.16.3 - Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections. - Forwarding HTTP proxies use a connection-per-remote-host. Required by some proxy implementations. - Don't raise `RuntimeError` when closing a connection pool with active connections. Removes some error cases when cancellations are used. - Lazy import `anyio`, so that it's no longer a hard dependancy, and isn't imported if unused. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/www/py-httpcore/Makefile \ pkgsrc/www/py-httpcore/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1672317651127200 Content-Disposition: inline Content-Length: 1565 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-httpcore/Makefile diff -u pkgsrc/www/py-httpcore/Makefile:1.21 pkgsrc/www/py-httpcore/Makefile:1.22 --- pkgsrc/www/py-httpcore/Makefile:1.21 Sat Nov 26 17:58:27 2022 +++ pkgsrc/www/py-httpcore/Makefile Thu Dec 29 12:40:51 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2022/11/26 17:58:27 adam Exp $ +# $NetBSD: Makefile,v 1.22 2022/12/29 12:40:51 adam Exp $ -DISTNAME= httpcore-0.16.2 +DISTNAME= httpcore-0.16.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=h/httpcore/} Index: pkgsrc/www/py-httpcore/distinfo diff -u pkgsrc/www/py-httpcore/distinfo:1.21 pkgsrc/www/py-httpcore/distinfo:1.22 --- pkgsrc/www/py-httpcore/distinfo:1.21 Sat Nov 26 17:58:27 2022 +++ pkgsrc/www/py-httpcore/distinfo Thu Dec 29 12:40:51 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.21 2022/11/26 17:58:27 adam Exp $ +$NetBSD: distinfo,v 1.22 2022/12/29 12:40:51 adam Exp $ -BLAKE2s (httpcore-0.16.2.tar.gz) = 53ed95d125a55ed0c5105479a9825e8ee9ac3616d8b273662de948514e923f59 -SHA512 (httpcore-0.16.2.tar.gz) = 28cfbc24fec869adc44c22ab50e630ee6d20a1d7b122007da3479947d84616c1e4fe985ace67902b5fa6632493b957ac63341b3f8a9a2644107008ecef3f8616 -Size (httpcore-0.16.2.tar.gz) = 54294 bytes +BLAKE2s (httpcore-0.16.3.tar.gz) = 6be8f95d46cd5f22819f377fc1fb4f9659a002b13fa8af0b7862200db0c33ead +SHA512 (httpcore-0.16.3.tar.gz) = a1ec14f32e2462bcc1a6ef4b434a125d3b371bd059d2e26183f268b19a803bd1ecf194c6607a5f36941e7d6ea6fce4ea0f035618fe95fb6097d1381b8632332e +Size (httpcore-0.16.3.tar.gz) = 54929 bytes --_----------=_1672317651127200--