From 835a655a998b067901842602f45a5ff7d2f8eb25 Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 1 Apr 2025 14:53:30 +0000 Subject: [PATCH 1/4] Update CHANGELOG --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec199540..10588732 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes -## [Unreleased](https://github.com/laravel/horizon/compare/v5.31.0...5.x) +## [Unreleased](https://github.com/laravel/horizon/compare/v5.31.1...5.x) + +## [v5.31.1](https://github.com/laravel/horizon/compare/v5.31.0...v5.31.1) - 2025-03-16 + +* [5.x] Specify `WorkloadRepository@get()` return type by [@cosmastech](https://github.com/cosmastech) in https://github.com/laravel/horizon/pull/1542 ## [v5.31.0](https://github.com/laravel/horizon/compare/v5.30.3...v5.31.0) - 2025-03-04 From 62725369184067ac8b2f917a8b5b1d500b8a5b86 Mon Sep 17 00:00:00 2001 From: David Hill <1879069+iamdavidhill@users.noreply.github.com> Date: Fri, 4 Apr 2025 03:29:08 +0100 Subject: [PATCH 2/4] Update logo (#1543) --- art/.DS_Store | Bin 0 -> 6148 bytes art/logo.svg | 24 +++++++++++++++++++----- 2 files changed, 19 insertions(+), 5 deletions(-) create mode 100644 art/.DS_Store diff --git a/art/.DS_Store b/art/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 + - - - + + + + + + + + + + + + + + + + From 4720cf69a3e46fcdfb10feba63b5aed68516d4d5 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 3 Apr 2025 21:29:28 -0500 Subject: [PATCH 3/4] Delete art/.DS_Store --- art/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 art/.DS_Store diff --git a/art/.DS_Store b/art/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Fri, 18 Apr 2025 14:57:39 +0200 Subject: [PATCH 4/4] Fixed deprecation (#1548) --- src/SupervisorOptions.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SupervisorOptions.php b/src/SupervisorOptions.php index 6a1aaf44..d28b505f 100644 --- a/src/SupervisorOptions.php +++ b/src/SupervisorOptions.php @@ -165,6 +165,13 @@ class SupervisorOptions */ public $rest; + /** + * The number of seconds to wait before retrying a job that encountered an uncaught exception. + * + * @var int + */ + public $retryAfter; + /** * Create a new worker options instance. *