v3.0.0
Changes
- Add status column
- Add
queue-monitor:stalecommand to mark jobs as stale - Add
queue-monitor:purgecommand to delete old monitor entires - Update route registration
- Add stale job detection
- Rework UI (+ darkmode)
Upgrading to 3.0 from 2.0
Minimum version
The minimum PHP version is 8.0.
Database
Version 3.0 adds a new status column to the queue monitor table which replaces the previous failed column.
The migration also keeps the failed state before removing the old column.
Publish & execute upgrade migration:
php artisan vendor:publish --provider="romanzipp\QueueMonitor\Providers\QueueMonitorProvider" --tag=migrations-upgrade
php artisan migrate