mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-18 02:03:40 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3864855967 | ||
|
0266c364e0 | ||
|
1b411815b7 |
@@ -2,6 +2,15 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [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
|
## [5.0.3 (API 1.0.0)] - 2020-01-30
|
||||||
|
|
||||||
This release fixes several bugs found in 5.0.0 and earlier releases.
|
This release fixes several bugs found in 5.0.0 and earlier releases.
|
||||||
|
@@ -44,7 +44,7 @@ if (!(false === $databaseUrl)) {
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
|
|
||||||
'default' => envNonEmpty('DB_CONNECTION', 'mysql'),
|
'default' => envNonEmpty('DB_CONNECTION', 'pgsql'),
|
||||||
'connections' => [
|
'connections' => [
|
||||||
'sqlite' => [
|
'sqlite' => [
|
||||||
'driver' => 'sqlite',
|
'driver' => 'sqlite',
|
||||||
|
@@ -136,7 +136,7 @@ return [
|
|||||||
'export' => true,
|
'export' => true,
|
||||||
],
|
],
|
||||||
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
'encryption' => null === env('USE_ENCRYPTION') || true === env('USE_ENCRYPTION'),
|
||||||
'version' => '5.0.3',
|
'version' => '5.0.4',
|
||||||
'api_version' => '1.0.0',
|
'api_version' => '1.0.0',
|
||||||
'db_version' => 12,
|
'db_version' => 12,
|
||||||
'maxUploadSize' => 15242880,
|
'maxUploadSize' => 15242880,
|
||||||
|
@@ -100,7 +100,7 @@ return [
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
'failed' => [
|
'failed' => [
|
||||||
'database' => envNonEmpty('DB_CONNECTION', 'mysql'),
|
'database' => envNonEmpty('DB_CONNECTION', 'pgsql'),
|
||||||
'table' => 'failed_jobs',
|
'table' => 'failed_jobs',
|
||||||
],
|
],
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user