Skip to content

v2.15.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 01 Oct 01:05
· 21 commits to main since this release
6803023

v2.15.0 (Sep 30, 2025)

Enhancements

  • permissions is a new command group for operations on user permissions:

    rabbitmqadmin permissions list
    
    rabbitmqadmin permissions declare --user "user1" --configure ".*" --read ".*" --write ".*"
    
    rabbitmqadmin permissions delete --user "user1"
  • user_limits is a new command group for operations on per-user limits:

    rabbitmqadmin user_limits list
    
    rabbitmqadmin user_limits declare --user "user1" --name "max-connections" --value "100"
    
    rabbitmqadmin user_limits delete --user "user1" --name "max-connections"
  • vhost_limits is a new command group for operations on virtual host limits:

    rabbitmqadmin vhost_limits list
    
    rabbitmqadmin vhost_limits declare --name "max-connections" --value "1000"
    
    rabbitmqadmin vhost_limits delete --name "max-connections"

Deprecations

  • "Verb" command groups (list [object], declare [object], delete [object]) are now deprecated in favor of the "noun" group commands (such as users [operation] or permissions [operation]).