From 17b0b1f43f21dd932f75b0257f838c97cd4374f4 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 23 Nov 2024 21:07:01 +0100 Subject: [PATCH] Auto commit for release 'v6.1.24' on 2024-11-23 --- app/Http/Middleware/Installer.php | 3 ++- changelog.md | 2 +- config/firefly.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/Http/Middleware/Installer.php b/app/Http/Middleware/Installer.php index d5844ae9e6..d61144c949 100644 --- a/app/Http/Middleware/Installer.php +++ b/app/Http/Middleware/Installer.php @@ -158,8 +158,9 @@ class Installer // version compare thing. $configVersion = (string)config('firefly.version'); $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.'); + return false; } if (1 === version_compare($configVersion, $dbVersion)) { diff --git a/changelog.md b/changelog.md index a1010d07c6..7a3d713838 100644 --- a/changelog.md +++ b/changelog.md @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### 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 diff --git a/config/firefly.php b/config/firefly.php index 7bd6450861..706d16be28 100644 --- a/config/firefly.php +++ b/config/firefly.php @@ -110,7 +110,7 @@ return [ 'running_balance_column' => env('USE_RUNNING_BALANCE', false), // 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. 'db_version' => 25,