summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorfhajny <fhajny@pkgsrc.org>2017-05-29 13:16:11 +0000
committerfhajny <fhajny@pkgsrc.org>2017-05-29 13:16:11 +0000
commit4a7e4d65c025104f64db789b1077d88c0edce7a3 (patch)
tree98798701d2102c1ec546fac87810115ac7d3b8fe /net
parent93294779d380d51552fc6e9a9496f13b6e4c97e0 (diff)
downloadpkgsrc-4a7e4d65c025104f64db789b1077d88c0edce7a3.tar.gz
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.
Diffstat (limited to 'net')
-rw-r--r--net/rabbitmq/Makefile4
-rw-r--r--net/rabbitmq/PLIST5
-rw-r--r--net/rabbitmq/distinfo10
3 files changed, 9 insertions, 10 deletions
diff --git a/net/rabbitmq/Makefile b/net/rabbitmq/Makefile
index 5078b72db5a..d4a883d5f11 100644
--- a/net/rabbitmq/Makefile
+++ b/net/rabbitmq/Makefile
@@ -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}/
diff --git a/net/rabbitmq/PLIST b/net/rabbitmq/PLIST
index c19585ee275..acfc6f1eaae 100644
--- a/net/rabbitmq/PLIST
+++ b/net/rabbitmq/PLIST
@@ -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-${PKGVERSION}/LICENSE-MPL-RabbitMQ
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-${PKGVERSION}/ebin/rabbit_exchange_type_fanout.be
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
diff --git a/net/rabbitmq/distinfo b/net/rabbitmq/distinfo
index 5b5fc578749..fca730f684a 100644
--- a/net/rabbitmq/distinfo
+++ b/net/rabbitmq/distinfo
@@ -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