From d7538fe15150198261b0def8485cc352a6b5c096 Mon Sep 17 00:00:00 2001 From: "catalin.craciun" Date: Fri, 19 Feb 2021 19:26:05 +0400 Subject: [PATCH] Version bump 3.2.0 --- CHANGELOG.md | 15 +++++++++++++-- MangoPay/Libraries/RestTool.php | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb3660bc..fa5821aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ -# [3.1.7] - 2021-01-27 -Due to compatibility issues with newer versions of PHP we have inverted params in certain methods, including constructor, please check the release code for further detail +# [3.2.0] - 2021-02-19 +- 3DS2 integration with Shipping and Billing objects, including FirstName and a LastName fields +The objects Billing and Shipping may be included on all calls to the following endpoints: + - /preauthorizations/card/direct + - /payins/card/direct + - /payins/card/web +- Activate Instant Payment for payouts by adding a new parameter PayoutModeRequested on the following endpoint /payouts/bankwire + - The new parameter PayoutModeRequested can take two differents values : "INSTANT_PAYMENT" or "STANDARD" (STANDARD = the way we procede normaly a payout request) + - This new parameter is not mandatory and if empty or not present, the payout will be "STANDARD" by default + - Instant Payment is in beta all over Europe - SEPA region +- Fix inverted params for PHP compatibility : Due to compatibility issues with newer versions of PHP we have inverted params in certain methods, including constructor, please check the release code for further detail 🔄 +- Fix method ScopeBlocked for blocked status +- Fix BrowserInfo class # [3.1.6] - 2020-12-18 Added IpAddress and BrowserInfo parameters to the following endpoints and corresponding objects - /payins/card/direct diff --git a/MangoPay/Libraries/RestTool.php b/MangoPay/Libraries/RestTool.php index c5f05a28..29009a21 100644 --- a/MangoPay/Libraries/RestTool.php +++ b/MangoPay/Libraries/RestTool.php @@ -10,7 +10,7 @@ */ class RestTool { - const VERSION = '3.1.7'; + const VERSION = '3.2.0'; /** * Root/parent instance that holds the OAuthToken and Configuration instance