From 6750b79670a006ca4fd5cd06f1e655f56cc4965f Mon Sep 17 00:00:00 2001 From: jreij Date: Tue, 30 May 2023 12:43:26 +0300 Subject: [PATCH 1/2] Update release notes for 4.12.0 --- RELEASE_NOTES.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2b78f853c6..d2a13aeaa8 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -9,4 +9,17 @@ [//]: # ( - Configurations public constructor are deprecated, please use each Configuration's builder to make a Configuration object) ## New -* Cash App Pay Component. +* Payment method: Cash App Pay. + +## Fixed +- For Google Pay, serializing the shipping address parameters no longer causes an error. +- For WeChat Pay on Android 11, an API restriction no longer causes an error. + +## Removed +* For 3D Secure 2, the `threeDSRequestorAppURL` will not have a default value anymore. You can set it manually using: + +```kotlin +Adyen3DS2Configuration.Builder(locale, environment, clientKey) + .setThreeDSRequestorURL("https://{your app.com}/adyen3ds2") + .build() +``` \ No newline at end of file From 88477dda01f930db922f24e38ce5538dab63f37b Mon Sep 17 00:00:00 2001 From: jreij Date: Tue, 30 May 2023 12:47:09 +0300 Subject: [PATCH 2/2] Update SDK version to 4.12.0 --- README.md | 4 ++-- build.gradle | 2 +- example-app/build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 776ca40f96..7067381be3 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,11 @@ If you are upgrading from 3.x.x to a current release, check out our [migration g Import the Component module for the Payment Method you want to use by adding it to your `build.gradle` file. For example, for the Drop-in solution you should add: ```groovy -implementation "com.adyen.checkout:drop-in:4.11.0" +implementation "com.adyen.checkout:drop-in:4.12.0" ``` For a Credit Card component you should add: ```groovy -implementation "com.adyen.checkout:card:4.11.0" +implementation "com.adyen.checkout:card:4.12.0" ``` ### Client Key diff --git a/build.gradle b/build.gradle index 0714dcd6d9..90902af52f 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,7 @@ allprojects { // just for example app, don't need to increment ext.version_code = 1 // The version_name format is "major.minor.patch(-(alpha|beta|rc)[0-9]{2}){0,1}" (e.g. 3.0.0, 3.1.1-alpha04 or 3.1.4-rc01 etc). - ext.version_name = "4.11.0" + ext.version_name = "4.12.0" // Code quality ext.ktlint_version = '0.40.0' diff --git a/example-app/build.gradle b/example-app/build.gradle index 956cac5def..772e6a5683 100644 --- a/example-app/build.gradle +++ b/example-app/build.gradle @@ -72,7 +72,7 @@ android { dependencies { // Checkout implementation project(':drop-in') -// implementation "com.adyen.checkout:drop-in:4.11.0" +// implementation "com.adyen.checkout:drop-in:4.12.0" // Dependencies implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_version"