Skip to content

Commit 2e23886

Browse files
author
Iulian Masar
committed
updated changelog, version, fixed test
1 parent 011296e commit 2e23886

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [3.50.1] - 2026-02-23
2+
### Added - ChargeBearer body parameter on payouts
3+
4+
https://github.com/Mangopay/mangopay4-php-sdk/pull/779/changes/011296e13901bd6ece848d9f052de9f93dd43346
5+
On [POST Create a Payout](/api-reference/payouts/create-payout), platforms can now request to pay all SWIFT fees using the `OUR` value of the new `ChargeBearer` property ([API release note](/release-notes/api/2026-02-16)):
6+
- Handle `ChargeBearer` param
7+
8+
### Added - AuthenticationType response property on card pay-ins
9+
10+
https://github.com/Mangopay/mangopay4-php-sdk/pull/779/changes/cffccbe99a3efd51bdfba54ff4e37536240af578
11+
- The `AuthenticationResult.AuthenticationType` response property is now returned on card pay-ins
12+
13+
### Added - TelephoneOrder body parameter on recurring card pay-ins (CIT and MIT)
14+
15+
https://github.com/Mangopay/mangopay4-php-sdk/pull/779/changes/e69cc7af27f9384c3d02bac91774b21f76061035
16+
To support the `TelephoneOrder` property on [POST Create a Recurring PayIn (MIT)](/api-reference/recurring-card-payins/create-recurring-payin-cit) and [POST Create a Recurring PayIn (CIT)](/api-reference/recurring-card-payins/create-recurring-payin-mit):
17+
- handle `PaymentCategory` param
18+
119
## [3.50.0] - 2026-02-12
220
### FX
321

MangoPay/Libraries/RestTool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class RestTool
1414
{
15-
const VERSION = '3.50.0';
15+
const VERSION = '3.50.1';
1616

1717
/**
1818
* Root/parent instance that holds the OAuthToken and Configuration instance

tests/Cases/PayInsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1554,7 +1554,7 @@ public function test_CreateAndFetchPayPalDataCollection()
15541554

15551555
$fetched = $this->_api->PayIns->GetPayPalDataCollection($created->dataCollectionId);
15561556
$this->assertNotNull($fetched);
1557-
$this->assertEquals($created->dataCollectionId, $fetched->DataCollectionId);
1557+
$this->assertEquals($created->dataCollectionId, $fetched->dataCollectionId);
15581558
$this->assertEquals("Jane", $fetched->sender_first_name);
15591559
$this->assertEquals("Doe", $fetched->sender_last_name);
15601560
}

0 commit comments

Comments
 (0)