Skip to content

v2.13.0

Choose a tag to compare

@github-actions github-actions released this 26 Sep 06:10
· 58 commits to main since this release
78ef725

v2.13.0 (Sep 26, 2025)

Enhancements

  • Memory breakdown commands (show memory_breakdown_in_bytes and show memory_breakdown_in_percent) now gracefully handle
    cases where memory breakdown stats are not yet available on the target node

  • shovel enable_tls_peer_verification_for_all_source_uris is a new command that enables TLS peer verification
    for all shovel source URIs:

    # The certificate and private key paths below refer
    # to the files deployed to the target RabbitMQ node(s), not to the
    # local files.
    #
    # As such, these arguments are command-specific and should not be confused
    # with the global `--tls-ca-cert-file`, `--tls-cert-file`, and `--tls-key-file`
    # arguments that are used by `rabbitmqadmin` itself to connect to the target node
    # over the HTTP API.
    rabbitmqadmin shovels enable_tls_peer_verification_for_all_source_uris \
        --node-local-ca-certificate-bundle-path /path/to/node/local/ca_bundle.pem \
        --node-local-client-certificate-file-path /path/to/node/local/client_certificate.pem \
        --node-local-client-private-key-file-path /path/to/node/local/client_private_key.pem

    See TLS guide and Shovel guide to learn more.

  • shovel enable_tls_peer_verification_for_all_destination_uris is a new command that enables TLS peer verification
    for all shovel destination URIs:

    # Ditto, the certificate and private key paths below refer
    # to the files deployed to the target RabbitMQ node(s), not to the
    # local files.
    rabbitmqadmin shovels enable_tls_peer_verification_for_all_destination_uris \
        --node-local-ca-certificate-bundle-path /path/to/node/local/ca_bundle.pem \
        --node-local-client-certificate-file-path /path/to/node/local/client_certificate.pem \
        --node-local-client-private-key-file-path /path/to/node/local/client_private_key.pem

Upgrades

  • RabbitMQ HTTP API client was upgraded to 0.59.0