Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 2.47 KB

CHANGELOG.md

File metadata and controls

40 lines (28 loc) · 2.47 KB

Release Notes for 2.x

v2.0.1 (2017-04-13)

Fixed

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

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)

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)

v0.2.1 (2017-04-07)

Fixed

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

v0.2.0 (2017-04-07)

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)