From 7e354b9c30160ab4ab1737a759c25b7d89fe4985 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 13 Feb 2020 20:15:21 +0100 Subject: [PATCH 1/3] Add info to changelog. --- changelog.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/changelog.md b/changelog.md index 42fc519c7f..77426f3f33 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.0.5 (API 1.0.0)] - 2020-02-13 + +This release fixes an issue with logging that could, in rare cases, error out terribly. + +### Fixed + +- Inconsistent log configuration. + ## [5.0.4 (API 1.0.0)] - 2020-02-01 This release fixes several bugs found in 5.0.0 and earlier releases. From 08b85cfa1a7ae381fe57232f78058615111a5775 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 13 Feb 2020 20:15:29 +0100 Subject: [PATCH 2/3] update version --- config/firefly.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/firefly.php b/config/firefly.php index 9f1f5fe10c..08e5fb9b8a 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -136,7 +136,7 @@ return [ 'export' => true, ], 'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'), - 'version' => '5.0.4', + 'version' => '5.0.5', 'api_version' => '1.0.0', 'db_version' => 12, 'maxUploadSize' => 15242880, From a389cbe52139197e82969c02276998327b0a6a73 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 13 Feb 2020 20:15:36 +0100 Subject: [PATCH 3/3] Fix the issue. --- config/logging.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/logging.php b/config/logging.php index e2bb74cdb1..aaa87108c6 100644 --- a/config/logging.php +++ b/config/logging.php @@ -37,7 +37,7 @@ return [ | */ - 'default' => envNonEmpty('LOG_CHANNEL', 'daily'), + 'default' => envNonEmpty('LOG_CHANNEL', 'stack'), /* |-------------------------------------------------------------------------- @@ -56,7 +56,7 @@ return [ 'channels' => [ 'stack' => [ 'driver' => 'stack', - 'channels' => ['daily', 'slack'], + 'channels' => ['daily', 'stdout'], ], 'single' => [