Ruby RabbitMQ clients blog

News and updates about various Ruby clients for RabbitMQ

Bunny 1.1.2 Is Released

TL;DR

Bunny 1.1.2 is released to rubygems.org.

This is a usability release.

Changes between Bunny 1.1.1 and 1.1.2

Internal Exchanges

Exchanges now can be declared as internal:

1
2
ch = conn.create_channel
x  = ch.fanout("bunny.tests.exchanges.internal", :internal => true)

Internal exchanges cannot be published to by clients and are solely used for Exchange-to-Exchange bindings and various plugins but apps may still need to bind them. Now it is possible to do so with Bunny.

Full Change Log

Full change log can be found on GitHub.

About the Author

Michael on behalf of the Ruby RabbitMQ Clients Team