pkgsrc/net/rabbitmq/PLIST

1399 lines
144 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.51 2022/04/29 12:53:09 adam Exp $
lib/erlang/autocomplete/bash_autocomplete.sh
lib/erlang/autocomplete/zsh_autocomplete.sh
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/INSTALL
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-APACHE2
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-APACHE2-ExplorerCanvas
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-APACHE2-excanvas
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-APL2-Stomp-Websocket
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-BSD-base64js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-BSD-recon
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-ISC-cowboy
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-EJS
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-EJS10
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-Erlware-Commons
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-Flot
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-Mochi
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-Sammy
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-Sammy060
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-jQuery
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MIT-jQuery164
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/LICENSE-MPL-RabbitMQ
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
2021-09-28 18:22:27 +02:00
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
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-queues
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-streams
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/escript/rabbitmq-tanzu
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
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
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
2021-09-28 18:22:27 +02:00
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.7/ebin/aten.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_detect.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_detector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_emitter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_sink.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/aten-0.5.7/ebin/aten_sup.beam
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
2021-09-28 18:22:27 +02:00
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.5/ebin/auth_pb.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_auth.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_auth_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_cluster.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_cluster_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_compare.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_conn.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_conn_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_data_coercion.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_election.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_election_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_grpc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_health_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_kv.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_kv_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_lease.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_lease_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_lease_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_lock.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_lock_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_maintenance.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_maintenance_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_op.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_stream.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_watch.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/eetcd_watch_gen.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/gogo_pb.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/health_pb.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/kv_pb.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/ebin/router_pb.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/include/eetcd.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/priv/protos/auth.proto
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/priv/protos/gogo.proto
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/priv/protos/kv.proto
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/eetcd-0.3.5/priv/protos/router.proto
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
2021-09-28 18:22:27 +02:00
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
rabbitmq: updated to 3.9.14 RabbitMQ 3.9.14 Changes Worth Mentioning Core Server Bug Fixes Restart of a node that hosted one or more stream leaders resulted in their consumers not "re-attaching" to the newly elected leader. Large fanouts experienced a performance regression when streams were not enabled using a feature flag. Stream management plugin did not support mixed version clusters. Stream deletion did not result in a basic.cancel being sent to AMQP 0-9-1 consumers. Stream clients did not receive a correct stream unavailability error in some cases. It is again possible to clear user tags and update the password in a single operation. Enhancements Forward compatibility with Erlang 25. File handle cache efficiency improvements. Uknown stream properties (e.g. those requested by a node that runs a newer version) are now handled gracefully. Temporary hostname resolution issues (attempts that fail with nxdomain) are now handled more gracefully and with a delay of several seconds. Build time compatibility with Elixir 1.13. OAuth 2 AuthN/AuthZ Backend Plugin Bug Fixes auth_oauth2.additional_scopes_key in rabbitmq.conf was not converted correctly during configuration translation and thus had no effect. LDAP AuthN/AuthZ Backend Plugin Enhancement Adapt to a breaking Erlang 24.3 LDAP client change. Shovel Plugin Enhacements Shovels now can be declared with delete-after parameter set to 0. Such shovels will immediately stop instead of erroring and failing to start after a node restart. Consul Peer Discovery Plugin Enhancements Support for Consul 1.1 response code changes when an operation is attempted on a non-existent health check.
2022-04-06 16:46:28 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gen_batch_server-0.8.7/ebin/gen_batch_server.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gen_batch_server-0.8.7/ebin/gen_batch_server.beam
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/getopt-1.0.2/ebin/getopt.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/getopt-1.0.2/ebin/getopt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_content_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_data_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_http.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_http2.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_sse_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_tcp.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_tls.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_ws.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/gun-1.3.3/ebin/gun_ws_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_base.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_base64.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_base64url.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_block_encryptor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_chacha20_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_chacha20_poly1305_crypto.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_chacha20_poly1305_libsodium.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_chacha20_poly1305_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_crypto_compat.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve25519_libdecaf.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve25519_libsodium.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve25519_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve448_libdecaf.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_curve448_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_jason.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_jiffy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_jsone.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_jsx.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_ojson.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_poison.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_poison_compat_encoder.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_poison_lexical_encoder.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_json_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_aes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_aes_kw.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_base64url.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_bench.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_chacha20.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_chacha20_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_concat_kdf.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_curve25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_curve448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_ed25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_ed448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_hchacha20.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_math.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_pkcs1.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_pkcs5.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_pkcs7.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_sha3.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_x25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_x448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_xchacha20.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwa_xchacha20_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_aes_kw.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_c20p_kw.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_dir.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_ecdh_1pu.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_ecdh_es.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_pbes2.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_rsa.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_alg_xc20p_kw.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_enc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_enc_aes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_enc_c20p.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_enc_xc20p.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwe_zip.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_der.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_ec.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_oct.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_ed25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_ed25519ph.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_ed448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_ed448ph.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_x25519.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_okp_x448.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_kty_rsa.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_oct.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_openssh_key.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_pem.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_set.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_use_enc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwk_use_sig.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_ecdsa.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_eddsa.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_hmac.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_none.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_rsa_pkcs1_v1_5.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jws_alg_rsa_pss.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_jwt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_public_key.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_server.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sha3.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sha3_keccakf1600_driver.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sha3_keccakf1600_nif.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sha3_libdecaf.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sha3_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_xchacha20_poly1305.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_xchacha20_poly1305_crypto.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/ebin/jose_xchacha20_poly1305_unsupported.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_base.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_compat.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_jwe.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_jwk.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_jws.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_jwt.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/include/jose_public_key.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jose-1.11.1/priv/Dockerfile
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_consult.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_decoder.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_encoder.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_parser.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_to_json.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_to_term.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/jsx-3.1.0/ebin/jsx_verify.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_application.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_escriptize.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_help.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_inet.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_lib.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_mnesia.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_plugin.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_port.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_process.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_store.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/ebin/observer_cli_system.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/observer_cli-1.7.3/include/observer_cli.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_bench.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_counters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_log.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_replica.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_replica_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_replica_reader_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_retention.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_server_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_tracking.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/osiris-1.0.0/ebin/osiris_writer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_boolean.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_buckets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_counter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_format.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_gauge.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_histogram.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_http.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_instrumenter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_metric.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_metric_spec.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_mnesia.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_mnesia_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_model.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_model_helpers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_protobuf_format.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_quantile_summary.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_registry.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_summary.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_test_instrumenter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_text_format.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_time.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_vm_dist_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_vm_memory_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_vm_msacc_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_vm_statistics_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/ebin/prometheus_vm_system_info_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/include/prometheus.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/prometheus-4.8.2/include/prometheus_model.hrl
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/quantile_estimator-0.2.1/ebin/quantile.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/quantile_estimator-0.2.1/ebin/quantile_estimator.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/quantile_estimator-0.2.1/ebin/quantile_estimator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/quantile_estimator-0.2.1/include/quantile_estimator.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_bench.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_counters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_dbg.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_directory.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_env.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_file_handle.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_flru.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_leaderboard.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_lib.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_meta.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_pre_init.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_segment.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_segment_writer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_snapshot.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_wal.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_log_wal_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_machine.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_machine_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_machine_simple.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_metrics_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_monitors.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_server.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_server_proc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_server_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_server_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_snapshot.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_system.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_system_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ra-2.0.9/ebin/ra_systems_sup.beam
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/amqqueue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/amqqueue_v1.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/background_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/code_server_cache.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/gatherer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/gm.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/internal_user.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/internal_user_v1.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/lqueue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/mirrored_supervisor_sups.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/pg_local.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/pid_recomposition.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_access_control.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_alarm.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_amqqueue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_amqqueue_process.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_amqqueue_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_amqqueue_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_auth_backend_internal.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_auth_mechanism_amqplain.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_auth_mechanism_cr_demo.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_auth_mechanism_plain.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_autoheal.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_backing_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_basic.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_binding.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_boot_steps.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel_interceptor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel_tracking.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_channel_tracking_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_classic_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_client_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_confirms.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_connection_helper_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_connection_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_connection_tracking.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_connection_tracking_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_control_pbe.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_core_ff.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_core_metrics_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_credential_validation.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_credential_validator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_credential_validator_accept_everything.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_credential_validator_min_password_length.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_credential_validator_password_regexp.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_dead_letter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_definitions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_definitions_import_https.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_definitions_import_local_filesystem.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_diagnostics.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_direct.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_direct_reply_to.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_disk_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_epmd_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_event_consumer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_decorator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_type_direct.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_type_fanout.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_type_headers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_type_invalid.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_exchange_type_topic.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_feature_flags.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_ff_extra.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_ff_registry.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_fhc_helpers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_fifo.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_fifo_client.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_fifo_index.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_fifo_v0.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_file.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_framing.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_global_counters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_guid.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_health_check.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_limiter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_channel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_connection.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_feature_flags.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_mirroring.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_prelaunch.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_tail.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_log_upgrade.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_logger_exchange_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_looking_glass.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_maintenance.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_memory_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_metrics.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_coordinator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_master.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_mode.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_mode_all.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_mode_exactly.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_mode_nodes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_slave.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mirror_queue_sync.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mnesia.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_mnesia_rename.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_msg_file.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_msg_record.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_msg_store.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_msg_store_ets_index.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_msg_store_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_networking.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_node_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_nodes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_osiris_metrics.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_parameter_validation.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_password.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_password_hashing_md5.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_password_hashing_sha256.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_password_hashing_sha512.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_peer_discovery.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_peer_discovery_classic_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_peer_discovery_dns.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_plugins.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_policies.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_policy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_policy_merge_strategy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_prelaunch_cluster.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_prelaunch_enabled_plugins_file.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_prelaunch_feature_flags.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_prelaunch_logging.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_prequeue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_priority_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_consumers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_decorator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_index.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_location_client_local.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_location_min_masters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_location_random.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_location_validator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_master_location_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_master_locator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_type.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_queue_type_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_quorum_memory_manager.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_quorum_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_ra_registry.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_recovery_terms.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_restartable_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_router.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_runtime_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_ssl.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_stream_coordinator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_stream_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_sysmon_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_sysmon_minder.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_table.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_trace.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_tracking.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_upgrade.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_upgrade_functions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_upgrade_preparation.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_variable_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_version.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_limit.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_msg_store.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_process.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vhost_sup_wrapper.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/rabbit_vm.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/supervised_lifecycle.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/tcp_listener.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/tcp_listener_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/term_to_binary_compat.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/ebin/vhost_v1.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/amqqueue.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/amqqueue_v1.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/amqqueue_v2.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/gm_specs.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/rabbit_global_counters.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/vhost.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/vhost_v1.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/include/vhost_v2.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit-${PKGVERSION}/priv/schema/rabbit.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/app_utils.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/code_version.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/credit_flow.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/delegate.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/delegate_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/file_handle_cache.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/file_handle_cache_stats.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/gen_server2.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/mirrored_supervisor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/mirrored_supervisor_locks.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/mnesia_sync.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/pmon.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/priority_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_amqp_connection.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_amqqueue_common.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_auth_backend_dummy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_auth_mechanism.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_authn_backend.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_authz_backend.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_basic_common.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_binary_generator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_binary_parser.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_cert_info.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_channel_common.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_command_assembler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_common.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_control_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_core_metrics.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_data_coercion.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_env.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_error_logger_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_event.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_exchange_type.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_framing_amqp_0_8.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_framing_amqp_0_9_1.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_heartbeat.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_http_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_json.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_log.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_msg_store_index.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_net.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_nodes_common.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_numerical.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_password_hashing.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_pbe.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_peer_discovery_backend.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_policy_validator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_queue_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_registry.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_registry_class.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_resource_monitor_misc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_runtime.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_runtime_parameter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_semver.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_semver_parser.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_ssl_options.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_types.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/rabbit_writer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/supervisor2.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/vm_memory_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/worker_pool.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/worker_pool_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/ebin/worker_pool_worker.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/logging.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit_core_metrics.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit_framing.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit_memory.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit_misc.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/rabbit_msg_store.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbit_common-${PKGVERSION}/include/resource.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListAmqp10ConnectionsCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_channel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_incoming_link.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_link_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_message.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_outgoing_link.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_session.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_session_process.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_session_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_session_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbit_amqp1_0_writer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/ebin/rabbitmq_amqp1_0.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/include/rabbit_amqp1_0.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_amqp1_0-${PKGVERSION}/priv/schema/rabbitmq_amqp1_0.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_backend_cache.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_backend_cache_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_cache.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_cache_dict.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_cache_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_cache_ets_segmented.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbit_auth_cache_ets_segmented_stateless.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/ebin/rabbitmq_auth_backend_cache.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/include/rabbit_auth_backend_cache.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_cache-${PKGVERSION}/priv/schema/rabbitmq_auth_backend_cache.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_http-${PKGVERSION}/ebin/rabbit_auth_backend_http.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_http-${PKGVERSION}/ebin/rabbit_auth_backend_http_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_http-${PKGVERSION}/ebin/rabbitmq_auth_backend_http.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_http-${PKGVERSION}/priv/schema/rabbitmq_auth_backend_http.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/ebin/rabbit_auth_backend_ldap.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/ebin/rabbit_auth_backend_ldap_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/ebin/rabbit_auth_backend_ldap_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/ebin/rabbit_log_ldap.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/ebin/rabbitmq_auth_backend_ldap.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/include/logging.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_ldap-${PKGVERSION}/priv/schema/rabbitmq_auth_backend_ldap.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.AddUaaKeyCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/rabbit_auth_backend_oauth2.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/rabbit_auth_backend_oauth2_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/rabbit_oauth2_scope.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/rabbitmq_auth_backend_oauth2.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/uaa_jwks.beam
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/uaa_jwt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/uaa_jwt_jwk.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/uaa_jwt_jwt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/ebin/wildcard.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_backend_oauth2-${PKGVERSION}/priv/schema/rabbitmq_auth_backend_oauth2.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_mechanism_ssl-${PKGVERSION}/ebin/rabbit_auth_mechanism_ssl.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_mechanism_ssl-${PKGVERSION}/ebin/rabbit_auth_mechanism_ssl_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_auth_mechanism_ssl-${PKGVERSION}/ebin/rabbitmq_auth_mechanism_ssl.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_json.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_sign.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_urilib.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/ebin/rabbitmq_aws_xml.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/include/rabbitmq_aws.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_aws-${PKGVERSION}/priv/schema/rabbitmq_aws.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_consistent_hash_exchange-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Diagnostics.Commands.ConsistentHashExchangeRingStateCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_consistent_hash_exchange-${PKGVERSION}/ebin/rabbit_exchange_type_consistent_hash.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_consistent_hash_exchange-${PKGVERSION}/ebin/rabbitmq_consistent_hash_exchange.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_consistent_hash_exchange-${PKGVERSION}/include/rabbitmq_consistent_hash_exchange.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}/ebin/rabbit_event_exchange_decorator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}/ebin/rabbit_exchange_type_event.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}/ebin/rabbitmq_event_exchange.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}/include/rabbit_event_exchange.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_event_exchange-${PKGVERSION}/priv/schema/rabbitmq_event_exchange.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.FederationStatusCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.RestartFederationLinkCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_db.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_event.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_exchange.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_exchange_link.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_exchange_link_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_link_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_link_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_pg.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_queue_link.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_queue_link_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_status.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_upstream.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_upstream_exchange.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_federation_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbit_log_federation.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/ebin/rabbitmq_federation.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/include/logging.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation-${PKGVERSION}/include/rabbit_federation.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/ebin/rabbit_federation_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/ebin/rabbitmq_federation_management.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/priv/www/js/federation.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/priv/www/js/tmpl/federation-upstream.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/priv/www/js/tmpl/federation-upstreams.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_federation_management-${PKGVERSION}/priv/www/js/tmpl/federation.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_jms_topic_exchange-${PKGVERSION}/ebin/rabbit_jms_topic_exchange.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_jms_topic_exchange-${PKGVERSION}/ebin/rabbitmq_jms_topic_exchange.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_jms_topic_exchange-${PKGVERSION}/ebin/sjx_evaluator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_jms_topic_exchange-${PKGVERSION}/include/rabbit_jms_topic_exchange.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_cors.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_csp.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_db.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_db_cache.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_db_cache_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_dispatcher.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_extension.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_headers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_hsts.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_load_definitions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_reset_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_stats.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_aliveness_test.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_auth.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_auth_attempts.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_binding.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_bindings.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_channel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_channels.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_channels_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_cluster_name.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_connection.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_connection_channels.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_connections.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_connections_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_consumers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_definitions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_exchange.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_exchange_publish.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_exchanges.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_extensions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_feature_flag_enable.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_feature_flags.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_global_parameter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_global_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_alarms.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_certificate_expiration.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_local_alarms.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_node_is_mirror_sync_critical.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_node_is_quorum_critical.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_port_listener.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_protocol_listener.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_health_check_virtual_hosts.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_healthchecks.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_limit.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_limits.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_login.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_node.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_node_memory.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_node_memory_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_nodes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_operator_policies.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_operator_policy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_overview.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_parameter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_permission.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_permissions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_permissions_user.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_permissions_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_policies.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_policy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_queue.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_queue_actions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_queue_get.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_queue_purge.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_queues.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_rebalance_queues.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_redirect.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_reset.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_static.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_topic_permission.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_topic_permissions.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_topic_permissions_user.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_topic_permissions_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_user.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_user_limit.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_user_limits.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_users.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_users_bulk_delete.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_vhost.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_vhost_restart.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_vhosts.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbit_mgmt_wm_whoami.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/ebin/rabbitmq_management.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/include/rabbit_mgmt.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/schema/rabbitmq_management.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/api/index.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/cli/index.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/cli/rabbitmqadmin
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/css/evil.css
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/css/main.css
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/favicon.ico
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/bg-binary.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/bg-green-dark.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/bg-red-dark.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/bg-red.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/bg-yellow-dark.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/collapse.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/expand.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/rabbitmqlogo-master-copy.svg
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/img/rabbitmqlogo.svg
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/index.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/base64.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/charts.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/dispatcher.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/ejs-1.0.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/ejs-1.0.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/excanvas.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/excanvas.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/formatters.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/global.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery-3.5.1.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery-3.5.1.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery.flot-0.8.1.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery.flot-0.8.1.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery.flot-0.8.1.time.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/jquery.flot-0.8.1.time.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/json2-2016.10.28.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/main.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/prefs.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/sammy-0.7.6.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/sammy-0.7.6.min.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/client_frame.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/postaccess.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/postauth.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/rpFrame.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/singular.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/singular/singular.umd.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/404.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/add-binding.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/binary.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/bindings.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/channel.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/channels-list.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/channels.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/cluster-name.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/columns-options.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/connection.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/connections.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/consumers.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/exchange.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/exchanges.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/feature-flags.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/layout.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/limits.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/list-exchanges.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/login.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/login_uaa.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/memory-bar.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/memory-table.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/memory.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/messages.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/msg-detail-deliveries.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/msg-detail-publishes.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/node.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/overview.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/partition.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/permissions.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/policies.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/policy.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/popup.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/publish.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/queue.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/queues.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/rate-options.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/registry.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/status.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/topic-permissions.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/user.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/users.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/vhost.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management-${PKGVERSION}/priv/www/js/tmpl/vhosts.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ResetStatsDbCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/exometer_slide.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_agent_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_agent_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_agent_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_agent_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_data.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_data_compat.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_db_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_external_stats.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_ff.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_format.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_metrics_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_metrics_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbit_mgmt_storage.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/ebin/rabbitmq_management_agent.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/include/rabbit_mgmt_agent.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/include/rabbit_mgmt_metrics.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/include/rabbit_mgmt_records.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_management_agent-${PKGVERSION}/priv/schema/rabbitmq_management_agent.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.DecommissionMqttNodeCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListMqttConnectionsCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/mqtt_machine.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/mqtt_machine_v0.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/mqtt_node.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_connection_info.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_connection_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_frame.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_internal_event_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_processor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retained_msg_store.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retained_msg_store_dets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retained_msg_store_ets.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retained_msg_store_noop.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retainer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_retainer_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbit_mqtt_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/ebin/rabbitmq_mqtt.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/include/mqtt_machine.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/include/mqtt_machine_v0.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/include/rabbit_mqtt.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/include/rabbit_mqtt_frame.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/include/rabbit_mqtt_retained_msg_store.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_mqtt-${PKGVERSION}/priv/schema/rabbitmq_mqtt.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_aws-${PKGVERSION}/ebin/rabbit_peer_discovery_aws.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_aws-${PKGVERSION}/ebin/rabbitmq_peer_discovery_aws.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_aws-${PKGVERSION}/ebin/rabbitmq_peer_discovery_aws.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_aws-${PKGVERSION}/priv/schema/rabbitmq_peer_discovery_aws.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_cleanup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_common_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_common_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_httpc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbit_peer_discovery_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/ebin/rabbitmq_peer_discovery_common.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/include/rabbit_peer_discovery.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_common-${PKGVERSION}/priv/schema/rabbitmq_peer_discovery_common.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbit_peer_discovery_consul.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbitmq_peer_discovery_consul.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbitmq_peer_discovery_consul.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbitmq_peer_discovery_consul_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbitmq_peer_discovery_consul_health_check_helper.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/ebin/rabbitmq_peer_discovery_consul_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/include/rabbit_peer_discovery_consul.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_consul-${PKGVERSION}/priv/schema/rabbitmq_peer_discovery_consul.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbit_peer_discovery_etcd.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbitmq_peer_discovery_etcd.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbitmq_peer_discovery_etcd.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbitmq_peer_discovery_etcd_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbitmq_peer_discovery_etcd_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/ebin/rabbitmq_peer_discovery_etcd_v3_client.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/include/rabbit_peer_discovery_etcd.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_etcd-${PKGVERSION}/priv/schema/rabbitmq_peer_discovery_etcd.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbit_peer_discovery_k8s.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbitmq_peer_discovery_k8s.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbitmq_peer_discovery_k8s.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbitmq_peer_discovery_k8s_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbitmq_peer_discovery_k8s_node_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/ebin/rabbitmq_peer_discovery_k8s_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/include/rabbit_peer_discovery_k8s.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_peer_discovery_k8s-${PKGVERSION}/priv/schema/rabbitmq_peer_discovery_k8s.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_boot_state.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_boot_state_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_boot_state_systemd.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_logger_fmt_helpers.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_logger_json_fmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_logger_std_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_logger_text_fmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_conf.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_dist.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_early_logging.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_erlang_compat.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_errors.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_sighandler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbit_prelaunch_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prelaunch-${PKGVERSION}/ebin/rabbitmq_prelaunch.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/prometheus_rabbitmq_alarm_metrics_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/prometheus_rabbitmq_core_metrics_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/prometheus_rabbitmq_global_metrics_collector.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/rabbit_prometheus_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/rabbit_prometheus_dispatcher.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/rabbit_prometheus_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/ebin/rabbitmq_prometheus.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_prometheus-${PKGVERSION}/priv/schema/rabbitmq_prometheus.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_random_exchange-${PKGVERSION}/ebin/rabbit_exchange_type_random.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_random_exchange-${PKGVERSION}/ebin/rabbitmq_random_exchange.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_recent_history_exchange-${PKGVERSION}/ebin/rabbit_exchange_type_recent_history.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_recent_history_exchange-${PKGVERSION}/ebin/rabbitmq_recent_history_exchange.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_recent_history_exchange-${PKGVERSION}/include/rabbit_recent_history.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_exchange_decorator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_exchange_type_modulus_hash.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_interceptor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_policy_validator.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_shard.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbit_sharding_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_sharding-${PKGVERSION}/ebin/rabbitmq_sharding.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.DeleteShovelCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.RestartShovelCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ShovelStatusCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_amqp091_shovel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_amqp10_shovel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_log_shovel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_behaviour.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_config.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_dyn_worker_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_dyn_worker_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_locks.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_parameters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_status.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_worker.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbit_shovel_worker_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/ebin/rabbitmq_shovel.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/include/logging.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel-${PKGVERSION}/include/rabbit_shovel.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/ebin/rabbit_shovel_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/ebin/rabbitmq_shovel_management.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/priv/www/js/shovel.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/priv/www/js/tmpl/dynamic-shovel.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/priv/www/js/tmpl/dynamic-shovels.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_shovel_management-${PKGVERSION}/priv/www/js/tmpl/shovels.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListStompConnectionsCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_client_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_connection_info.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_frame.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_internal_event_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_processor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbit_stomp_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/ebin/rabbitmq_stomp.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/include/rabbit_stomp.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/include/rabbit_stomp_frame.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/include/rabbit_stomp_headers.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stomp-${PKGVERSION}/priv/schema/rabbitmq_stomp.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListStreamConnectionsCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListStreamConsumersCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/Elixir.RabbitMQ.CLI.Ctl.Commands.ListStreamPublishersCommand.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_connection_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_manager.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_metrics.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_metrics_gc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_reader.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbit_stream_utils.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/ebin/rabbitmq_stream.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/include/rabbit_stream_metrics.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream-${PKGVERSION}/priv/schema/rabbitmq_stream.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_common-${PKGVERSION}/ebin/rabbit_stream_core.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_common-${PKGVERSION}/ebin/rabbitmq_stream_common.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_common-${PKGVERSION}/include/rabbit_stream.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_connection_consumers_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_connection_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_connection_publishers_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_connections_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_connections_vhost_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_consumers_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_management_utils.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_mgmt_db.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbit_stream_publishers_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/ebin/rabbitmq_stream_management.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/priv/www/js/stream.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/priv/www/js/tmpl/streamConnection.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/priv/www/js/tmpl/streamConnections.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/priv/www/js/tmpl/streamConsumersList.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_stream_management-${PKGVERSION}/priv/www/js/tmpl/streamPublishersList.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_extension.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_wm_ets_tables.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_wm_process.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_wm_processes.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbit_top_worker.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/ebin/rabbitmq_top.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/priv/www/js/tmpl/ets_tables.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/priv/www/js/tmpl/process.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/priv/www/js/tmpl/processes.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_top-${PKGVERSION}/priv/www/js/top.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_consumer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_consumer_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_files.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_mgmt.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_traces.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_wm_file.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_wm_files.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_wm_trace.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbit_tracing_wm_traces.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/ebin/rabbitmq_tracing.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/priv/www/js/tmpl/traces.ejs
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_tracing-${PKGVERSION}/priv/www/js/tracing.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store_certificate_provider.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store_file_provider.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store_http_provider.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbit_trust_store_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/ebin/rabbitmq_trust_store.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_trust_store-${PKGVERSION}/priv/schema/rabbitmq_trust_store.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_cowboy_middleware.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_cowboy_redirect.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_cowboy_stream_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch_listing_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch_registry.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbit_web_dispatch_util.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/rabbitmq_web_dispatch.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/webmachine_log.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_dispatch-${PKGVERSION}/ebin/webmachine_log_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_connection_info.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_connection_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_middleware.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbit_web_mqtt_stream_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/ebin/rabbitmq_web_mqtt.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt-${PKGVERSION}/priv/schema/rabbitmq_web_mqtt.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/ebin/rabbit_web_mqtt_examples_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/ebin/rabbitmq_web_mqtt_examples.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/bunny.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/bunny.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/echo.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/index.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/main.css
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/mqttws31.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_mqtt_examples-${PKGVERSION}/priv/pencil.cur
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_connection_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_internal_event_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_listener.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_middleware.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_stream_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbit_web_stomp_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/ebin/rabbitmq_web_stomp.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp-${PKGVERSION}/priv/schema/rabbitmq_web_stomp.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/ebin/rabbit_web_stomp_examples_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/ebin/rabbitmq_web_stomp_examples.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/bunny.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/bunny.png
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/echo.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/index.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/main.css
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/pencil.cur
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/stomp.js
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/rabbitmq_web_stomp_examples-${PKGVERSION}/priv/temp-queue.html
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch.appup
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_acceptor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_acceptors_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_conns_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_conns_sup_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_crc32c.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_embedded_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_listener_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_protocol.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_proxy_header.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_server.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_server_proxy.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_ssl.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_tcp.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/ranch-2.1.0/ebin/ranch_transport.beam
rabbitmq: updated to 3.9.14 RabbitMQ 3.9.14 Changes Worth Mentioning Core Server Bug Fixes Restart of a node that hosted one or more stream leaders resulted in their consumers not "re-attaching" to the newly elected leader. Large fanouts experienced a performance regression when streams were not enabled using a feature flag. Stream management plugin did not support mixed version clusters. Stream deletion did not result in a basic.cancel being sent to AMQP 0-9-1 consumers. Stream clients did not receive a correct stream unavailability error in some cases. It is again possible to clear user tags and update the password in a single operation. Enhancements Forward compatibility with Erlang 25. File handle cache efficiency improvements. Uknown stream properties (e.g. those requested by a node that runs a newer version) are now handled gracefully. Temporary hostname resolution issues (attempts that fail with nxdomain) are now handled more gracefully and with a delay of several seconds. Build time compatibility with Elixir 1.13. OAuth 2 AuthN/AuthZ Backend Plugin Bug Fixes auth_oauth2.additional_scopes_key in rabbitmq.conf was not converted correctly during configuration translation and thus had no effect. LDAP AuthN/AuthZ Backend Plugin Enhancement Adapt to a breaking Erlang 24.3 LDAP client change. Shovel Plugin Enhacements Shovels now can be declared with delete-after parameter set to 0. Such shovels will immediately stop instead of erroring and failing to start after a node restart. Consul Peer Discovery Plugin Enhancements Support for Consul 1.1 response code changes when an operation is attempted on a non-existent health check.
2022-04-06 16:46:28 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon_alloc.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon_lib.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon_map.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon_rec.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/recon-2.5.2/ebin/recon_trace.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug_compiler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug_dtop.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug_lexer.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug_parser.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/redbug-2.0.7/ebin/redbug_targ.beam
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/seshat-0.1.0/ebin/seshat.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/seshat-0.1.0/ebin/seshat_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/seshat-0.1.0/ebin/seshat_counters.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/seshat-0.1.0/ebin/seshat_counters_server.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/seshat-0.1.0/ebin/seshat_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/ebin/stdout_formatter.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/ebin/stdout_formatter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/ebin/stdout_formatter_paragraph.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/ebin/stdout_formatter_table.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/ebin/stdout_formatter_utils.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/stdout_formatter-0.2.4/include/stdout_formatter.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_error_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_lager_backend.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_lib.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_logger.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_logger_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_monitor.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_rfc3164.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/ebin/syslog_rfc5424.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/syslog-4.0.0/include/syslog.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler_example_handler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler_filter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/ebin/sysmon_handler_testhandler.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/include/sysmon_handler.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/sysmon_handler-1.3.0/priv/sysmon_handler.schema
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd.app
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_app.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_journal_h.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_kmsg_formatter.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_protocol.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_socket.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_sup.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/ebin/systemd_watchdog.beam
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/plugins/systemd-0.6.1/include/systemd.hrl
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-defaults
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-diagnostics
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-env
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-plugins
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-queues
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-server
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
2021-09-28 18:22:27 +02:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-streams
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-tanzu
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmq-upgrade
lib/erlang/lib/rabbitmq_server-${PKGVERSION}/sbin/rabbitmqctl
Updated net/rabbitmq to 2.6.1. Various pkgsrc fixes: - Fix mangled PLIST from the previous commit. - Depend on coreutils for readlink, which is used in rabbitmq-env. - Depend on bash, which is assumed throughout the scripts. - Make sure the shell is passed properly to make/install targets. - Fix Python usage (add Python 2.7) and clean up other bits. RabbitMQ changelog: 2.6.1 bug fixes - The broker failed to (re)start on reboot on systems that keep /var/run on a temporary file systems, e.g. Ubuntu. - The Windows service failed to increase the Erlang process limit, limiting the broker to a few thousand queues, connections and channels. 2.6.0 bug fixes - Upgrading from RabbitMQ 2.1.1 to any later release could break if there were durable queues with persistent messages present. - On very slow machines, starting rabbit via the supplied init scripts could fail with a timeout. - Rabbit could fail to stop (when asked to do so) in the presence of some plug-ins (e.g. shovel). - 'ram' nodes in a cluster could consume ever increasing amounts of disk space. - The presence of fast consumers on a queue could significantly delay the addition of new consumers. - When a client was issuing a tx.commit in one channel, and simultaneously, in another channel, deleted a durable queue with persistent messages involved in that tx, rabbit could terminate with an error. - When a client was using both basic.qos and channel.flow, the latter would fail to re-enable message flow. - When using 'confirm' mode, the deletion of queues could cause nacks to be issued (incorrectly). - In extremely rare circumstances (never observed in the wild), a queue with a per-queue message ttl could break during sudden changes in rabbit memory usage. 2.6.0 enhancements - Introduce active-active HA, with queues getting mirrored on nodes in a cluster. See http://www.rabbitmq.com/ha.html. - Revamp the handling of AMQP's tx (transaction) class and clarify its behaviour See http://www.rabbitmq.com/specification.html#tx. - Replace the 'administrator' flag, as used by the management plugin, with a more general 'user tags' mechanism. See http://www.rabbitmq.com/man/rabbitmqctl.1.man.html#set_user_tags. - Do not require 'configure' permissions for passive queue/exchange declaration. - Optimise of message delivery on channels with a basic.qos prefetch limit that are consuming from many queues. - In 'rabbitmqctl list_channels', do not show the tx mode by default. - When a cluster 'degrades' to only containing ram nodes - through 'rabbitmqctl' actions or node failure - display/log a warning. - Eliminate some spurious errors from the sasl log.
2011-09-29 16:00:39 +02:00
man/man5/rabbitmq-env.conf.5
man/man8/rabbitmq-diagnostics.8
man/man8/rabbitmq-echopid.8
man/man8/rabbitmq-plugins.8
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
man/man8/rabbitmq-queues.8
man/man8/rabbitmq-server.8
man/man8/rabbitmq-service.8
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
man/man8/rabbitmq-upgrade.8
man/man8/rabbitmqctl.8
sbin/rabbitmq-defaults
sbin/rabbitmq-diagnostics
sbin/rabbitmq-env
sbin/rabbitmq-plugins
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
sbin/rabbitmq-queues
sbin/rabbitmq-server
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
2021-09-28 18:22:27 +02:00
sbin/rabbitmq-streams
sbin/rabbitmq-tanzu
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
sbin/rabbitmq-upgrade
sbin/rabbitmqctl
share/examples/rabbitmq/rabbitmq-env.conf
rabbitmq: updated to 3.8.2 RabbitMQ 3.8.2 Changes Core Server Enhancements Raft implementation optimizations. Quorum queue optimization: enables local (not going through the leader) delivery from Raft followers when appropriate and safe. If x-queue-type argument is not provided at queue declaration time, the type is assumed to be classic instead of missing. Quorum queue consumer timeout now can be configured using new style configuration file: # Hard timeout for quorum queue consumer acknowledgemnts of two minutes consumer_timeout = 120000 Bug Fixes A quorum queue could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Quorum queue consumer count metric could be duplicated when reported via HTTP API or to a Prometheus scraper. Quorum queue with single active consumer enabled crashes after some basic.get calls. Quorum queues now forbid basic.get when single active consumer is enabled. CLI Tools Enhancements It is now possible to export and import definitions without the use of plugins with rabbitmqctl export_definitions and rabbitmqctl import_definitions: # export as a JSON file rabbitmqctl export_definitions /path/to/target.file.json # export as JSON to standard output and pipe to jq rabbitmqctl export_definitions "-" | jq # export as a compressed Erlang term file rabbitmqctl export_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help export_definitions # import from a JSON file rabbitmqctl import_definitions /path/to/target.file.json # import JSON from standard input cat /path/to/definitions.json | rabbitmqctl import_definitions "-" # import from a compressed Erlang term file rabbitmqctl import_definitions /path/to/target.file --format=erlang # learn more rabbitmqctl help import_definitions Entities with amq.* prefixes are now skipped during import instead of producing an error. Bug Fixes rabbitmqctl await_startup failed with an exception when RabbitMQ application was stopped but the runtime (Erlang VM) was running. Management Plugin Bug Fixes Definition import via HTTP API could fail in if performed via HTTP API (but not management UI) and contained operator policies. Enhancements Metric aggregation optimizations. MQTT Plugin Enhancements Throughput improvements ranging from 14 to 60 percent depending on workload. Throughput improvements and reduced CPU usage but slightly higher per connection RAM footprint. Bug Fixes Client ID tracker could produce an empty Raft log segment if node is killed at a particular moment in time, which would prevent the node from successfully recovering the log after restart. Last Will messages that use QoS 2 will now be downgraded to QoS 1 just like with "regular" published messages. AMQP 1.0 Plugin Enhancements Throughput improvements. STOMP Plugin Enhancements Throughput improvements. Web STOMP Plugin Enhancements Clients now can authenticate using an x.509 (TLS) certificate. Prometheus Plugin A small number of queue metrics were not read from the metric store correctly.
2020-02-13 19:31:07 +01:00
share/examples/rabbitmq/rabbitmq.conf.example