Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 043AB7A1BC for ; Mon, 29 May 2017 13:16:13 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 71E0C84DF8; Mon, 29 May 2017 13:16:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0289584DF5 for ; Mon, 29 May 2017 13:16:12 +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 dsa9la4BSt-X for ; Mon, 29 May 2017 13:16:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4BA9184D97 for ; Mon, 29 May 2017 13:16:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 46CB1FBE4; Mon, 29 May 2017 13:16:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1496063771162800" MIME-Version: 1.0 Date: Mon, 29 May 2017 13:16:11 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/net/rabbitmq To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20170529131611.46CB1FBE4@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. --_----------=_1496063771162800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Mon May 29 13:16:11 UTC 2017 Modified Files: pkgsrc/net/rabbitmq: Makefile PLIST distinfo Log Message: Updated net/rabbitmq to 3.6.10 Bug Fixes - rabbitmqctl wait exited with the status code of 0 when node stopped because it could not contact any cluster peers to [re-]join. - rabbitmqctl forget_cluster_node used in offline mode could result in promotion of a node that's no longer a cluster member. - Queue master locator could not be set using optional queue arguments (x-arguments). - CLI tool (e.g. rabbitmqctl) man pages were not rendered correctly. Enhancements - Disk space monitor will periodically retry (every 2 minutes by default, up to 10 times) before going into disabled state as external tools used to monitor available disk space can fail or produce unexpected output temporarily. - Memory relative free disk space limits now support integer values as well as floats. Management and Management Agent Plugins - TLS-related settings in HTTP API listeners could break JSON serialisation for the GET /api/overview endpoint. - Non-numerical values for numerical stats are now handled safety by stats aggregation. - Stats are no longer emitted for connections that are not considered to be in the fully initialised state. - POST requests now instruct clients to close TCP connections. - In some popular browsers (Chrome, Internet Explorer) a POST request followed by an immediate GET request would result in a 400 response. Other browsers do no exhibit this behaviour. - I/O average time per operation graph didn't match legend. - Sample retention policies are now validated more strictly to avoid configurations that are not supported and will lead to exceptions. - Certain stats for connections were not initialised as numerical values, which resulted in log noise. - UI operation for binding deletion did not respect optional (extra) binding arguments. - Current virtual host is pre-selected on the "Add/update policy" form. MQTT Plugin - A non-initialized connection (e.g. one that failed early because client-provided payload wasn't a valid MQTT payload) produced a crash report log entry during termination. LDAP Plugin - Stale connection purging in LDAP connection pool could fail with a badmatch. Trust Store Plugin - Certificate change detection algorithm no longer uses stat(2) on certificate directory because of its limitations that could lead to undetected changes in certain scenarios. Web STOMP Plugin - The plugin failed to start after being stopped and re-enabled. - Server-initiated consumer cancellation failed with an exception. Management Visualiser Plugin - The plugin wasn't compatible with recent 3.6.x releases. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/net/rabbitmq/Makefile cvs rdiff -u -r1.24 -r1.25 pkgsrc/net/rabbitmq/PLIST cvs rdiff -u -r1.33 -r1.34 pkgsrc/net/rabbitmq/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1496063771162800 Content-Disposition: inline Content-Length: 3635 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/rabbitmq/Makefile diff -u pkgsrc/net/rabbitmq/Makefile:1.29 pkgsrc/net/rabbitmq/Makefile:1.30 --- pkgsrc/net/rabbitmq/Makefile:1.29 Thu Mar 30 15:19:04 2017 +++ pkgsrc/net/rabbitmq/Makefile Mon May 29 13:16:11 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.29 2017/03/30 15:19:04 fhajny Exp $ +# $NetBSD: Makefile,v 1.30 2017/05/29 13:16:11 fhajny Exp $ -DISTNAME= rabbitmq-server-3.6.9 +DISTNAME= rabbitmq-server-3.6.10 PKGNAME= ${DISTNAME:S/-server//} CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${PKGVERSION_NOREV}/ Index: pkgsrc/net/rabbitmq/PLIST diff -u pkgsrc/net/rabbitmq/PLIST:1.24 pkgsrc/net/rabbitmq/PLIST:1.25 --- pkgsrc/net/rabbitmq/PLIST:1.24 Mon Mar 20 14:34:36 2017 +++ pkgsrc/net/rabbitmq/PLIST Mon May 29 13:16:11 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.24 2017/03/20 14:34:36 fhajny Exp $ +@comment $NetBSD: PLIST,v 1.25 2017/05/29 13:16:11 fhajny Exp $ lib/erlang/lib/rabbitmq_server-${PKGVERSION}/INSTALL lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-APACHE2-ExplorerCanvas @@ -19,8 +19,6 @@ lib/erlang/lib/rabbitmq_server-${PKGVERS lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL2 lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/background_gc.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/dtree.beam -lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/file_handle_cache.beam -lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/file_handle_cache_stats.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/gatherer.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/gm.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/lqueue.beam @@ -69,6 +67,7 @@ lib/erlang/lib/rabbitmq_server-${PKGVERS lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_exchange_type_headers.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_exchange_type_invalid.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_exchange_type_topic.beam +lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_fhc_helpers.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_file.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_framing.beam lib/erlang/lib/rabbitmq_server-${PKGVERSION}/ebin/rabbit_guid.beam Index: pkgsrc/net/rabbitmq/distinfo diff -u pkgsrc/net/rabbitmq/distinfo:1.33 pkgsrc/net/rabbitmq/distinfo:1.34 --- pkgsrc/net/rabbitmq/distinfo:1.33 Thu Mar 30 15:19:04 2017 +++ pkgsrc/net/rabbitmq/distinfo Mon May 29 13:16:11 2017 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.33 2017/03/30 15:19:04 fhajny Exp $ +$NetBSD: distinfo,v 1.34 2017/05/29 13:16:11 fhajny Exp $ -SHA1 (rabbitmq-server-3.6.9.tar.xz) = 559372baa7df9ebf853f3cbf2a15a1fc14cd38ee -RMD160 (rabbitmq-server-3.6.9.tar.xz) = 1898f3499f4acd89fba40c9ab76e157b490e9c39 -SHA512 (rabbitmq-server-3.6.9.tar.xz) = a003d2343c97e546ac01a5aadc46e94e2dbcc78349072b362950e5c5e11229e2a6fc4020d281f9fbb5cc0f577d2a166ef09671e931ec1470ab2edcdd98443662 -Size (rabbitmq-server-3.6.9.tar.xz) = 1422316 bytes +SHA1 (rabbitmq-server-3.6.10.tar.xz) = 0d879f998683079a31c1e872ce4c5640ebd35406 +RMD160 (rabbitmq-server-3.6.10.tar.xz) = bd26f19a0c26d968b8b658dcbfc91a9e6eff8fe3 +SHA512 (rabbitmq-server-3.6.10.tar.xz) = 64e618e51ab259463029ad75b981dbf64687515e52d19854f225d4c68077e683ef56f0f6bb92cbbf91f140bc829d905473d687d083d12f36dd2cdfab3defaed6 +Size (rabbitmq-server-3.6.10.tar.xz) = 1426900 bytes SHA1 (patch-Makefile) = 088a3ed04dc72215f1ca3b34b49bb4047a531e89 SHA1 (patch-deps_rabbit_scripts_rabbitmq-env) = e2b9846e9b161ea73d7338a162699efc06340215 --_----------=_1496063771162800--