Skip to content

Commit 8e4c607

Browse files
Merge branch 'develop'
2 parents b87cbda + 6493b56 commit 8e4c607

File tree

8 files changed

+430
-222
lines changed

8 files changed

+430
-222
lines changed

.ci/php-cs-fixer/composer.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/Services/Shared/Import/Routine/ApiSubmitter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ private function uniqueTransaction(int $index, array $line): ?bool
150150
$transactions = $line['transactions'] ?? [];
151151
$field = $this->configuration->getUniqueColumnType();
152152
$field = 'external-id' === $field ? 'external_id' : $field;
153+
$field = 'note' === $field ? 'notes' : $field;
153154
$value = '';
154155
foreach ($transactions as $transactionIndex => $transaction) {
155156
$value = (string) ($transaction[$field] ?? '');

changelog.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 1.6.1 - 2024-02-19
56

6-
## 1.6.0 - 2024-01-xx
7+
> ⚠️⚠️ This release required **PHP 8.4.0** and will not work on earlier releases of PHP ⚠️⚠️
8+
9+
> ⚠️ Some changes in this release may unexpectedly lead to duplicate transactions. This is caused by changes in the data handling routines. This is unfortunate, but a result of new insights, changed APIs and other minor fixes. My apologies for any inconvenience. I try to avoid these kinds of changes, but it can't always be helped.
10+
11+
### Fixed
12+
13+
- #9840
14+
15+
## 1.6.0 - 2024-01-31
716

817
> ⚠️⚠️ This release required **PHP 8.4.0** and will not work on earlier releases of PHP ⚠️⚠️
918

0 commit comments

Comments
 (0)