Releases: lukewaite/laravel-queue-aws-batch
Releases · lukewaite/laravel-queue-aws-batch
v1.2.0
[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
[v1.1.1] (2018-08-21)
Fixed
- Fix non-overridden jobs by not setting the containerOverrides key when not provided
v1.1.0
[v1.1.0] (2018-08-20)
Added
- Added support for containerOverrides (#11c0184)
v1.0.2
[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
[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
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
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
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
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
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)