Releases: spryker/queue
Releases · spryker/queue
1.9.2
Included commits: 1.9.1...1.9.2
Fixes
- Adjusted
QueueFacade::startWorker()
so it outputs the correct message within enabled logging mode.
1.9.1
Included commits: 1.9.0...1.9.1
Fixes
- Adapted compatibility shim with symfony/process 3.4.x to clarify why it exists
1.9.0
Included commits: 1.8.2...1.9.0
Improvements
- Introduced
InMemoryAdapterInterface
andInMemoryQueueAdapter
. - Introduced
QueueHelper
which replaces the "real" queue for testing. - Introduced ResponseTransfer for debugging purposes.
1.8.2
Included commits: 1.8.1...1.8.2
Fixes
- Use array instead of string for
Process
. - Added return type-hint to the console command.
1.8.1
1.8.0
Included commits: 1.7.3...1.8.0
Improvements
- Introduced
QueueConfig::getSignalsForGracefulWorkerShutdown()
method to define the list of signals that will be handled for the graceful queue worker shutdown. - Adjusted queue worker with signal handing so it gracefully shutdowns when a signal is received.
1.7.3
1.7.2
Included commits: 1.7.1...1.7.2
Fixes
- Refactored
ContainerInterface
array access usage toContainerInterface::set()
method usage.
1.7.1
Included commits: 1.7.0...1.7.1
Bugfixes
- Fixed usage of Symfony Process with string input.
- Command output will write to file again.
1.7.0
Included commits: 1.6.2...1.7.0
Improvements
- Adjusted
QueueFacadeInterface::startWorker()
with the optional$options
argument. If$options[SharedQueueConfig::CONFIG_WORKER_STOP_WHEN_EMPTY]
is equal totrue
, the worker execution will stop when the queues are empty.