Browse Source
Merge pull request #993 from firefly-iii/develop
🤖 Automatically merge the PR into the main branch.
main
v1.8.2
github-actions[bot]
5 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
17 additions and
8 deletions
-
changelog.md
-
config/importer.php
-
resources/schemas/v3.json
|
|
@ -2,13 +2,18 @@ |
|
|
|
All notable changes to this project will be documented in this file. |
|
|
|
This project adheres to [Semantic Versioning](http://semver.org/). |
|
|
|
|
|
|
|
## v1.8.2 - 2025-10-02 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
- [Issue 10983](https://github.com/firefly-iii/firefly-iii/issues/10983) (CANNOT_PARSE_CONFIG thrown on Importer-Image 1.8.0) reported by @beatbesmer |
|
|
|
|
|
|
|
## v1.8.1 - 2025-10-01 |
|
|
|
|
|
|
|
### Added |
|
|
|
- #6061 |
|
|
|
- [Issue 6061](https://github.com/firefly-iii/firefly-iii/issues/6061) (Set import daterange on both ends) reported by @JC5 |
|
|
|
|
|
|
|
### Changed |
|
|
|
- #10947 |
|
|
|
- [Discussion 10947](https://github.com/orgs/firefly-iii/discussions/10947) (Shouldn't GoCardless import ignore pending transactions?) started by @molnarti |
|
|
|
|
|
|
|
### Removed |
|
|
|
- Add message about future removal of Spectre / Salt Edge. |
|
|
|
|
|
@ -24,8 +24,8 @@ |
|
|
|
declare(strict_types=1); |
|
|
|
|
|
|
|
return [ |
|
|
|
'version' => '1.8.1', |
|
|
|
'build_time' => 1759257943, |
|
|
|
'version' => '1.8.2', |
|
|
|
'build_time' => 1759289777, |
|
|
|
'flows' => ['nordigen', 'spectre', 'file', 'simplefin'], |
|
|
|
'enabled_flows' => [ |
|
|
|
'nordigen' => true, |
|
|
|
|
|
@ -49,10 +49,14 @@ |
|
|
|
"type": "boolean" |
|
|
|
}, |
|
|
|
"roles": { |
|
|
|
"type": "array", |
|
|
|
"items": { |
|
|
|
"type": "string" |
|
|
|
} |
|
|
|
"anyOf": [ |
|
|
|
{ |
|
|
|
"type": "object" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"type": "array" |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
"do_mapping": { |
|
|
|
"anyOf": [ |
|
|
|