Skip to content

Releases: Adyen/adyen-ios

5.10.0

Choose a tag to compare

@erenbesel erenbesel released this 07 Aug 09:59
b8912b5

New

  • For Drop-in with Sessions flow, the shopper can now remove their stored payment methods. To do so:

    • In the /sessions request, include showRemovePaymentMethodButton: true.
    • Set the StoredPaymentMethodsDelegate to session:
      dropInComponent.storedPaymentMethodsDelegate = self.session
      
  • Support for the UPI Intent flow, where the shopper can choose a UPI app to pay through. They are redirected to and complete the payment on the selected app.

  • Support for the following locales: bg-BG, ca-ES, et-EE, is-IS, lt-LT, lv-LV

Changed

  • Delegated Authentication improvements.

Fixed

  • For cards, when the shopper selects Cancel to exit the address input screen, the address fields no longer get reset.

5.9.0

Choose a tag to compare

@goergisn goergisn released this 27 May 12:58
af5e98b

New

  • The new iDEAL payment flow where the shopper is redirected to the iDEAL payment page to select their bank and authorize the payment. See: iDEAL Component Integration

  • When shoppers select the prefix picker in the phone number input field, they can now search through the prefix list using their ISO code, prefix, or country/region name.

Known issue

iDEAL does not work in the test environment if your test Adyen merchant account is not configured to use the new payment flow.
You must first contact our Support Team to configure your test merchant account.

4.13.0

Choose a tag to compare

@nauaros nauaros released this 27 May 12:59
9e5a9d0

New

  • The new iDEAL payment flow where the shopper is redirected to the iDEAL payment page to select their bank and authorize the payment.

Known issue

iDEAL does not work in the test environment if your test Adyen merchant account is not configured to use the new payment flow.
You must first contact our Support Team to configure your test merchant account.

5.8.0

Choose a tag to compare

@goergisn goergisn released this 15 May 13:30
7e04a65

New

Changed

  • Flag icons are removed from the UI.
  • The text Country is now replaced with Country/Region.

Fixed

  • Fixed an issue that incorrectly cancelled successful redirect payments in some cases.

5.7.1

Choose a tag to compare

@nauaros nauaros released this 30 Apr 08:23
353d2ae

Changed

  • 3D Secure 2 SDK version: 2.4.2

Fixed

  • The privacy manifest file issue that blocked the App Store upload process has been fixed by upgrading the 3D Secure 2 SDK version to 2.4.2

4.12.1

Choose a tag to compare

@nauaros nauaros released this 30 Apr 09:10
51d3ce9

Changed

  • 3D Secure 2 SDK version: 2.4.2

Fixed

  • The privacy manifest file issue that blocked the App Store upload process has been fixed by upgrading the 3D Secure 2 SDK version to 2.4.2

5.7.0

Choose a tag to compare

@atmamont atmamont released this 22 Mar 10:39
2c9989b

New

  • The PrivacyInfo.xcprivacy lists all the data collected by Drop-In and Components.

  • In the country/region picker for the payment form, you can now choose if the images of flags are shown using showCountryFlags.

    Components

    let cardConfiguration = CardComponent.Configuration()
    cardConfiguration.style.addressStyle.showCountryFlags = true/false
    let cardComponent = CardComponent(paymentMethod: paymentMethod,
                                      context: context,
                                      configuration: cardConfiguration)
    

    Drop-In

    var style = DropInComponent.Style()
    style.formComponent.addressStyle.showCountryFlags = cardSettings.showsCountryFlags
    let dropInConfiguration = DropInComponent.Configuration(style: style)
    let dropInComponent = DropInComponent(paymentMethods: paymentMethods,
                                          context: context,
                                          configuration: dropInConfiguration)
    

Changed

  • 3D Secure 2 SDK version: 2.4.1

Fixed

  • When clientKey is invalid or mismatched with the environment, PublicKeyProvider now returns a corresponding error message.

4.12.0

Choose a tag to compare

@atmamont atmamont released this 22 Mar 10:55
20c9ee6

New

  • The PrivacyInfo.xcprivacy lists all the data collected by Drop-In and Components.

Changed

  • 3D Secure 2 SDK version: 2.4.1

4.11.2

Choose a tag to compare

@goergisn goergisn released this 30 Jan 15:29
3f4dda5

Fixes

5.6.0

Choose a tag to compare

@goergisn goergisn released this 26 Jan 15:21
96a0139

Improved

  • For all payment methods that include input fields for the shopper's address, the address input fields are now on a separate screen. This declutters the payment screen to improve user experience.

Changed

Fixed

  • For Apple Pay, when the allowOnboarding property of ApplePayConfiguration.init is set to true, the onboarding check now runs correctly.
  • In landscape mode, the search bar height no longer expands and obstructs other visual elements like the issuer list on the screen.
  • For stored card payments using Drop-in, the pay button is now enabled correctly when entering the security code with the Traditional Chinese Cantonese keyboard.