James Cole
3 years ago
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
3 changed files with
24 additions and
8 deletions
-
.ci/php-cs-fixer/composer.lock
-
changelog.md
-
config/importer.php
|
|
|
@ -379,16 +379,16 @@ |
|
|
|
}, |
|
|
|
{ |
|
|
|
"name": "friendsofphp/php-cs-fixer", |
|
|
|
"version": "v3.14.4", |
|
|
|
"version": "v3.15.1", |
|
|
|
"source": { |
|
|
|
"type": "git", |
|
|
|
"url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", |
|
|
|
"reference": "1b3d9dba63d93b8a202c31e824748218781eae6b" |
|
|
|
"reference": "d48755372a113bddb99f749e34805d83f3acfe04" |
|
|
|
}, |
|
|
|
"dist": { |
|
|
|
"type": "zip", |
|
|
|
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/1b3d9dba63d93b8a202c31e824748218781eae6b", |
|
|
|
"reference": "1b3d9dba63d93b8a202c31e824748218781eae6b", |
|
|
|
"url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d48755372a113bddb99f749e34805d83f3acfe04", |
|
|
|
"reference": "d48755372a113bddb99f749e34805d83f3acfe04", |
|
|
|
"shasum": "" |
|
|
|
}, |
|
|
|
"require": { |
|
|
|
@ -455,9 +455,15 @@ |
|
|
|
} |
|
|
|
], |
|
|
|
"description": "A tool to automatically fix PHP code style", |
|
|
|
"keywords": [ |
|
|
|
"Static code analysis", |
|
|
|
"fixer", |
|
|
|
"standards", |
|
|
|
"static analysis" |
|
|
|
], |
|
|
|
"support": { |
|
|
|
"issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", |
|
|
|
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.14.4" |
|
|
|
"source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.15.1" |
|
|
|
}, |
|
|
|
"funding": [ |
|
|
|
{ |
|
|
|
@ -465,7 +471,7 @@ |
|
|
|
"type": "github" |
|
|
|
} |
|
|
|
], |
|
|
|
"time": "2023-02-09T21:49:13+00:00" |
|
|
|
"time": "2023-03-13T23:26:30+00:00" |
|
|
|
}, |
|
|
|
{ |
|
|
|
"name": "psr/cache", |
|
|
|
|
|
|
|
@ -2,6 +2,16 @@ |
|
|
|
All notable changes to this project will be documented in this file. |
|
|
|
This project adheres to [Semantic Versioning](http://semver.org/). |
|
|
|
|
|
|
|
## 1.2.2 - 2021-03-19 |
|
|
|
|
|
|
|
- ⚠️ This release may create duplicate transactions. Don't import large batches! |
|
|
|
|
|
|
|
### Changed |
|
|
|
- Drop accuracy to 12 decimals. This fixes a lot of rounding issues. |
|
|
|
|
|
|
|
### Fixed |
|
|
|
- [Issue 7225](https://github.com/firefly-iii/firefly-iii/issues/7225) Fix email error when no vanity url is set |
|
|
|
|
|
|
|
## 1.2.1 - 2023-03-13 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
@ -23,7 +23,7 @@ |
|
|
|
declare(strict_types=1); |
|
|
|
|
|
|
|
return [ |
|
|
|
'version' => '1.2.1', |
|
|
|
'version' => '1.2.2', |
|
|
|
'flows' => ['nordigen', 'spectre', 'file'], |
|
|
|
'flow_titles' => [ |
|
|
|
'file' => 'File', |
|
|
|
@ -43,7 +43,7 @@ return [ |
|
|
|
'ignore_duplicate_errors' => env('IGNORE_DUPLICATE_ERRORS', false), |
|
|
|
'namespace' => 'c40dcba2-411d-11ec-973a-0242ac130003', |
|
|
|
'use_cache' => env('USE_CACHE', false), |
|
|
|
'minimum_version' => '6.0.4', |
|
|
|
'minimum_version' => '6.0.5', |
|
|
|
'cache_api_calls' => false, |
|
|
|
'ignored_files' => ['.gitignore'], |
|
|
|
'tracker_site_id' => env('TRACKER_SITE_ID', ''), |
|
|
|
|