10000 Last changes to get this PR ready! · symfony/symfony@2bb4b88 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2bb4b88

Browse files
committed
Last changes to get this PR ready!
1 parent 3151b54 commit 2bb4b88

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/Symfony/Component/Messenger/CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ CHANGELOG
7474
only. Pass the `auto_setup` connection option to control this.
7575
* Added a `SetupTransportsCommand` command to setup the transports
7676
* Added a Doctrine transport. For example, use the `doctrine://default` DSN (this uses the `default` Doctrine entity manager)
77-
* Added `AmqpRoutingKeyStamp` allowing to provide a routing key on message publishing.
78-
* Deprecated publishing with a routing key from queue configuration, use exchange configuration instead.
7977

8078
4.2.0
8179
-----

src/Symfony/Component/Messenger/Transport/AmqpExt/Connection.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,6 @@ public function publish(string $body, array $headers = [], int $delay = 0, strin
183183
$this->setup();
184184
}
185185

186-
// TODO - allow flag & attributes to be configured on the message
187-
188186
$this->exchange()->publish(
189187
$body,
190188
$routingKey ?? $this->getDefaultPublishRoutingKey(),
@@ -214,8 +212,6 @@ private function publishWithDelay(string $body, array $headers, int $delay, ?str
214212
$this->setupDelay($delay, $exchangeRoutingKey);
215213
}
216214

217-
// TODO - allow flag & attributes to be configured on the message
218-
219215
$this->getDelayExchange()->publish(
220216
$body,
221217
$this->getRoutingKeyForDelay($delay),

0 commit comments

Comments
 (0)
0