Skip to content

Commit

Permalink
Merge pull request #695 from plaid/dt-add-missing-layer-events
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid authored Aug 7, 2024
2 parents e658fbf + 4162718 commit e815f37
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 3 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# RELEASES

## LinkKit V11.11.2 — 2024-08-06

### React Native

#### Requirements

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

#### Changes

- Resolve issue [693](https://github.com/plaid/react-native-plaid-link-sdk/issues/693) missing Layer events.
- Add `LAYER_READY` and `LAYER_NOT_AVAILABLE` events to `LinkEventName`.

### 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.1 — 2024-07-17

### React Native
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2 | * | [4.5.1+] | 21 | 34 | >=5.6.0 | 14.0 | Active, supports Xcode 15.0.1 |
| 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 |
Expand Down
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.11.1" />
android:value="11.11.2" />
</application>

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

+ (NSString*)sdkVersion {
return @"11.11.1"; // SDK_VERSION
return @"11.11.2"; // 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.11.1",
"version": "11.11.2",
"description": "React Native Plaid Link SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions src/Types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,8 @@ export enum LinkEventName {
IDENTITY_VERIFICATION_OPEN_UI = 'IDENTITY_VERIFICATION_OPEN_UI',
IDENTITY_VERIFICATION_RESUME_UI = 'IDENTITY_VERIFICATION_RESUME_UI',
IDENTITY_VERIFICATION_CLOSE_UI = 'IDENTITY_VERIFICATION_CLOSE_UI',
LAYER_READY = `LAYER_READY`,
LAYER_NOT_AVAILABLE = `LAYER_NOT_AVAILABLE`,
MATCHED_CONSENT = 'MATCHED_CONSENT',
MATCHED_SELECT_INSTITUTION = 'MATCHED_SELECT_INSTITUTION',
MATCHED_SELECT_VERIFY_METHOD = 'MATCHED_SELECT_VERIFY_METHOD',
Expand Down

0 comments on commit e815f37

Please sign in to comment.