Received: by mail.netbsd.org (Postfix, from userid 605) id 3944284DBD; Sat, 19 Oct 2019 14:41:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B5D4884D6F for ; Sat, 19 Oct 2019 14:41:28 +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 4_ebCqcoaslu for ; Sat, 19 Oct 2019 14:41:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E218584CEA for ; Sat, 19 Oct 2019 14:41:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A0C89FBF4; Sat, 19 Oct 2019 14:41:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1571496087233760" MIME-Version: 1.0 Date: Sat, 19 Oct 2019 14:41:27 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/sysutils/py-structlog To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191019144127.A0C89FBF4@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. --_----------=_1571496087233760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Oct 19 14:41:27 UTC 2019 Modified Files: pkgsrc/sysutils/py-structlog: Makefile distinfo Log Message: py-structlog: updated to 19.2.0 19.2.0: Backward-incompatible changes: - Python 3.4 is not supported anymore. It has been unsupported by the Python core team for a while now and its PyPI downloads are negligible. It's very unlikely that ``structlog`` will break under 3.4 anytime soon, but we don't test it anymore. Changes: - Full Python 3.8 support for ``structlog.stdlib``. - Added more pass-through properties to ``structlog.stdlib.BoundLogger``. To makes it easier to use it as a drop-in replacement for ``logging.Logger``. - ``structlog.stdlib.ProcessorFormatter`` now takes a logger object as an optional keyword argument. This makes ``ProcessorFormatter`` work properly with ``stuctlog.stdlib.filter_by_level()``. - ``structlog.dev.ConsoleRenderer`` now uses no colors by default, if ``colorama`` is not available. - ``structlog.dev.ConsoleRenderer`` now initializes ``colorama`` lazily, to prevent accidental side-effects just by importing ``structlog``. - Added new processor ``structlog.dev.set_exc_info()`` that will set ``exc_info=True`` if the method's name is `exception` and ``exc_info`` isn't set at all. *This is only necessary when the standard library integration is not used*. It fixes the problem that in the default configuration, ``structlog.get_logger().exception("hi")`` in an ``except`` block would not print the exception without passing ``exc_info=True`` to it explicitly. - A best effort has been made to make as much of ``structlog`` pickleable as possible to make it friendlier with ``multiprocessing`` and similar libraries. Some classes can only be pickled on Python 3 or using the `dill `_ library though and that is very unlikely to change. So far, the configuration proxy, ``structlog.processor.TimeStamper``, ``structlog.BoundLogger``, ``structlog.PrintLogger`` and ``structlog.dev.ConsoleRenderer`` have been made pickelable. - Added a new thread-local API that allows binding values to a thread-local context explicitly without affecting the default behavior of ``bind()``. - Added ``pass_foreign_args`` argument to ``structlog.stdlib.ProcessorFormatter``. It allows to pass a foreign log record's ``args`` attribute to the event dictionary under the ``positional_args`` key. - ``structlog.dev.ConsoleRenderer`` now calls ``str()`` on the event value. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/sysutils/py-structlog/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/sysutils/py-structlog/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1571496087233760 Content-Disposition: inline Content-Length: 2340 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-structlog/Makefile diff -u pkgsrc/sysutils/py-structlog/Makefile:1.8 pkgsrc/sysutils/py-structlog/Makefile:1.9 --- pkgsrc/sysutils/py-structlog/Makefile:1.8 Mon Mar 4 08:40:57 2019 +++ pkgsrc/sysutils/py-structlog/Makefile Sat Oct 19 14:41:27 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2019/03/04 08:40:57 adam Exp $ +# $NetBSD: Makefile,v 1.9 2019/10/19 14:41:27 adam Exp $ -DISTNAME= structlog-19.1.0 +DISTNAME= structlog-19.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=s/structlog/} @@ -13,7 +13,7 @@ LICENSE= apache-2.0 AND mit DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six TEST_DEPENDS+= ${PYPKGPREFIX}-freezegun>=0.2.8:../../devel/py-freezegun TEST_DEPENDS+= ${PYPKGPREFIX}-pretend-[0-9]*:../../devel/py-pretend -TEST_DEPENDS+= ${PYPKGPREFIX}-simplejson-[0-9]*:../../textproc/py-simplejson +TEST_DEPENDS+= ${PYPKGPREFIX}-simplejson-[0-9]*:../../converters/py-simplejson TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner TEST_DEPENDS+= ${PYPKGPREFIX}-twisted-[0-9]*:../../net/py-twisted Index: pkgsrc/sysutils/py-structlog/distinfo diff -u pkgsrc/sysutils/py-structlog/distinfo:1.7 pkgsrc/sysutils/py-structlog/distinfo:1.8 --- pkgsrc/sysutils/py-structlog/distinfo:1.7 Mon Mar 4 08:40:57 2019 +++ pkgsrc/sysutils/py-structlog/distinfo Sat Oct 19 14:41:27 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2019/03/04 08:40:57 adam Exp $ +$NetBSD: distinfo,v 1.8 2019/10/19 14:41:27 adam Exp $ -SHA1 (structlog-19.1.0.tar.gz) = ca4f546a3dafcae9d802eb1a5730278d652d75d0 -RMD160 (structlog-19.1.0.tar.gz) = bfe0ad26fd25385f7692cc85ea828d2779c33c4e -SHA512 (structlog-19.1.0.tar.gz) = 4fd83eb6359c999c0f78dd1ff5bca4209ef5d7b5de74612c9824b43a0cfdd9bec7581999660eeb6a1825f1482cd4d2ea8cb0bf128e915c605a57f94a11fdc020 -Size (structlog-19.1.0.tar.gz) = 317443 bytes +SHA1 (structlog-19.2.0.tar.gz) = 680046b43650724d9faa5b51b7ea528b458000b6 +RMD160 (structlog-19.2.0.tar.gz) = 28af19ef74217986f119fa0217e6ec7d5de98f93 +SHA512 (structlog-19.2.0.tar.gz) = 9211ed7ebc146d90b10e5527583b9bfc243a0c18af30da2e88279cbd40b1d6639ed88e12a51a29f43c8a02703f8829422cb4b90971acd7e03e2f624bec6c4fe2 +Size (structlog-19.2.0.tar.gz) = 327709 bytes --_----------=_1571496087233760--