Skip to content

Commit

Permalink
Merge pull request #627 from plaid/release/11.4.0
Browse files Browse the repository at this point in the history
[Release] - 11.4.0
  • Loading branch information
dtroupe-plaid committed Jan 22, 2024
2 parents cfccf8e + 27c2abc commit f507daf
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 4 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# RELEASES

## LinkKit V11.4.0 — 2024-01-22

### React Native

#### Requirements

This SDK now works with any supported version of React Native.

#### Changes

- Updates Android SDK SDK to `4.1.1` to fix bug where certain Link sessions close after initial loading.


### Android

Android SDK [4.1.1](https://github.com/plaid/plaid-link-android/releases/tag/v4.1.1)

#### Requirements

| Name | Version |
|------|---------|
| Android Studio | 4.0+ |
| Kotlin | 1.8+ |

#### Additions

- Improved Remember Me experience.

### iOS

iOS SDK [5.1.0](https://github.com/plaid/plaid-link-ios/releases/tag/5.1.0)

#### Requirements

| Name | Version |
|------|---------|
| Xcode | >= 15.0.1 |
| iOS | >= 14.0 |


#### Changes

- Resolve issue where PrivacyInfo.xcprivacy was missing NSPrivacyCollectedDataTypes.
- Improved Remember Me experience.
- Improved OAuth out-of-process webview open options.

## LinkKit V11.3.0 — 2024-01-18

### React Native
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,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.4.0 | * | [4.1.1+] | 21 | 33 | >=5.1.0 | 14.0 | Active, supports Xcode 15.0.1 |
| 11.3.0 | * | [4.0.0+] | 21 | 33 | >=5.1.0 | 14.0 | Active, supports Xcode 15.0.1 |
| ~11.2.0~ | * | [4.1.0+] | 21 | 33 | >=5.1.0 | 14.0 | **Deprecated** |
| 11.1.0 | * | [4.0.0+] | 21 | 33 | >=5.1.0 | 14.0 | Active, supports Xcode 15.0.1 |
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ repositories {

dependencies {
implementation "com.facebook.react:react-native:+"
implementation "com.plaid.link:sdk-core:4.0.0"
implementation "com.plaid.link:sdk-core:4.1.1"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1"
}
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<application>
<meta-data
android:name="com.plaid.link.react_native"
android:value="11.3.0" />
android:value="11.4.0" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion ios/RNLinksdk.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ @implementation RNLinksdk
RCT_EXPORT_MODULE();

+ (NSString*)sdkVersion {
return @"11.3.0"; // SDK_VERSION
return @"11.4.0"; // SDK_VERSION
}

+ (NSString*)objCBridgeVersion {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-plaid-link-sdk",
"version": "11.3.0",
"version": "11.4.0",
"description": "React Native Plaid Link SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit f507daf

Please sign in to comment.