diff options
author | fhajny <fhajny@pkgsrc.org> | 2015-06-09 12:41:08 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2015-06-09 12:41:08 +0000 |
commit | f7e0c65c632d6eee58edb588bbd4a7565c53205b (patch) | |
tree | 2a11ee732205bc2af61c07a46c67f61aadc658e5 /net/rabbitmq | |
parent | 9d9c16f6e7b0f859378b0546e8c1da0273069eef (diff) | |
download | pkgsrc-f7e0c65c632d6eee58edb588bbd4a7565c53205b.tar.gz |
Update net/rabbitmq to 3.5.3.
RabbitMQ 3.5.3:
- If rabbitmqctl can't contact a node, suggest to verify any Erlang TLS
distribution configuration
- Ensure the memory monitor is fully started before the file handle cache
is used
- Management plugin: Fix a crash during RabbitMQ startup if
force_fine_statistics is set in rabbitmq_management_agent configuration
RabbitMQ 3.5.2:
- Improve integration with Docker
- Add a way to send log messages (both "normal" and sasl messages) to stdout
- Do not try to use exec before su ... as su(1) forks a process anyway
- Report a queue is under flow control only if it was in this situation
in the last 1 second, instead of the last 5 seconds previously
- Add a check to ensure the Mnesia directory is not shared with the PID file
location or the plugin expansion directory
- Ensure the file handle cache remains under the memory high watermark
when syncing a mirrored queue
- Restore support for messages stored on disk with the previous x-death
header format
- Ensure passwords containing $ characters are properly escaped so they are
not interpreted by the shell, when a password is changed using rabbitmqctl
change_password
- Management plugin: Allow to configure rates_mode even if only
rabbitmq-management-agent is enabled
- Management plugin: Fix a badarith crash if for some reasons, the disk free
space or the file descriptors count are temporarily reported incorrectly
- STOMP plugin: Ensure the "processor" thread is terminated at the same time
the "reader" thread exits
RabbitMQ 3.5.1:
- Introduce a new channel log category for channel log messages
- Ensure consumer_closed events are emitted for the actually closed channels
only, not all of them
- Ensure the number of x-death message headers doesn't grow indefinitely
- Adjust the file read buffer cache size to avoid useless reads
- Ensure the priority queue plugin reports its memory consumption properly
- Prevent a crash while synchronising paged out priority queues
- Pass the PID file to rabbitmqctl stop in rabbitmq-server.ocf, exactly
like Debian- and Red Hat-flavour init scripts
- AMQP plugin: Fix heartbeats
- AMQP plugin: Respond with a protocol error if a disposition frame
is incorrect
- AMQP plugin: Fix a crash if the initial-delivery-count is not 0
Diffstat (limited to 'net/rabbitmq')
-rw-r--r-- | net/rabbitmq/Makefile | 3 | ||||
-rw-r--r-- | net/rabbitmq/distinfo | 8 | ||||
-rw-r--r-- | net/rabbitmq/version.mk | 4 |
3 files changed, 7 insertions, 8 deletions
diff --git a/net/rabbitmq/Makefile b/net/rabbitmq/Makefile index 05f60de95fd..7b2296fd5fc 100644 --- a/net/rabbitmq/Makefile +++ b/net/rabbitmq/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2015/04/26 11:52:19 ryoon Exp $ +# $NetBSD: Makefile,v 1.20 2015/06/09 12:41:08 fhajny Exp $ PKGNAME= rabbitmq-${RMQ_VERSION} -PKGREVISION= 1 DISTNAME= rabbitmq-server-${RMQ_VERSION} CATEGORIES= net MASTER_SITES= http://www.rabbitmq.com/releases/rabbitmq-server/v${RMQ_VERSION}/ diff --git a/net/rabbitmq/distinfo b/net/rabbitmq/distinfo index 95aba47638a..154f94f7f9b 100644 --- a/net/rabbitmq/distinfo +++ b/net/rabbitmq/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.20 2015/03/24 12:15:13 fhajny Exp $ +$NetBSD: distinfo,v 1.21 2015/06/09 12:41:08 fhajny Exp $ -SHA1 (rabbitmq-server-3.5.0.tar.gz) = c1ce145eb03e9f12928f249ebaa0872d277e5f8b -RMD160 (rabbitmq-server-3.5.0.tar.gz) = db75d313c80f6d9577761f0006b3bca95f048ca2 -Size (rabbitmq-server-3.5.0.tar.gz) = 3721732 bytes +SHA1 (rabbitmq-server-3.5.3.tar.gz) = 8ef8d9a92c9bc452dd1992c30c9ee7b68808c704 +RMD160 (rabbitmq-server-3.5.3.tar.gz) = 49ceedfcb010d4138f07628844934494b485bdb7 +Size (rabbitmq-server-3.5.3.tar.gz) = 3727143 bytes SHA1 (patch-aa) = 16a822321caacb0e4588791ec4dc1e909d0be4de SHA1 (patch-plugins-src_do-package.mk) = c1f4a6422a9cb7bac4e1d6bdb671a87a16f73764 diff --git a/net/rabbitmq/version.mk b/net/rabbitmq/version.mk index 7e1d8384335..799d4ec1fec 100644 --- a/net/rabbitmq/version.mk +++ b/net/rabbitmq/version.mk @@ -1,4 +1,4 @@ -# $NetBSD: version.mk,v 1.19 2015/03/24 12:15:13 fhajny Exp $ +# $NetBSD: version.mk,v 1.20 2015/06/09 12:41:08 fhajny Exp $ # -RMQ_VERSION= 3.5.0 +RMQ_VERSION= 3.5.3 |