Skip to content

v0.23.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Feb 01:37
· 194 commits to main since this release
7bc9718

v0.23.0 (Feb 2, 2025)

Enhancements

  • list user_connections is a new command that lists connections of a specific user:

    rabbitmqadmin --vhost="/" list user_connections --username "monitoring.1"
    
    rabbitmqadmin --vhost="production" list user_connections --username "web.45cf7dc28"
    
  • close user_connections is a new command that closes connections of a specific user:

    rabbitmqadmin --vhost="/" close user_connections --username "monitoring.2"
    
    rabbitmqadmin --vhost="production" close user_connections --username "web.94ee67772"
    
  • New general option --table-style, can be used to change output table styling.

    By default, the following style is used:

    rabbitmqadmin --table-style=modern show overview

    An equivalent of --non-interactive in terms of styling is

    rabbitmqadmin --table-style=borderless show overview

    More available styles:

    rabbitmqadmin --table-style=ascii show overview
    rabbitmqadmin --table-style=psql show overview
    rabbitmqadmin --table-style=markdown show overview
    rabbitmqadmin --table-style=dots show overview