diff --git a/CHANGELOG.md b/CHANGELOG.md index 42ceceb..76ac311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.1] - 2023-02-06 + +### Changed +- Updated Horizon Dashboard Layout (new UI) + ## [3.1.0] - 2022-09-23 ### Added diff --git a/README.md b/README.md index 09519e1..aeb871b 100644 --- a/README.md +++ b/README.md @@ -165,7 +165,7 @@ It's recommended to add your Queue Worker Configuration `config.horizon.environm ## Server configuration * Add the following to the `supervisord` configuration on the server. The complete `supervisord` configuration can be found [on the supervisor website](http://supervisord.org/index.html). - +* See [Configuring Supervisor](https://laravel.com/docs/9.x/queues#configuring-supervisor) (Official Laravel Documentation). ``` [program:-queue] process_name=%(program_name)s_%(process_num)02d @@ -173,13 +173,16 @@ directory=/ command=//php //artisan horizon autostart=true autorestart=true +stopasgroup=true +killasgroup=true user= numprocs=1 redirect_stderr=true stdout_logfile=/var/log/supervisord/-queue.log +stopwaitsecs=90 ``` -* Add the following to the cronjob configuration on the server. This will make sure the [Horizon metrics](https://laravel.com/docs/6.x/horizon#metrics) are created periodically. +* Add the following to the cronjob configuration on the server. This will make sure the [Horizon metrics](https://laravel.com/docs/9.x/horizon#metrics) are created periodically. ``` * * * * * //php //artisan schedule:run > /dev/null diff --git a/composer.json b/composer.json index 6ef02ac..565f066 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "ext-redis": "*", "composer/installers": "^1.0 || ^2.0", "laravel/horizon": "^5.0", - "october/system": "^3.0" + "october/rain": "^3.0" }, "repositories": [ { diff --git a/updates/version.yaml b/updates/version.yaml index 21bbb54..b60f02b 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -6,3 +6,4 @@ v3.0.0: "Upgrade to Horizon 5.x" v3.1.0: - "Add migration for Job Batches table" - 20220923_0001_create_job_batches_table.php +v3.1.1: "Update Horizon Dashboard Layout (new UI)" \ No newline at end of file diff --git a/views/layout.blade.php b/views/layout.blade.php index 2685d7a..d61e1f4 100644 --- a/views/layout.blade.php +++ b/views/layout.blade.php @@ -11,7 +11,8 @@ Horizon{{ config('app.name') ? ' - ' . config('app.name') : '' }} - + + @@ -25,16 +26,19 @@
- + -
@@ -43,9 +47,9 @@