Releases: squigg/azure-queue-laravel
Releases · squigg/azure-queue-laravel
v11.0.0
What's Changed
- Laravel 11.x Compatibility by @laravel-shift in #31
New Contributors
- @laravel-shift made their first contribution in #31
Full Changelog: v10.0.1...v11.0.0
v10.0.1
v10.0
v9.0
v8.2.0
What's Changed
- Adds support for QueueEndpoint parameter by @dragomirt in #22
New Contributors
- @dragomirt made their first contribution in #22
Full Changelog: v8.1.0...v8.2.0
Support for PHP 8.0
Support for Laravel 8.x
Support for Laravel 8.x.
Important note re. dependencies
Laravel 8 has moved to Guzzle 7.x, but the upstream dependency microsoft/azure-storage-queue
from this package still uses Guzzle 6.
This will cause composer
to fail during dependency resolution.
Tests so far have not identified any impacting breaking changes between Guzzle 6 and 7, so while we wait for the upstream package to be updated, you can work around this issue by adding/updating your root
composer.json
file to use an inline alias for guzzlehttp/guzzle
:
"guzzlehttp/guzzle": "7.0.1 as 6.5.5"
Or run this command:
composer require guzzlehttp/guzzle:"7.0.1 as 6.5.5"