Skip to content

Commit 11b4fda

Browse files
Change log updates
1 parent 6428172 commit 11b4fda

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@
55
This version adopts [Bunny `3.x`](https://github.com/ruby-amqp/bunny/releases/tag/3.0.0)
66
and as a result, requires Ruby 3.0.
77

8+
### `without_namespace` Consumer DSL Option
9+
10+
Consumers can now opt out of the automatic namespace prefix
11+
for their queue name using the `without_namespace` DSL method:
12+
13+
``` ruby
14+
class DeadLetterConsumer
15+
include Hutch::Consumer
16+
consume 'dead.letters'
17+
queue_name 'deadletter'
18+
without_namespace
19+
end
20+
```
21+
22+
Originally contributed by @tlloydthwaites.
23+
24+
GitHub issue: [#393](https://github.com/ruby-amqp/hutch/pull/393)
25+
826
### Consumer Channel Recovery After Delivery Acknowledgement Timeout
927

1028
Hutch now automatically "recovers" (reopens) consumer channels closed by RabbitMQ

0 commit comments

Comments
 (0)