forked from php-amqplib/RabbitMqBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
29 lines (25 loc) · 1.72 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
- 2012-06-04
* Revert PR #46. It is still possible to override parameter classes but in a proper way.
* Some default options for exchanges declared in the "producers" config section
have changed to match the defaults of exchanges declared in the "consumers" section.
The affected settings are:
* `durable` was changed from `false` to `true`,
* `auto_delete` was changed from `true` to `false`.
* Adds basic_reject functionality to consumers. A message can be rejected by returning `false` from a callback.
- 2012-05-29
* Merged PR #46 adding compiler passes for the configuration. Now the parameter classes can be overriden.
* Treats queue arguments as a variableNode in the configuration to allow declaring HA Queues.
- 2012-01-03
* Merged PR #14 Now instances of `PhpAmqpLib\Message\AMQPMessage` are passed to consumers instead of just the message body.
The message body can be obtained then by writing `$msg->body` inside the `execute` method.
* Merged PR #13 removing the need for the ContainerAwareInterface on consumers.
* `rabbitmq:consumer` now takes a `--route` argument that can be used to specify the routing key.
- 2011-11-25:
* Fixed autoload configuration example
* Adds a producer that can publish data coming from STDIN. The use case will be to use it in combination with unix pipes.
- 2011-11-24:
* The rabbitmq:consumer command consumes messages forever unless the -m option is provided.
* The -m option for the rabbitmq:consumer command must be greater null or greater than 0.
* Fixed issues #2 #7 #11 and #12.
* Updated the bundle to use the latest version from videlalvaro/php-amqplib.
* Updated installation/setup instructions.