Brefphp Symfony Messenger Versions Save

Bridge to use Symfony Messenger on AWS Lambda with Bref

1.2.0

3 weeks ago

What's Changed

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/1.1.1...1.2.0

1.1.1

2 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/1.1.0...1.1.1

1.1.0

3 months ago

1.0.0

5 months ago

There are no BC breaks with the previous 0.x version.

I am tagging 1.0 because this repository is stable and should no longer be a 0.x version.

What's new

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.5.4...1.0.0

0.5.4

1 year ago

What's Changed

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.5.3...0.5.4

0.5.3

1 year ago

What's Changed

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.5.2...0.5.3

0.5.2

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.5.1...0.5.2

0.5.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.5.0...0.5.1

0.5.0

1 year ago

This release brings the support for Partial Batch Failure inside the Symfony Messenger bridge :tada:

To enable it, there's two easy steps:

  1. Change your SqsConsumer service definition
Bref\Symfony\Messenger\Service\Sqs\SqsConsumer:
        public: true
        autowire: true
        arguments:
            # Pass the transport name used in config/packages/messenger.yaml
            $transportName: 'async'
+           $partialBatchFailure: true
  1. Configure a batch size greater than 1 and add ReportBatchItemFailures to the FunctionResponseTypes of your Lambda worker function. Lift does it for you automatically since v1.12.0 :sunglasses:

What's Changed

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.4.4...0.5.0

0.4.4

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/brefphp/symfony-messenger/compare/0.4.3...0.4.4