Browse Source

New files for release.

pull/27/head
James Cole 4 years ago
parent
commit
d7bdbbc545
No known key found for this signature in database GPG Key ID: BDE6667570EADBD5
  1. 2
      app/Http/Controllers/Import/UploadController.php
  2. 2
      app/Services/Nordigen/Model/Account.php
  3. 7
      changelog.md
  4. 2
      config/importer.php

2
app/Http/Controllers/Import/UploadController.php

@ -154,7 +154,7 @@ class UploadController extends Controller
$content = file_get_contents($file->getPathname());
// https://stackoverflow.com/questions/11066857/detect-eol-type-using-php
// because apparantly there are banks that use "\r" as newline. Looking at the morons of KBC Bank, Belgium.
// because apparently there are banks that use "\r" as newline. Looking at the morons of KBC Bank, Belgium.
// This one is for you: 🤦‍♀️
$eol = $this->detectEOL($content);
if ("\r" === $eol) {

2
app/Services/Nordigen/Model/Account.php

@ -40,7 +40,7 @@ class Account
private string $linkedAccounts;
private string $msisdn;
private string $name;
private array $ownerAddressUnstructured;
private array $ownerAddressUnstructured;
private string $ownerName;
private string $product;
private string $resourceId;

7
changelog.md

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.6.2 - 2022-01-09
### Fixed
- #5507 `ownerAddressUnstructured` field is of the wrong data type.
- Version 0.6.1 also reports as 0.6.0.
## 0.6.1 - 2022-01-08
### Fixed

2
config/importer.php

@ -23,7 +23,7 @@
declare(strict_types=1);
return [
'version' => '0.6.0',
'version' => '0.6.2',
'flows' => ['nordigen', 'spectre', 'csv'],
'flow_titles' => [
'csv' => 'CSV',

Loading…
Cancel
Save