mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-15 19:22:08 -06:00
Merge branch 'hotfix/5.0.5'
This commit is contained in:
commit
5361fbb76f
@ -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.
|
||||
|
@ -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,
|
||||
|
@ -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' => [
|
||||
|
Loading…
Reference in New Issue
Block a user