Release notes

Learn about the latest updates to our API, and Drop-in/Components for web, iOS, and Android.

This page contains the release notes for Pay by Link, Checkout API, and Drop-in/Components for web, iOS, Android, React Native, and Flutter starting from 2020.

Get updates by RSS
Filter by
iOS Components/Drop-in
5.9.0
March 2025
SunMonTueWedThuFriSat
1
2345678
9101112131415
16171819202122
23242526272829
3031
Select dates
Copy url
icon
iOS Components/Drop-in v5.9.0

We recommend you use Checkout API v71 or later.

New
  • The new iDEAL payment flow where the shopper is redirected to the iDEAL payment page to select their bank and authorize the payment.
    You must now use InstantPaymentComponent for iDEAL:

    Copy code
    let paymentMethods = session.sessionContext.paymentMethods
    // Check that the payment method is supported before showing the Component.
    guard let paymentMethod = paymentMethods.paymentMethod(ofType: .ideal) else { return }
    let component = InstantPaymentComponent(paymentMethod: paymentMethod,
    context: context,
    order: nil)
    self.currentComponent = component
    // Set the session as the delegate.
    component.delegate = session
    component.initiatePayment()
  • 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 issues

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.

Removed
  • IdealComponent is no longer available. Use InstantPaymentComponent instead.