Received: by mail.netbsd.org (Postfix, from userid 605) id C102B84EFA; Tue, 9 Aug 2022 05:42:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0400C84E7D for ; Tue, 9 Aug 2022 05:42:11 +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 NJfornCIRZ2r for ; Tue, 9 Aug 2022 05:42:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 661EC84D1C for ; Tue, 9 Aug 2022 05:42:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5EDB0FB1A; Tue, 9 Aug 2022 05:42:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1660023730288840" MIME-Version: 1.0 Date: Tue, 9 Aug 2022 05:42:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-werkzeug To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220809054210.5EDB0FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1660023730288840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Aug 9 05:42:10 UTC 2022 Modified Files: pkgsrc/www/py-werkzeug: Makefile.common distinfo Log Message: py-werkzeug: updated to 2.2.2 Version 2.2.2 ------------- - Fix router to restore the 2.1 ``strict_slashes == False`` behaviour whereby leaf-requests match branch rules and vice versa. :pr:`2489` - Fix router to identify invalid rules rather than hang parsing them, and to correctly parse ``/`` within converter arguments. :pr:`2489` - Update subpackage imports in :mod:`werkzeug.routing` to use the ``import as`` syntax for explicitly re-exporting public attributes. :pr:`2493` - Parsing of some invalid header characters is more robust. :pr:`2494` - When starting the development server, a warning not to use it in a production deployment is always shown. :issue:`2480` - ``LocalProxy.__wrapped__`` is always set to the wrapped object when the proxy is unbound, fixing an issue in doctest that would cause it to fail. :issue:`2485` - Address one ``ResourceWarning`` related to the socket used by ``run_simple``. :issue:`2421` To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/www/py-werkzeug/Makefile.common \ pkgsrc/www/py-werkzeug/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1660023730288840 Content-Disposition: inline Content-Length: 1653 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-werkzeug/Makefile.common diff -u pkgsrc/www/py-werkzeug/Makefile.common:1.29 pkgsrc/www/py-werkzeug/Makefile.common:1.30 --- pkgsrc/www/py-werkzeug/Makefile.common:1.29 Fri Aug 5 11:44:30 2022 +++ pkgsrc/www/py-werkzeug/Makefile.common Tue Aug 9 05:42:10 2022 @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.29 2022/08/05 11:44:30 adam Exp $ +# $NetBSD: Makefile.common,v 1.30 2022/08/09 05:42:10 adam Exp $ # # used by www/py-werkzeug/Makefile # used by www/py-werkzeug-docs/Makefile -DISTNAME= Werkzeug-2.2.1 +DISTNAME= Werkzeug-2.2.2 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=W/Werkzeug/} Index: pkgsrc/www/py-werkzeug/distinfo diff -u pkgsrc/www/py-werkzeug/distinfo:1.29 pkgsrc/www/py-werkzeug/distinfo:1.30 --- pkgsrc/www/py-werkzeug/distinfo:1.29 Fri Aug 5 11:44:30 2022 +++ pkgsrc/www/py-werkzeug/distinfo Tue Aug 9 05:42:10 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.29 2022/08/05 11:44:30 adam Exp $ +$NetBSD: distinfo,v 1.30 2022/08/09 05:42:10 adam Exp $ -BLAKE2s (Werkzeug-2.2.1.tar.gz) = 08bdad489a21cfbd6648858939742df308974628ad9d6bc497900a645cb2adac -SHA512 (Werkzeug-2.2.1.tar.gz) = b5e483b036c08a49cd594ef255069fe4941e0ce9dfe7b43e140687655cb3bfe03b645e471f2f847bfd4f699925e1e0383b468865ac4fe81be5ed6ccf17f9921f -Size (Werkzeug-2.2.1.tar.gz) = 838993 bytes +BLAKE2s (Werkzeug-2.2.2.tar.gz) = 5766239133e8a15e2a0b015948bdd36d7cd2b1cc3f03e8d6b139c459190f3a5b +SHA512 (Werkzeug-2.2.2.tar.gz) = b37a63ba1d6970b10ba17b87575c2d030ad6c4c00ab50669d678297b9801e319f4f81f98bfc2d89fc2e645c5e192dd81ed2d653c03dbaef06565de0bdac2bcf7 +Size (Werkzeug-2.2.2.tar.gz) = 844378 bytes --_----------=_1660023730288840--