Received: by mail.netbsd.org (Postfix, from userid 605) id DF59584EE9; Fri, 27 Jul 2018 08:46:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0299284E7B for ; Fri, 27 Jul 2018 08:46:59 +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 2ATAxEkdO8i0 for ; Fri, 27 Jul 2018 08:46:58 +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 2B0A884CD3 for ; Fri, 27 Jul 2018 08:46:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1A94AFBEC; Fri, 27 Jul 2018 08:46:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1532681218193380" MIME-Version: 1.0 Date: Fri, 27 Jul 2018 08:46:58 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/www/py-autobahn To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180727084658.1A94AFBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1532681218193380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Fri Jul 27 08:46:58 UTC 2018 Modified Files: pkgsrc/www/py-autobahn: Makefile distinfo Log Message: py-autobahn: Update to 18.6.1. Notably this version fixes the build with python37. 18.6.1 fix: implement abort argument for asyncio in WebSocketAdapterProtocol._closeConnection (#1012) 18.5.2 fix: security (DoS amplification): a WebSocket server with permessage-deflate turned on could be induced to waste extra memory through a "zip-bomb" style attack. Setting a max-message-size will now stop deflating compressed data when the max is reached (instead of consuming all compressed data first). This could be used by a malicious client to make the server waste much more memory than the bandwidth the client uses. 18.5.1 fix: asyncio/rawsocket buffer processing fix: example failures due to pypy longer startup time (#996) fix: add on_welcome for AuthWampCra (#992) fix: make run() of multiple components work on Windows (#986) new: max_retries now defaults to -1 ("try forever") To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/www/py-autobahn/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/www/py-autobahn/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1532681218193380 Content-Disposition: inline Content-Length: 1672 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-autobahn/Makefile diff -u pkgsrc/www/py-autobahn/Makefile:1.12 pkgsrc/www/py-autobahn/Makefile:1.13 --- pkgsrc/www/py-autobahn/Makefile:1.12 Sat Apr 14 09:10:46 2018 +++ pkgsrc/www/py-autobahn/Makefile Fri Jul 27 08:46:57 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2018/04/14 09:10:46 adam Exp $ +# $NetBSD: Makefile,v 1.13 2018/07/27 08:46:57 jperkin Exp $ -DISTNAME= autobahn-18.4.1 +DISTNAME= autobahn-18.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=a/autobahn/} Index: pkgsrc/www/py-autobahn/distinfo diff -u pkgsrc/www/py-autobahn/distinfo:1.11 pkgsrc/www/py-autobahn/distinfo:1.12 --- pkgsrc/www/py-autobahn/distinfo:1.11 Sat Apr 14 09:10:46 2018 +++ pkgsrc/www/py-autobahn/distinfo Fri Jul 27 08:46:57 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2018/04/14 09:10:46 adam Exp $ +$NetBSD: distinfo,v 1.12 2018/07/27 08:46:57 jperkin Exp $ -SHA1 (autobahn-18.4.1.tar.gz) = 79521a9fd4369c4c018e6a5c4dd2176a06ddb45e -RMD160 (autobahn-18.4.1.tar.gz) = 4dccc0b8d7dbf34ce28a852b6bc7d0e455368d9c -SHA512 (autobahn-18.4.1.tar.gz) = 67c9f576131a053e8e189ad82ab00e9212dac319c4de14ef44e85d1018d596f244ea945b10b593c63ff05391733fe1f72cc47597ea79d0a409e7cf85a4a6369f -Size (autobahn-18.4.1.tar.gz) = 224355 bytes +SHA1 (autobahn-18.6.1.tar.gz) = 587fa15a28dff24ac3418b1d7567bd5d01831c63 +RMD160 (autobahn-18.6.1.tar.gz) = bf62bc062b1c0622507b5fc653a66001eeb3705c +SHA512 (autobahn-18.6.1.tar.gz) = d1f525ba334d73e5e917044c4c23142293af0027261a12efd6d1446dea4ca8184030bfaa42db308d8bf3c0bb72e54bb424c55db18118aa3c888b7216757c5345 +Size (autobahn-18.6.1.tar.gz) = 224987 bytes --_----------=_1532681218193380--