Skip to content

Commit

Permalink
version bump 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJr committed Mar 25, 2021
1 parent d5f550b commit 015daf2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
## [3.2.0]
## Added

### On demand feature for 3DSv2

> **This on-demand feature is for testing purposes only and will not be available in production**
#### Request

We've added a new parameter `Requested3DSVersion` (not mandatory) that allows you to choose between versions of 3DS protocols (managed by the parameter `SecureMode`). Two values are available:
* `V1`
* `V2_1`

If nothing is sent, the flow will be 3DS V1.

The `Requested3DSVersion` may be included on all calls to the following endpoints:
* `/preauthorizations/card/direct`
* `/payins/card/direct`

#### Response

In the API response, the `Requested3DSVersion` will show the value you requested:
* `V1`
* `V2_1`
* `null` – indicates that nothing was requested

The parameter `Applied3DSVersion` shows you the version of the 3DS protocol used. Two values are possible:
* `V1`
* `V2_1`




## [3.1.0]
- 3DS2 integration with Shipping and Billing objects, including FirstName and LastName fields
The objects Billing and Shipping may be included on all calls to the following endpoints:
Expand Down
2 changes: 1 addition & 1 deletion lib/mangopay/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MangoPay
VERSION = '3.1.0'
VERSION = '3.2.0'
end

0 comments on commit 015daf2

Please sign in to comment.