This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Messenger
Fabien Potencier 5a0645974f minor #37141 [Messenger] fix forward compatibility with Doctrine DBAL 2.11+ (xabbuh)
This PR was merged into the 5.1 branch.

Discussion
----------

[Messenger] fix forward compatibility with Doctrine DBAL 2.11+

| Q             | A
| ------------- | ---
| Branch?       | 5.1
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

The methods will be deprecated in 2.11 (see doctrine/dbal#4019), but the forward compatibility layer is only present in 3.0 (see doctrine/dbal#4007).

Commits
-------

bca4f9970b fix forward compatibility with Doctrine DBAL 2.11+
2020-06-09 13:31:06 +02:00
..
Command Missing description in messenger:setup-transports command 2020-05-12 22:52:55 +02:00
DataCollector Fix some \Throwable support remaining issues 2019-11-12 18:18:47 +01:00
DependencyInjection Fix quotes in exception messages 2020-03-16 12:24:17 +01:00
Event [Messenger] use events consistently in worker 2019-11-05 18:28:25 +01:00
EventListener [ErrorHandler] merge and remove the ErrorRenderer component 2019-11-10 18:54:30 +01:00
Exception [Messenger] extract worker logic to listener and sent messages for retry 2019-10-31 15:47:36 +01:00
Handler Merge branch '4.3' into 4.4 2019-12-16 11:45:21 +01:00
Middleware Parse and render anonymous classes correctly on php 8 2020-05-24 10:33:35 +02:00
Retry [Messenger] remove nullable max retries 2019-10-24 23:51:16 +02:00
Stamp feature #34312 [ErrorHandler] merge and remove the ErrorRenderer component (nicolas-grekas, yceruto) 2019-11-12 10:05:23 +01:00
Test/Middleware removed @experimental annotations 2019-06-29 18:43:50 +02:00
Tests minor #37141 [Messenger] fix forward compatibility with Doctrine DBAL 2.11+ (xabbuh) 2020-06-09 13:31:06 +02:00
Transport Handle fetch mode deprecation of DBAL 2.11. 2020-05-28 10:27:51 +02:00
.gitattributes add missing gitattributes for phpunit-bridge 2020-03-27 17:54:36 +01:00
.gitignore Add gitignore file for Symfony 4.3 2019-09-17 11:54:03 +02:00
CHANGELOG.md Add handling for delayed message to redis transport 2019-11-05 19:40:51 +01:00
composer.json bug #36914 Parse and render anonymous classes correctly on php 8 (derrabus) 2020-05-24 10:35:29 +02:00
Envelope.php Fix quotes in exception messages 2020-03-16 12:24:17 +01:00
HandleTrait.php Fix CS 2020-02-04 10:32:40 +01:00
LICENSE Update year in license files 2020-01-01 12:51:43 +01:00
MessageBus.php Fix quotes in exception messages 2020-03-16 12:24:17 +01:00
MessageBusInterface.php removed @experimental annotations 2019-06-29 18:43:50 +02:00
phpunit.xml.dist Merge branch '3.4' into 4.1 2018-11-11 20:51:29 +01:00
README.md Merge branch '4.3' into 4.4 2020-01-21 11:11:47 +01:00
RoutableMessageBus.php Add missing dots at the end of exception messages 2020-03-15 15:17:26 +01:00
TraceableMessageBus.php feature #32745 [Messenger][Profiler] Attempt to give more useful source info when using HandleTrait (ogizanagi) 2019-07-27 08:27:28 +02:00
Worker.php Merge branch '4.3' into 4.4 2019-12-07 17:27:44 +01:00

Messenger Component

The Messenger component helps application send and receive messages to/from other applications or via message queues.

Resources