Releases: Vinelab/bowler
Releases · Vinelab/bowler
v0.3.1
v0.3.0
v0.2.0
V0.1.0
New features:
- Support fanout, direct and topic exchange types.
- Customize exchange and queue declaration.
- Support dead lettering.
- Register Queue and generate message handler from command line.
- Default Pub/Sub.
- Error handling.
Breaking changes:
- Producer should setup the exchange
Producer::setup()
. Producer::send()
messages now, onlyPublisher::publish()
.- Setting the Producer's message routingKey is now set when sending a message.
Producer::send($data, $routingKey)
. - Setting the Publisher's message routingKey is now set when publishing a message.
Publisher::publish($routingKey, $data)
.
Beta Release
This release contains the following features:
1 - Create a producer object with exchange name and type
2 - Run the consumer from the console using the command: php artisan bowler:consume
and then specifying the queue name