pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/rabbitmq rabbitmq: updated to 3.9.7
details: https://anonhg.NetBSD.org/pkgsrc/rev/a8e1bab379a7
branches: trunk
changeset: 459028:a8e1bab379a7
user: adam <adam%pkgsrc.org@localhost>
date: Tue Sep 28 16:22:27 2021 +0000
description:
rabbitmq: updated to 3.9.7
3.9.7:
All Components
All bytecode is now compiled using the +deterministic compiler flag. This should eliminate the capture of some irrelevant build environment attributes in produced artifacts, improve consistency
between builds, and reduce the file level diff between release artifacts.
Core Server
Enhancements
Classic queue shutdown now uses a much higher timeout (up to 10 minutes instead of 30 seconds).
In environments with many queues (especially mirrored queues) and many consumers this means that the chance of queue indices rebuilding after node restart is now substantially lower.
Prometheus Plugin
Enhancements
More configurability for metrics exposed via the Prometheus endpoint.
Shovel Plugin
Bug Fixes
Shovel URIs could be logged with credentials in some scenarios.
3.9.6:
Core Server
Bug Fixes
TLS information delivered in Proxy protocol header is now attached to connection metrics as if it was provided by a non-proxying client.
max_message_size had a one-off error in the validator.
mirroring_sync_batch_size was incorrectly validated as if it represented batch size in bytes. It represents batch size in number of messages, so the new default hard cap is now 1M (a very high number
that's impractical)
Stream Plugin
Bug Fixes
Offset parameters were not stored correctly in some cases.
Partitions list order is now stable.
When stream clients close connections abruptly, publisher and consumer metrics get cleaned up correctly.
Management Plugin
Enhancements
Stream publishers are now listed on the individual stream page.
Counters have been added to the tiles of several sections on detail pages.
3.9.5:
Core Server
Bug Fixes
Virtual host metadata (description, tags) was not imported from definitions.
Reduced unnecessary debug logging from streams.
AWS Peer Discovery Plugin
Enhancements
AWS API calls are now retried multiple times.
Contributed by AWS.
Management Plugin
Enhancements
PUT /api/vhosts/{name} now can update metadata (tags and descriptions) for existing virtual hosts.
3.9.4:
Core Server
Enhancements
New Prometheus metrics for alarms
Nodes will now use four more environment variables, if set: RABBITMQ_DEFAULT_USER (overrides default_user in rabbitmq.conf), RABBITMQ_DEFAULT_PASS (overrides default_pass), RABBITMQ_DEFAULT_VHOST
(overrides default_vhost) and RABBITMQ_ERLANG_COOKIE (sets shared authentication secret value). These variables are not recommended to be used in production but can be the only realistic option in
some environment, such as service containers, ECS, and so on. Most users should continue using rabbitmq.conf and a securely generated local cookie file.
Definitions now can be imported from different sources, including those provided by plugins. Original local filesystem source is still supported in a backwards-compatible way.
3.9.3:
Core Server
Bug Fixes
Queues that had messages with per-message TTL in them could fail to recover their indices after a restart.
JSON logging could fail with an exception when a logged event included epoch-based timestamp value.
JSON logging now uses integers (as opposed to floats) to represent epoch-based timestamps
Enhancements
RabbitMQ application no longer reports the stopping event to systemd. This was counterproductive when the application was stopped but the runtime (Erlang VM) was kept running, e.g. via rabbitmqctl
stop_app or by the pause minority partition handling strategy.
Now systemd service monitoring will recognize a node as stopped only when the runtime is stopped, which is usually the behavior operators expect.
3.9.2:
CLI Tools
Bug Fixes
rabbitmq-upgrade drain and rabbitmq-upgrade revive now log warning and info level instead of alert.
Shovel Plugin
Bug Fixes
Multiple Shovels could be started in some cases involving node restarts of failures.
Federation Plugin
Bug Fixes
Multiple Federation links could be started in some cases involving node restarts of failures.
3.9.1:
Core Server
Bug Fixes
Clients that used global QoS prefetch (deprecated as of 3.9.0) ran into an exception when acknowledging deliveries.
Improved resiliency of stream coordinator in certain conditions.
Nodes failed to start when hostname contained non-ASCII (broader Unicode) characters.
CLI Tools
Bug Fixes
rabbitmq-diagnostics stream_status fails with an exception when the --tracking option was used.
rabbitmq-diagnostics stream_status used an outdated documentation guide link.
RabbitMQ Erlang Client
Bug Fixes
New releases of the client are again published to Hex.pm.
connection_timeout was adjusted to avoid a confusing warning.
Corrected a typo in direct connection net tick time adjustment.
3.9.0:
Streams
Erlang 24 Support
Kubernetes
Logging in JSON
diffstat:
net/rabbitmq/Makefile | 6 +-
net/rabbitmq/PLIST | 1393 ++++++++++++++++++++++++++++++++++++++++++++++--
net/rabbitmq/distinfo | 10 +-
3 files changed, 1338 insertions(+), 71 deletions(-)
diffs (truncated from 1475 to 300 lines):
diff -r ebfc5aaaff8f -r a8e1bab379a7 net/rabbitmq/Makefile
--- a/net/rabbitmq/Makefile Tue Sep 28 16:17:23 2021 +0000
+++ b/net/rabbitmq/Makefile Tue Sep 28 16:22:27 2021 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.56 2021/07/07 10:10:04 adam Exp $
+# $NetBSD: Makefile,v 1.57 2021/09/28 16:22:27 adam Exp $
-DISTNAME= rabbitmq-server-3.8.19
+DISTNAME= rabbitmq-server-3.9.7
PKGNAME= ${DISTNAME:S/-server//}
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=rabbitmq/}
@@ -85,6 +85,7 @@
REPLACE_BASH+= ${SCRIPTS_DIR}/rabbitmq-plugins
REPLACE_BASH+= ${SCRIPTS_DIR}/rabbitmq-queues
REPLACE_BASH+= ${SCRIPTS_DIR}/rabbitmq-server
+REPLACE_BASH+= ${SCRIPTS_DIR}/rabbitmq-streams
REPLACE_BASH+= ${SCRIPTS_DIR}/rabbitmq-upgrade
CHECK_PORTABILITY_SKIP+= scripts/rabbitmq-server-ha.ocf
@@ -93,6 +94,7 @@
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmq-diagnostics
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmq-plugins
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmq-queues
+CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmq-streams
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmq-upgrade
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/escript/rabbitmqctl
CHECK_INTERPRETER_SKIP+= ${RABBITMQ_HOME}/sbin/cuttlefish
diff -r ebfc5aaaff8f -r a8e1bab379a7 net/rabbitmq/PLIST
--- a/net/rabbitmq/PLIST Tue Sep 28 16:17:23 2021 +0000
+++ b/net/rabbitmq/PLIST Tue Sep 28 16:22:27 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.42 2021/06/29 06:48:05 adam Exp $
+@comment $NetBSD: PLIST,v 1.43 2021/09/28 16:22:27 adam Exp $
lib/erlang/autocomplete/bash_autocomplete.sh
lib/erlang/autocomplete/zsh_autocomplete.sh
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/INSTALL
@@ -21,84 +21,1348 @@
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-jQuery164
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL-RabbitMQ
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL2
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-erlcloud
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-httpc_aws
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-rabbitmq_aws
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-diagnostics
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-plugins
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-queues
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-streams
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-upgrade
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmqctl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/README
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.5.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/base64url-1.0.1.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gen_batch_server-0.8.4.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/goldrush-0.1.9.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/lager-3.9.2.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.6.2.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.6.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-1.1.8.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_http-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_mechanism_ssl-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_consistent_hash_exchange-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_jms_topic_exchange-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_aws-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_random_exchange-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_recent_history_exchange-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.0.0.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.1.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-3.4.5.ez
-lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0.ez
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/ebin/accept.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/ebin/accept_encoding_header.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/ebin/accept_header.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/ebin/accept_neg.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/ebin/accept_parser.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/accept-0.3.5/include/accept.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_app.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_connection.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_connection_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_connections_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_frame_reader.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_session.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_sessions_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_client_types.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_client-${PKGVERSION}/ebin/amqp10_msg.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/ebin/amqp10_binary_generator.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/ebin/amqp10_binary_parser.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/ebin/amqp10_common.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/ebin/amqp10_framing.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/ebin/amqp10_framing0.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp10_common-${PKGVERSION}/include/amqp10_framing.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_auth_mechanisms.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_channel.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_channel_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_channel_sup_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_channels_manager.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_client.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_client.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_connection.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_connection_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_connection_type_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_direct_connection.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_direct_consumer.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_gen_connection.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_gen_consumer.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_main_reader.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_network_connection.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_rpc_client.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_rpc_server.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_selective_consumer.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_ssl.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_uri.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/amqp_util.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/rabbit_routing_util.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/ebin/uri_parser.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/include/amqp_client.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/include/amqp_client_internal.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/include/amqp_gen_consumer_spec.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/amqp_client-${PKGVERSION}/include/rabbit_routing_prefixes.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_app.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_detect.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_detector.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_emitter.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_sink.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.6/ebin/aten_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/base64url-1.0.1/ebin/base64url.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/base64url-1.0.1/ebin/base64url.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_app.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_bstr.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_children.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_clear.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_clock.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_compress_h.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_constraints.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_handler.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_http.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_http2.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_loop.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_metrics_h.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_middleware.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_req.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_rest.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_router.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_static.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_stream.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_stream_h.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_sub_protocol.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_tls.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_tracer_h.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowboy-2.8.0/ebin/cowboy_websocket.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_base64url.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_cookie.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_date.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_hpack.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http2.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http2_machine.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http_hd.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http_struct_hd.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_http_te.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_iolists.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_link.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_mimetypes.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_multipart.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_qs.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_spdy.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_sse.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_uri.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_uri_template.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cow_ws.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/ebin/cowlib.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/include/cow_inline.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cowlib-2.9.1/include/cow_parse.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation_app.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation_pbe.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/ebin/credentials_obfuscation_svc.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/credentials_obfuscation-2.4.0/include/credentials_obfuscation.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/conf_parse.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_advanced.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_bytesize.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_conf.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_datatypes.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_duration.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_duration_parse.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_effective.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_enum.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_error.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_escript.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_flag.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_generator.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_mapping.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_rebar_plugin.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_schema.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_translation.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_unit.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_util.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_validator.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_variable.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/ebin/cuttlefish_vmargs.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/cuttlefish-3.0.1/priv/erlang_vm.schema
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/auth_pb.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_app.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_auth.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_auth_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_cluster.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_cluster_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_compare.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_conn.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_conn_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_data_coercion.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_election.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_election_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_grpc.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_health_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_kv.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_kv_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_lease.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_lease_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_lease_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_lock.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_lock_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_maintenance.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_maintenance_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_op.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_stream.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_sup.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_watch.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/eetcd_watch_gen.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/gogo_pb.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/health_pb.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/kv_pb.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/ebin/router_pb.beam
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/include/eetcd.hrl
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/priv/protos/auth.proto
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/priv/protos/gogo.proto
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/priv/protos/kv.proto
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.3/priv/protos/router.proto
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/enough-0.1.0/ebin/enough.app
+lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/enough-0.1.0/ebin/enough.beam
Home |
Main Index |
Thread Index |
Old Index