mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Update changelog and API
This commit is contained in:
parent
06cc6c29aa
commit
225588f3e7
@ -52,7 +52,7 @@ class AboutController extends Controller
|
|||||||
$data
|
$data
|
||||||
= [
|
= [
|
||||||
'version' => config('firefly.version'),
|
'version' => config('firefly.version'),
|
||||||
'api_version' => config('firefly.api_version'),
|
'api_version' => config('firefly.version'),
|
||||||
'php_version' => $phpVersion,
|
'php_version' => $phpVersion,
|
||||||
'os' => $phpOs,
|
'os' => $phpOs,
|
||||||
'driver' => $currentDriver,
|
'driver' => $currentDriver,
|
||||||
|
@ -138,7 +138,7 @@ class StoreRequest extends FormRequest
|
|||||||
// all custom fields:
|
// all custom fields:
|
||||||
'internal_reference' => $this->clearString((string)$object['internal_reference']),
|
'internal_reference' => $this->clearString((string)$object['internal_reference']),
|
||||||
'external_id' => $this->clearString((string)$object['external_id']),
|
'external_id' => $this->clearString((string)$object['external_id']),
|
||||||
'original_source' => sprintf('ff3-v%s|api-v%s', config('firefly.version'), config('firefly.api_version')),
|
'original_source' => sprintf('ff3-v%s', config('firefly.version')),
|
||||||
'recurrence_id' => $this->integerFromValue($object['recurrence_id']),
|
'recurrence_id' => $this->integerFromValue($object['recurrence_id']),
|
||||||
'bunq_payment_id' => $this->clearString((string)$object['bunq_payment_id']),
|
'bunq_payment_id' => $this->clearString((string)$object['bunq_payment_id']),
|
||||||
'external_url' => $this->clearString((string)$object['external_url']),
|
'external_url' => $this->clearString((string)$object['external_url']),
|
||||||
|
@ -147,7 +147,7 @@ class StoreRequest extends FormRequest
|
|||||||
// all custom fields:
|
// all custom fields:
|
||||||
'internal_reference' => $this->clearString((string)$object['internal_reference']),
|
'internal_reference' => $this->clearString((string)$object['internal_reference']),
|
||||||
'external_id' => $this->clearString((string)$object['external_id']),
|
'external_id' => $this->clearString((string)$object['external_id']),
|
||||||
'original_source' => sprintf('ff3-v%s|api-v%s', config('firefly.version'), config('firefly.api_version')),
|
'original_source' => sprintf('ff3-v%s', config('firefly.version')),
|
||||||
'recurrence_id' => $this->integerFromValue($object['recurrence_id']),
|
'recurrence_id' => $this->integerFromValue($object['recurrence_id']),
|
||||||
'bunq_payment_id' => $this->clearString((string)$object['bunq_payment_id']),
|
'bunq_payment_id' => $this->clearString((string)$object['bunq_payment_id']),
|
||||||
'external_url' => $this->clearString((string)$object['external_url']),
|
'external_url' => $this->clearString((string)$object['external_url']),
|
||||||
|
@ -39,7 +39,6 @@ class EitherConfigKey
|
|||||||
|
|
||||||
// firefly iii settings
|
// firefly iii settings
|
||||||
'firefly.version',
|
'firefly.version',
|
||||||
'firefly.api_version',
|
|
||||||
'firefly.default_location',
|
'firefly.default_location',
|
||||||
'firefly.account_to_transaction',
|
'firefly.account_to_transaction',
|
||||||
'firefly.allowed_opposing_types',
|
'firefly.allowed_opposing_types',
|
||||||
|
21
changelog.md
21
changelog.md
@ -9,19 +9,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
- #8092
|
- #8092
|
||||||
- #9183
|
- #9183
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@ -41,16 +28,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- #9294
|
- #9294
|
||||||
- #9427
|
- #9427
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
### API
|
### API
|
||||||
|
|
||||||
|
- API version is no longer distinguished from Firefly III version. API jumps from v2.1.0 to v6.1.22
|
||||||
|
- API v2 is cleaned up and misses a few previously available endpoints. They will be added in the future.
|
||||||
- #9271
|
- #9271
|
||||||
|
|
||||||
- Initial release.
|
|
||||||
|
|
||||||
## 6.1.21 - 2024-09-30
|
## 6.1.21 - 2024-09-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -111,7 +111,7 @@ return [
|
|||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => 'develop/2024-11-04',
|
'version' => 'develop/2024-11-04',
|
||||||
'api_version' => '2.1.0',
|
'api_version' => '2.1.0', // field is no longer used.
|
||||||
'db_version' => 25,
|
'db_version' => 25,
|
||||||
|
|
||||||
// generic settings
|
// generic settings
|
||||||
|
Loading…
Reference in New Issue
Block a user