diff --git a/CHANGELOG.md b/CHANGELOG.md index e4d3ac91..ab947165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,46 @@ # RELEASES +## LinkKit V11.8.0 — 2024-04-16 + +### React Native + +#### Requirements + +This SDK now works with any supported version of React Native. + +#### Changes + +- Update iOS SDK and Android SDKs. + +### Android + +Android SDK [4.3.1](https://github.com/plaid/plaid-link-android/releases/tag/v4.3.1) + +#### Changes +- Change WebView background to a transparent gradient. + +#### Requirements + +| Name | Version | +|------|---------| +| Android Studio | 4.0+ | +| Kotlin | 1.8+ | + +### iOS + +iOS SDK [5.4.2](https://github.com/plaid/plaid-link-ios/releases/tag/5.4.2) + +#### Changes + +- Make Link background a transparent gradient. + +#### Requirements + +| Name | Version | +|------|---------| +| Xcode | >= 15.0.1 | +| iOS | >= 14.0 | + ## LinkKit V11.7.1 — 2024-04-12 ### React Native diff --git a/README.md b/README.md index dfafaa22..96ef2eff 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,9 @@ While these older versions are expected to continue to work without disruption, | Plaid SDK Version | Min React Native Version | Android SDK | Android Min Version | Android Compile Version| iOS SDK | iOS Min Version | Status | |-------------------|--------------------------|-------------|---------------------|------------------------|---------|-----------------|-------------------------------| +| 11.8.0 | * | [4.3.1+] | 21 | 34 | >=5.4.2 | 14.0 | Active, supports Xcode 15.0.1 | | 11.7.1 | * | [4.3.0+] | 21 | 34 | >=5.4.1 | 14.0 | Active, supports Xcode 15.0.1 | +| 11.7.0 | * | [4.3.0+] | 21 | 34 | >=5.4.0 | 14.0 | Active, supports Xcode 15.0.1 | | 11.6.0 | * | [4.2.0+] | 21 | 34 | >=5.3.1 | 14.0 | Active, supports Xcode 15.0.1 | | 11.5.2 | * | [4.1.1+] | 21 | 34 | >=5.2.1 | 14.0 | Active, supports Xcode 15.0.1 | | 11.5.1 | * | [4.1.1+] | 21 | 34 | >=5.2.0 | 14.0 | Active, supports Xcode 15.0.1 | diff --git a/android/build.gradle b/android/build.gradle index 014247a8..1efbaac6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -70,7 +70,7 @@ repositories { dependencies { implementation "com.facebook.react:react-native:+" - implementation "com.plaid.link:sdk-core:4.3.0" + implementation "com.plaid.link:sdk-core:4.3.1" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1" } diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml index 01041c43..37bdb983 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -4,7 +4,7 @@ + android:value="11.8.0" /> diff --git a/ios/RNLinksdk.m b/ios/RNLinksdk.m index b4ddee81..cd5216cf 100644 --- a/ios/RNLinksdk.m +++ b/ios/RNLinksdk.m @@ -27,7 +27,7 @@ @implementation RNLinksdk RCT_EXPORT_MODULE(); + (NSString*)sdkVersion { - return @"11.7.1"; // SDK_VERSION + return @"11.8.0"; // SDK_VERSION } + (NSString*)objCBridgeVersion { diff --git a/package.json b/package.json index 22301028..9b9a8e2d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-plaid-link-sdk", - "version": "11.7.1", + "version": "11.8.0", "description": "React Native Plaid Link SDK", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/react-native-plaid-link-sdk.podspec b/react-native-plaid-link-sdk.podspec index ddd1ed78..29e04164 100644 --- a/react-native-plaid-link-sdk.podspec +++ b/react-native-plaid-link-sdk.podspec @@ -16,5 +16,5 @@ Pod::Spec.new do |s| s.source_files = "ios/*.{h,m,swift}" s.dependency 'React-Core' - s.dependency 'Plaid', '~> 5.4.1' + s.dependency 'Plaid', '~> 5.4.2' end