Skip to content

Releases: lukewaite/laravel-queue-aws-batch

v1.2.0

24 Mar 20:19
5c31922
Compare
Choose a tag to compare

[v1.2.0] (2021-03-24)

Added

  • Added the default Handler when creating Worker so that exceptions may be reported during Worker::process

v1.1.1

21 Aug 16:37
29092ba
Compare
Choose a tag to compare

[v1.1.1] (2018-08-21)

Fixed

  • Fix non-overridden jobs by not setting the containerOverrides key when not provided

v1.1.0

20 Aug 22:45
a97c783
Compare
Choose a tag to compare

[v1.1.0] (2018-08-20)

Added

  • Added support for containerOverrides (#11c0184)

v1.0.2

20 Jul 16:22
1354046
Compare
Choose a tag to compare

[v1.0.2] (2018-07-20)

Fixed

Fix: Jobs sometimes run until max tries hit without hitting laravel's queue failure method (#3a25d14e)

v1.0.1

15 Jul 22:35
7550b7e
Compare
Choose a tag to compare

[v1.0.1] (2018-07-15)

Fixed

  • Correctly set the queue on construction of the BatchJob - fixes an issues where
    failing jobs were written into the failed jobs table with the connection name as
    the queue name. (#2aa745b)

Bugfix: queue:work-batch runs without error

14 Apr 01:32
Compare
Choose a tag to compare

v2.0.1 (2017-04-13)

Fixed

  • Fix queue-work:batch command to run without error (#28)
  • Fix job failures and retries (#28)

v2 - Supporting Laravel 5.4

09 Apr 21:52
Compare
Choose a tag to compare

v2.0.0 (2017-04-09)

Supported Version

  • Updated to support Laravel 5.4 (#26)
  • Support for Laravel 5.1, 5.2, and 5.3 has been removed. See the 1.0 branch for those versions. (#26)

Updated

  • Refactored to not override the base Queue class getDisplayName method (#26)

First Stable Release, Supporting L5.1->5.3

09 Apr 15:45
Compare
Choose a tag to compare

v1.0.0 (2017-04-09)

Added

  • Support for Laravel 5.2, and 5.3 (#25)

Fixed

  • Fix: Re-throw exception in command handler, don't explicitly exit() (#5cc05a8)

Failing Job Fixes

08 Apr 00:14
Compare
Choose a tag to compare
Failing Job Fixes Pre-release
Pre-release

Fixed

  • Correct sanitation of job names which previously blocked creation of class based batch jobs
  • Fix: Failing jobs throw exception when logging about failing (Array to String Conversion)
  • Fix: BatchQueue methods ->push and ->update now return the id of the entry
  • Fix: BatchQueue now properly releases failed jobs back into the queue

Throw Exceptions on More Unsupported Operations Calls

07 Apr 21:40
Compare
Choose a tag to compare

Added

  • Added exceptions on further unsupported operations. These two methods would both silently discard the $delay previously and set to 0.
    • BatchQueue::release() #20
    • BatchJob::release() Diff
  • More complete test coverage (#18, #19)