mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-10 05:11:25 +00:00
🤖 Auto commit for release 'develop' on 2025-11-01
This commit is contained in:
@@ -4,6 +4,7 @@ Over time, many people have contributed to Firefly III. Their efforts are not al
|
|||||||
Please find below all the people who contributed to the Firefly III code. Their names are mentioned in the year of their first contribution.
|
Please find below all the people who contributed to the Firefly III code. Their names are mentioned in the year of their first contribution.
|
||||||
|
|
||||||
## 2025
|
## 2025
|
||||||
|
- Jihad
|
||||||
- jreyesr
|
- jreyesr
|
||||||
- codearena-bot
|
- codearena-bot
|
||||||
- Nicky De Maeyer
|
- Nicky De Maeyer
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ class AutocompleteApiRequest extends AggregateFormRequest
|
|||||||
protected function getRequests(): array
|
protected function getRequests(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
DateRequest::class,
|
DateRequest::class,
|
||||||
[PaginationRequest::class, 'sort_class' => Account::class],
|
[PaginationRequest::class, 'sort_class' => Account::class],
|
||||||
AccountTypesApiRequest::class,
|
AccountTypesApiRequest::class,
|
||||||
QueryRequest::class,
|
QueryRequest::class,
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class AccountTypesApiRequest extends ApiRequest
|
|||||||
if ($validator->failed()) {
|
if ($validator->failed()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$types = explode(',', $this->convertString('types', 'all'));
|
$types = explode(',', $this->convertString('types', 'all'));
|
||||||
$result = [];
|
$result = [];
|
||||||
// split and find all types:
|
// split and find all types:
|
||||||
foreach ($types as $type) {
|
foreach ($types as $type) {
|
||||||
|
|||||||
@@ -672,16 +672,20 @@ class Steam
|
|||||||
{
|
{
|
||||||
// Log::debug(sprintf('getSafeUrl(%s, %s)', $unknownUrl, $safeUrl));
|
// Log::debug(sprintf('getSafeUrl(%s, %s)', $unknownUrl, $safeUrl));
|
||||||
$returnUrl = $safeUrl;
|
$returnUrl = $safeUrl;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$unknownHost = parse_url($unknownUrl, PHP_URL_HOST);
|
$unknownHost = parse_url($unknownUrl, PHP_URL_HOST);
|
||||||
} catch (UrlException $e) {
|
} catch (UrlException $e) {
|
||||||
Log::error(sprintf('Could not parse "%s": %s', $unknownUrl, $e->getMessage()));
|
Log::error(sprintf('Could not parse "%s": %s', $unknownUrl, $e->getMessage()));
|
||||||
|
|
||||||
return $returnUrl;
|
return $returnUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$safeHost = parse_url($safeUrl, PHP_URL_HOST);
|
$safeHost = parse_url($safeUrl, PHP_URL_HOST);
|
||||||
} catch (UrlException $e) {
|
} catch (UrlException $e) {
|
||||||
Log::error(sprintf('Could not parse "%s": %s', $unknownUrl, $e->getMessage()));
|
Log::error(sprintf('Could not parse "%s": %s', $unknownUrl, $e->getMessage()));
|
||||||
|
|
||||||
return $returnUrl;
|
return $returnUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,12 +7,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- #11140
|
- [PR 11140](https://github.com/firefly-iii/firefly-iii/pull/11140) (Add Saudi Riyal (SAR) currency) reported by @Jihad
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- #11144
|
- [Issue 11144](https://github.com/firefly-iii/firefly-iii/issues/11144) (Initial balance is auto suggested as an account) reported by @elliot-gh
|
||||||
- #11147
|
- [Issue 11147](https://github.com/firefly-iii/firefly-iii/issues/11147) (Start and End Balance gets blanked out during reconciliation) reported by @lrdshaper
|
||||||
|
|
||||||
## 6.4.3 - 2025-11-01
|
## 6.4.3 - 2025-11-01
|
||||||
|
|
||||||
|
|||||||
@@ -78,8 +78,8 @@ 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.4.3',
|
'version' => 'develop/2025-11-01',
|
||||||
'build_time' => 1762015997,
|
'build_time' => 1762025863,
|
||||||
'api_version' => '2.1.0', // field is no longer used.
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 28, // field is no longer used.
|
'db_version' => 28, // field is no longer used.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user