Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# RELEASES

## LinkKit V13.0.2 — 2026-07-01

### Changes

- Updates the bundled iOS SDK to LinkKit 7.0.1, which restores native React
Native wrapper detection for v13 apps.
- Restores Android manifest metadata so the native Android SDK reports React
Native wrapper usage instead of plain Android.

### Android

Android SDK [6.0.0](https://github.com/plaid/plaid-link-android)

### Additions

- Adds native session APIs for Standard Link, Layer, and Headless Link.
- Adds Embedded Search continuation support.
- Adds Layer submit support.

### Changes

- Updates Android integration to `com.plaid.link:sdk-core:6.0.0`.

### Removals

- Removes the legacy React Native Android bridge implementation.

#### Requirements

| Name | Version |
| -------------- | ---------------------------------- |
| Android Studio | 4.0+ |
| Kotlin | 1.9.25+ (Kotlin integrations only) |

### iOS

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

### Changes

- Fix React Native Version Parsing

#### Requirements

| Name | Version |
| ----- | --------- |
| Xcode | >= 16.1.0 |
| iOS | >= 15.0 |

## LinkKit V13.0.1 — 2026-06-30

### Changes
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 @@ -2,6 +2,6 @@
<application>
<meta-data
android:name="com.plaid.link.react_native"
android:value="13.0.1" />
android:value="13.0.2" />
</application>
</manifest>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package expo.modules.plaidlinksdk

internal object RNPlaidLinkSdkVersion {
const val SDK_VERSION = "13.0.1"
const val SDK_VERSION = "13.0.2"
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
CCtLF/Sq9kGzANP7WX3EbJBgeYs=
bVKM2wfPTxqgOWRcw4RcQeuq6Js=
</data>
<key>Modules/LinkKit.swiftmodule/arm64-apple-ios.abi.json</key>
<data>
Expand All @@ -34,7 +34,7 @@
</data>
<key>Modules/LinkKit.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
Fn18Kk2T3pfmEctYDq9vjfF0Tkw=
x228/LndEd1mFJTCxcYccB5JdoM=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -93,7 +93,7 @@
<dict>
<key>hash2</key>
<data>
1PE1LbGRuPPBhIcvlGo7kow10ukFXfRFNblUmafFp/8=
s3fcq47XZzviDnw89UhbL/gl6CqiR6NgDmu3Yvh7LRE=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</data>
<key>Info.plist</key>
<data>
AgyYZj3go9s4dzNj5L+QQMHnTOA=
zSx3bhiFingz12RlJ7+lLoyGA2k=
</data>
<key>Modules/LinkKit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
<data>
Expand All @@ -34,7 +34,7 @@
</data>
<key>Modules/LinkKit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
mzLlm7/nmMjRGNrgnTNepzSTKC8=
DJhrXPcnV3f8LAIPiHoK0T0gJrc=
</data>
<key>Modules/LinkKit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
<data>
Expand All @@ -54,7 +54,7 @@
</data>
<key>Modules/LinkKit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
G3EhoV6vT0GmydyoqIumSrhg0vQ=
I3shGx2YIQUZTh4KWzWvZIh5750=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -113,7 +113,7 @@
<dict>
<key>hash2</key>
<data>
J+O5khoK25tAydT9tgkYKawUxeHr6oDTFq6NDmoye/U=
AvDB29gqSkL2ynVsTBIu8j84FNH2TMRoe1ZfSlH0il0=
</data>
</dict>
<key>Modules/LinkKit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
Expand Down Expand Up @@ -148,7 +148,7 @@
<dict>
<key>hash2</key>
<data>
TAHp1Do9hxAzw2V4/Y4RxvU7DNpPhHkXyMl67e910MU=
bE5g2V4zXFFlhnPA82/WvOASXTTBO4vojAhfHleee8A=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/src/RNPlaidLinkSdkVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ public class RNPlaidLinkSdkVersion: NSObject {
///
/// This should match the version specified in package.json.
/// Update this value when bumping the SDK version.
@objc public static let sdkVersion: String = "13.0.1"
@objc public static let sdkVersion: String = "13.0.2"
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "13.0.1",
"version": "13.0.2",
"description": "React Native Plaid Link SDK (New Architecture & Expo)",
"main": "build/index.js",
"types": "build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/__mocks__/ReactNativePlaidLinkSdkModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const mockListeners: Record<string, Function[]> = {
};

const mockNativeModule = {
sdkVersion: "13.0.1",
sdkVersion: "13.0.2",

createPlaidLinkSession: jest.fn(() => Promise.resolve()),

Expand Down
Loading