Skip to content

Commit 495d63c

Browse files
authored
Merge pull request #12 from TrueLayer/codeowners-plugins
Remove phone from payment creation request
2 parents 038ae19 + 07feadf commit 495d63c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v1.0.10] - 2024-04-12
9+
10+
### Changed
11+
12+
- Stop sending mobile number when creating payments
13+
814
## [v1.0.9] - 2024-03-22
915

1016
### Fixed

Service/Order/MakeRequest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,7 @@ private function prepareData(Quote $quote, string $merchantAccountId): array
239239
"name" => trim($quote->getBillingAddress()->getFirstname()) .
240240
' ' .
241241
trim($quote->getBillingAddress()->getLastname()),
242-
"email" => $customerEmail,
243-
"phone" => $quote->getBillingAddress()->getTelephone()
242+
"email" => $customerEmail
244243
]
245244
];
246245

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "truelayer/magento2",
33
"description": "TrueLayer extension for Magento 2",
44
"type": "magento2-module",
5-
"version": "1.0.9",
5+
"version": "1.0.10",
66
"license": [
77
"OSL-3.0",
88
"AFL-3.0"

etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<default>
1111
<payment>
1212
<truelayer>
13-
<version>1.0.9</version>
13+
<version>1.0.10</version>
1414
<model>TrueLayerFacade</model>
1515
<title>TrueLayer</title>
1616
<description>Pay using TrueLayer</description>

0 commit comments

Comments
 (0)