v0.25.0
v0.25.0 (Mar 2, 2025)
Enhancements
-
Binary packages for 8x86-64 Linux are now produced on an older
glibc
version,2.35
,
for compatibility with Debian Bookworm and Ubuntu 22.04 -
shovels declare_amqp10
is a new command that declares a dynamic Shovel that will use
AMQP 1.0 for both source and destination:
rabbitmqadmin --vhost "shovels" shovels declare_amqp10 \
--name "shovel-2" \
--source-uri amqp://localhost:5672 \
--destination-uri amqp://localhost:5672 \
--source-address "/queue/src.q" --destination-address "/queue/dest.q"
-
shovels declare_amqp091
is a new command that declares a dynamic Shovel that will use
AMQP 0-9-1 for both source and destination:rabbitmqadmin --vhost "shovels" shovels declare_amqp091 \ --name "shovel-2" \ --source-uri amqp://localhost:5672 \ --destination-uri amqp://localhost:5672 \ --source-queue "src.q" --destination-exchange "amq.fanout"
-
shovels delete
is a new command that deletes a dynamic shovel:rabbitmqadmin --vhost "shovels" shovels delete --name "shovel-2"