diff --git a/CHANGELOG.md b/CHANGELOG.md index 3094c467..eb78ab2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,49 @@ # RELEASES +## LinkKit V11.11.1 — 2024-07-17 + +### React Native + +#### Requirements + +This SDK now works with any supported version of React Native. + +#### Changes + +- Update Android SDK to 4.5.1. +- Update iOS SDK to 5.6.0. +- Add submit API. + +### Android + +Android SDK [4.5.1](https://github.com/plaid/plaid-link-android/releases/tag/v4.5.1) + +#### Changes +- Fix headless link race condition + +#### Requirements + +| Name | Version | +|------|---------| +| Android Studio | 4.0+ | +| Kotlin | 1.8+ | + +### iOS + +iOS SDK [5.6.0](https://github.com/plaid/plaid-link-ios/releases/tag/5.6.0) + +#### Changes + +- Add submit API for Layer. +- Improved Remember Me Experience + +#### Requirements + +| Name | Version | +|------|---------| +| Xcode | >= 15.0.1 | +| iOS | >= 14.0 | + ## LinkKit V11.11.0 — 2024-06-25 ### React Native diff --git a/README.md b/README.md index e2ef85ad..9f994009 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,7 @@ 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.11.1 | * | [4.5.1+] | 21 | 34 | >=5.6.0 | 14.0 | Active, supports Xcode 15.0.1 | | 11.11.0 | * | [4.5.0+] | 21 | 34 | >=5.6.0 | 14.0 | Active, supports Xcode 15.0.1 | | 11.10.3 | * | [4.4.2+] | 21 | 34 | >=5.5.1 | 14.0 | Active, supports Xcode 15.0.1 | | 11.10.2 | * | [4.3.1+] | 21 | 34 | >=5.5.1 | 14.0 | Active, supports Xcode 15.0.1 | diff --git a/android/build.gradle b/android/build.gradle index ab17788e..4267ba41 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -106,7 +106,7 @@ repositories { dependencies { implementation "com.facebook.react:react-native:+" - implementation "com.plaid.link:sdk-core:4.5.0" + implementation "com.plaid.link:sdk-core:4.5.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 48f30d73..0999d5b0 100644 --- a/android/src/main/AndroidManifest.xml +++ b/android/src/main/AndroidManifest.xml @@ -4,7 +4,7 @@ + android:value="11.11.1" /> diff --git a/ios/RNLinksdk.mm b/ios/RNLinksdk.mm index 389bb28b..bcb87d63 100644 --- a/ios/RNLinksdk.mm +++ b/ios/RNLinksdk.mm @@ -28,7 +28,7 @@ @implementation RNLinksdk RCT_EXPORT_MODULE(); + (NSString*)sdkVersion { - return @"11.11.0"; // SDK_VERSION + return @"11.11.1"; // SDK_VERSION } + (NSString*)objCBridgeVersion { diff --git a/package.json b/package.json index b4109672..479addc8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-plaid-link-sdk", - "version": "11.11.0", + "version": "11.11.1", "description": "React Native Plaid Link SDK", "main": "dist/index.js", "types": "dist/index.d.ts",