Merge pull request #10642 from firefly-iii/release-1753333227

🤖 Automatically merge the PR into the develop branch.
This commit is contained in:
github-actions[bot]
2025-07-24 07:00:35 +02:00
committed by GitHub
2 changed files with 10 additions and 10 deletions

View File

@@ -116,14 +116,14 @@ class AccountTransformer extends AbstractTransformer
$balances = [];
$balances[]
= [
'type' => 'current',
'amount' => $currentBalance,
'currency_id' => $account->meta['currency_id'] ?? null,
'currency_code' => $account->meta['currency']?->code,
'currency_symbol' => $account->meta['currency']?->symbol,
'currency_decimal_places' => $account->meta['currency']?->decimal_places,
'date' => $date->toAtomString(),
];
'type' => 'current',
'amount' => $currentBalance,
'currency_id' => $account->meta['currency_id'] ?? null,
'currency_code' => $account->meta['currency']?->code,
'currency_symbol' => $account->meta['currency']?->symbol,
'currency_decimal_places' => $account->meta['currency']?->decimal_places,
'date' => $date->toAtomString(),
];
if (null !== $nativeCurrentBalance) {
$balances[] = [
'type' => 'native_current',

View File

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