|
1 | 1 | # rabbitmqadmin-ng Change Log
|
2 | 2 |
|
3 |
| -## v0.28.0 (in development) |
| 3 | +## v0.29.0 (in development) |
| 4 | + |
| 5 | +In (documented) changes yet. |
| 6 | + |
| 7 | + |
| 8 | +## v0.28.0 (Mar 23, 2025) |
4 | 9 |
|
5 | 10 | ### Enhancements
|
6 | 11 |
|
| 12 | + * New command group: `federation`, see |
| 13 | + |
| 14 | + ```shell |
| 15 | + rabbitmqadmin federation help |
| 16 | + ``` |
| 17 | + |
| 18 | +* New command: `federation declare_upstream_for_queues` for declaring upstreams that will exclusively be used for queue |
| 19 | + federation. This command does not support any options related to exchange federation. |
| 20 | + |
| 21 | + ```shell |
| 22 | + rabbitmqadmin federation --vhost "local.vhost" declare_upstream \ |
| 23 | + --name "dc.vancouver" \ |
| 24 | + --uri "amqp://192.168.0.25/demote.vhost" \ |
| 25 | + --ack-mode "on-confirm" |
| 26 | + ``` |
| 27 | + |
| 28 | +* New command: `federation declare_upstream_for_exchanges` for declaring upstreams that will exclusively be used exchange |
| 29 | + federation. This command does not support any options related to queue federation. |
| 30 | + |
| 31 | + ```shell |
| 32 | + rabbitmqadmin federation --vhost "local.vhost" declare_upstream \ |
| 33 | + --name "dc.vancouver" \ |
| 34 | + --uri "amqp://192.168.0.25/demote.vhost" \ |
| 35 | + --ack-mode "on-confirm" |
| 36 | + ``` |
| 37 | + |
| 38 | + * New command: `federation declare_upstream` for declaring upstreams that can be used for either queue or exchange |
| 39 | + federation. This command supports the whole spectrum of federation upstream options, that is, both the settings |
| 40 | + of queue and exchange federation. |
| 41 | + |
| 42 | + ```shell |
| 43 | + rabbitmqadmin federation --vhost "local.vhost" declare_upstream \ |
| 44 | + --name "dc.canada.bc.vancouver" \ |
| 45 | + --uri "amqp://192.168.0.25/demote.vhost" \ |
| 46 | + --ack-mode "on-confirm" |
| 47 | + ``` |
| 48 | + |
| 49 | + * New command: `federation list_all_upstreams` for listing all upstreams (that is, upstreams across all the virtual hosts in the cluster). |
| 50 | + |
| 51 | + ```shell |
| 52 | + rabbitmqadmin federation list_all_upstreams |
| 53 | + ``` |
| 54 | + |
| 55 | + * New command: `federation list_all_links` for listing all links (that is, links across all the virtual hosts in the cluster). |
| 56 | + |
| 57 | + ```shell |
| 58 | + rabbitmqadmin federation list_all_links |
| 59 | + ``` |
| 60 | + |
| 61 | + * New command: `federation delete_upstream`. As the name suggests, it deletes an upstream. |
| 62 | + |
| 63 | + ```shell |
| 64 | + rabbitmqadmin federation delete_upstream --name "dc.canada.bc.vancouver" |
| 65 | + ``` |
| 66 | + |
7 | 67 | * New definitions export `--transformations` value, `obfuscate_usernames`, changes usernames to dummy values
|
8 | 68 | (e.g. so that definitions could be shared safely with external teams)
|
9 | 69 | * New definitions export `--transformations` value, `exclude_users`, removes users from the result
|
|
0 commit comments