Skip to content

Commit

Permalink
Merge pull request #601 from plaid/dt-link-mob-124
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid authored Nov 13, 2023
2 parents 4e07b0b + 23679c6 commit b5f5356
Show file tree
Hide file tree
Showing 7 changed files with 56 additions and 6 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# RELEASES

## LinkKit V10.9.0 — 2023-11-07

### React Native

#### Requirements

| Name | Version |
|------|---------|
| React Native | >= [66.0](https://reactnative.dev/blog/2021/10/01/version-066) |

#### Changes

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


### Android

Android SDK [3.14.1](https://github.com/plaid/plaid-link-android/releases/tag/v3.14.1)

#### Requirements

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

### Additions

- Flutter usage tracking.

### Changes

- Change LinkActivity to SingleInstance to fix issue with OAuth Redirects on Android 14.

### Removals

- None


### iOS

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

#### Requirements

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

## LinkKit V10.8.0 — 2023-11-07

### React Native
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ You can also use the `usePlaidEmitter` hook in react functional components:

| Plaid SDK Version | Min React Native Version | Android SDK | Android Min Version | Android Compile Version| iOS SDK | iOS Min Version | Status |
|-------------------|--------------------------|-------------|---------------------|------------------------|---------|-----------------|-------------------------------|
| 10.9.0 | >= 0.66.0 | [3.14.1+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 |
| 10.8.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 |
| 10.7.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 |
| 10.6.4 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 |
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:3.14.0"
implementation "com.plaid.link:sdk-core:3.14.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="10.8.0" />
android:value="10.9.0" />
</application>

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

+ (NSString*)sdkVersion {
return @"10.8.0"; // SDK_VERSION
return @"10.9.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": "10.8.0",
"version": "10.9.0",
"description": "React Native Plaid Link SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ export enum PlaidProduct {
TRANSACTIONS="transactions",
}

enum LinkAccountType {
export enum LinkAccountType {
CREDIT = 'credit',
DEPOSITORY = 'depository',
INVESTMENT = 'investment',
LOAN = 'loan',
OTHER = 'other',
}

enum LinkAccountSubtypes {
export enum LinkAccountSubtypes {
ALL = 'all',
CREDIT_CARD = 'credit card',
PAYPAL = 'paypal',
Expand Down

0 comments on commit b5f5356

Please sign in to comment.