🤖 Auto commit for release 'develop' on 2025-08-22

This commit is contained in:
JC5
2025-08-22 07:04:13 +02:00
parent 8a8bbaf827
commit 93085599b7
62 changed files with 530 additions and 379 deletions

View File

@@ -78,8 +78,8 @@ return [
'running_balance_column' => env('USE_RUNNING_BALANCE', false),
// see cer.php for exchange rates feature flag.
],
'version' => '6.3.2',
'build_time' => 1755576388,
'version' => 'develop/2025-08-22',
'build_time' => 1755838953,
'api_version' => '2.1.0', // field is no longer used.
'db_version' => 26,

View File

@@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
// this is hard coded, which is unfortunate.
use FireflyIII\Enums\WebhookResponse;
@@ -48,8 +50,8 @@ return [
WebhookTrigger::DESTROY_TRANSACTION->name,
],
],
'forbidden_responses' => [
WebhookTrigger::ANY->name => [
'forbidden_responses' => [
WebhookTrigger::ANY->name => [
WebhookResponse::BUDGET->name,
WebhookResponse::TRANSACTIONS->name,
WebhookResponse::ACCOUNTS->name,
@@ -80,5 +82,5 @@ return [
WebhookResponse::TRANSACTIONS->name,
WebhookResponse::ACCOUNTS->name,
],
]
],
];