Skip to content

Releases: squigg/azure-queue-laravel

v11.0.0

30 Mar 08:14
dff0d3f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v10.0.1...v11.0.0

v10.0.1

26 May 12:31
a8ef4bf
Compare
Choose a tag to compare

What's Changed

  • fix return type for getJobId to be string by @aaw0 in #29

New Contributors

  • @aaw0 made their first contribution in #29

Full Changelog: v10.0...v10.0.1

v10.0

17 Mar 11:17
e579e02
Compare
Choose a tag to compare

What's Changed

Full Changelog: v9.0...v10.0

v9.0

14 Mar 11:16
b213c57
Compare
Choose a tag to compare

What's Changed

Full Changelog: v8.2.0...v9.0

v8.2.0

03 Feb 10:40
ff52091
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v8.1.0...v8.2.0

Support for PHP 8.0

16 Oct 06:07
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v8.0.0...v8.1.0

Support for Laravel 8.x

19 Sep 00:37
91c8f56
Compare
Choose a tag to compare

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"