diff --git a/.changes/unreleased/DX-20250407-121010.yaml b/.changes/unreleased/DX-20250407-121010.yaml index 873e44880..2347b046d 100644 --- a/.changes/unreleased/DX-20250407-121010.yaml +++ b/.changes/unreleased/DX-20250407-121010.yaml @@ -8,7 +8,7 @@ changelog: | - Refactor manually the initializeQuery method - Remove the injection of ExportManager into the constructor of each export element: - ````diff + ```diff - class MyFormatter implements FormatterInterface + class MyFormatter implements FormatterInterface, \Chill\MainBundle\Export\ExportManagerAwareInterface @@ -24,6 +24,17 @@ changelog: | } } ``` + - configure messenger to handle export in a queue: + + ```diff + # config/packages/messenger.yaml + framework: + messenger: + routing: + + 'Chill\MainBundle\Export\Messenger\ExportRequestGenerationMessage': priority + ``` + +