Skip to content

v5.0.0

Latest
Compare
Choose a tag to compare
@romanzipp romanzipp released this 11 Sep 09:32
· 24 commits to master since this release

Previous upgrade guides

Version 4.0 added the ability to retry jobs. For this two new columns job_uuid and retried are introduced.

Upgrading to 5.0 from 4.0

Changes

  • Add monitoring queued jobs #131 by @AsemAlalami
  • Add SQLite support
  • Add PostgreSQL support

Database

Version 5.0 adds the ability to also monitor queued jobs which requires a new column queued_at

php artisan vendor:publish --provider="romanzipp\QueueMonitor\Providers\QueueMonitorProvider" --tag=migrations
php artisan migrate

Config

A new config option monitor_queued_jobs is introduced. Dispatched jobs will be automatically monitored. If you wish to disable this feature, make sure to change this config value.