Received: by mail.netbsd.org (Postfix, from userid 605) id CFA0084D66; Sun, 27 Nov 2022 09:55:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0B27F84D5B for ; Sun, 27 Nov 2022 09:55:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id R7qDtdjSb0eA for ; Sun, 27 Nov 2022 09:55:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 775D884D39 for ; Sun, 27 Nov 2022 09:55:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 70D3EFA90; Sun, 27 Nov 2022 09:55:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1669542937194770" MIME-Version: 1.0 Date: Sun, 27 Nov 2022 09:55:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-wsproto To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221127095537.70D3EFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1669542937194770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 27 09:55:37 UTC 2022 Modified Files: pkgsrc/www/py-wsproto: Makefile distinfo Log Message: py-wsproto: updated to 1.2.0 1.2.0 (2022-08-23) ------------------ - Bugfix: When a close frame with status NO_STATUS_RCVD is sent, send and empty payload. - Bugfix: Changing both encoding and decoding of the Host, from ascii to idna. - Bugfix: Support multiple Sec-WebSocket-Extensions and Sec-WebSocket-Protocol headers. - Accept bytes alongside string as path argument in initiate_upgrade_connection. - Check the state when sending events, raising if the event cannot be sent in the current state. - Send an empty payload for NO_STATUS_RCVD. 1.1.0 (2022-02-27) ------------------ - Added support for Python 3.10. - Drop support for Python 3.6, meaning the minimum supported version is Python 3.7.0. - Various type checking and code linting improvements. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-wsproto/Makefile \ pkgsrc/www/py-wsproto/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1669542937194770 Content-Disposition: inline Content-Length: 1544 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-wsproto/Makefile diff -u pkgsrc/www/py-wsproto/Makefile:1.7 pkgsrc/www/py-wsproto/Makefile:1.8 --- pkgsrc/www/py-wsproto/Makefile:1.7 Tue Jan 4 20:55:38 2022 +++ pkgsrc/www/py-wsproto/Makefile Sun Nov 27 09:55:37 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2022/01/04 20:55:38 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2022/11/27 09:55:37 adam Exp $ -DISTNAME= wsproto-1.0.0 +DISTNAME= wsproto-1.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=w/wsproto/} Index: pkgsrc/www/py-wsproto/distinfo diff -u pkgsrc/www/py-wsproto/distinfo:1.7 pkgsrc/www/py-wsproto/distinfo:1.8 --- pkgsrc/www/py-wsproto/distinfo:1.7 Tue Oct 26 11:30:51 2021 +++ pkgsrc/www/py-wsproto/distinfo Sun Nov 27 09:55:37 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2021/10/26 11:30:51 nia Exp $ +$NetBSD: distinfo,v 1.8 2022/11/27 09:55:37 adam Exp $ -BLAKE2s (wsproto-1.0.0.tar.gz) = c716bc60645fe0fd8586849b15e861557ab90ecde5e5e3940cea4f222c9158ba -SHA512 (wsproto-1.0.0.tar.gz) = 36f8c4eebf84bfe869f7124330898d22416b423f47396f2e3f72069e14f1763514e1df700c3e8ee81467cf973197e10143e088978d0688930fa98518af8773fb -Size (wsproto-1.0.0.tar.gz) = 53423 bytes +BLAKE2s (wsproto-1.2.0.tar.gz) = 8c34cee70f2ef78a0c822cf0695464435f23aed94422dd6f3851a59aa38fc59a +SHA512 (wsproto-1.2.0.tar.gz) = 43270687a1cfb5f35423c527de5b9db7ee2ddf27d416f47358386c1c94dc3f836a601f300bf66441c4b90130e6e6f502fb29dfeb2374dd76aefa19cfbb70a372 +Size (wsproto-1.2.0.tar.gz) = 53425 bytes --_----------=_1669542937194770--