Compare commits

...

7 Commits
5.0.3 ... 5.0.5

Author SHA1 Message Date
James Cole
5361fbb76f Merge branch 'hotfix/5.0.5' 2020-02-13 20:15:46 +01:00
James Cole
a389cbe521 Fix the issue. 2020-02-13 20:15:36 +01:00
James Cole
08b85cfa1a update version 2020-02-13 20:15:29 +01:00
James Cole
7e354b9c30 Add info to changelog. 2020-02-13 20:15:21 +01:00
James Cole
3864855967 Merge branch 'hotfix/5.0.4' 2020-02-01 16:16:35 +01:00
James Cole
0266c364e0 Changelog for 5.0.4 2020-02-01 16:16:25 +01:00
James Cole
1b411815b7 Fix issue where MySQL was considered the default if left unset. 2020-02-01 16:14:21 +01:00
5 changed files with 22 additions and 5 deletions

View File

@@ -2,6 +2,23 @@
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.
### Fixed
- If unset, `DB_CONNECTION` defaults to "mysql". This is now "pgsql", which is consistent with the documentation and the example configuration
file (`.env.example`).
## [5.0.3 (API 1.0.0)] - 2020-01-30
This release fixes several bugs found in 5.0.0 and earlier releases.

View File

@@ -44,7 +44,7 @@ if (!(false === $databaseUrl)) {
return [
'default' => envNonEmpty('DB_CONNECTION', 'mysql'),
'default' => envNonEmpty('DB_CONNECTION', 'pgsql'),
'connections' => [
'sqlite' => [
'driver' => 'sqlite',

View File

@@ -136,7 +136,7 @@ return [
'export' => true,
],
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
'version' => '5.0.3',
'version' => '5.0.5',
'api_version' => '1.0.0',
'db_version' => 12,
'maxUploadSize' => 15242880,

View File

@@ -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' => [

View File

@@ -100,7 +100,7 @@ return [
*/
'failed' => [
'database' => envNonEmpty('DB_CONNECTION', 'mysql'),
'database' => envNonEmpty('DB_CONNECTION', 'pgsql'),
'table' => 'failed_jobs',
],