mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Auto commit for release 'v6.1.24' on 2024-11-23
This commit is contained in:
parent
b61df5ec19
commit
17b0b1f43f
@ -158,8 +158,9 @@ class Installer
|
|||||||
// version compare thing.
|
// version compare thing.
|
||||||
$configVersion = (string)config('firefly.version');
|
$configVersion = (string)config('firefly.version');
|
||||||
$dbVersion = (string)app('fireflyconfig')->getFresh('ff3_version', '1.0')->data;
|
$dbVersion = (string)app('fireflyconfig')->getFresh('ff3_version', '1.0')->data;
|
||||||
if(str_starts_with($configVersion, 'develop')) {
|
if (str_starts_with($configVersion, 'develop')) {
|
||||||
Log::debug('Skipping version check for develop version.');
|
Log::debug('Skipping version check for develop version.');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (1 === version_compare($configVersion, $dbVersion)) {
|
if (1 === version_compare($configVersion, $dbVersion)) {
|
||||||
|
@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- #9491
|
- [Issue 9491](https://github.com/firefly-iii/firefly-iii/issues/9491) (Transactions created at midnight on the first day of a month are not listed correctly) reported by @Neroxeles
|
||||||
|
|
||||||
## 6.1.23 - 2024-11-23
|
## 6.1.23 - 2024-11-23
|
||||||
|
|
||||||
|
@ -110,7 +110,7 @@ return [
|
|||||||
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
|
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
|
||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => '6.1.23',
|
'version' => '6.1.24',
|
||||||
'api_version' => '2.1.0', // field is no longer used.
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 25,
|
'db_version' => 25,
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user