Skip to content

Commit cf82f7e

Browse files
[Release] - 12.7.0 (#828)
1 parent eae7d15 commit cf82f7e

File tree

5 files changed

+55
-3
lines changed

5 files changed

+55
-3
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
# RELEASES
22

3+
## LinkKit V12.7.0 — 2025-11-04
4+
5+
#### Requirements
6+
7+
This SDK now works with any supported version of React Native.
8+
9+
### Changes
10+
11+
- Add `onLoad` to `LinkTokenConfiguration`, fired once when Link is fully loaded and ready to present. Use it to manage your own loading UI or defer presentation until ready.
12+
13+
### Android
14+
15+
Android SDK [5.5.0](https://github.com/plaid/plaid-link-android/releases/tag/v5.5.0)
16+
17+
### Additions
18+
19+
- None
20+
21+
### Changes
22+
23+
- Made LinkErrorCode.errorType public.
24+
- Fixed bug where layer "auto" customization for light/dark mode was always dark, regardless of system setting.
25+
- Added onLoad callback to Plaid.create for detecting when Link is ready to present.
26+
27+
### Removals
28+
29+
- None
30+
31+
#### Requirements
32+
33+
| Name | Version |
34+
|------|---------|
35+
| Android Studio | 4.0+ |
36+
| Kotlin | 1.9.25+ (Kotlin integrations only) |
37+
38+
### iOS
39+
40+
iOS SDK [6.4.2](https://github.com/plaid/plaid-link-ios/releases/tag/6.4.2)
41+
42+
### Changes
43+
44+
- Resolved `syncFinanceKit` crash when running on iPad on compatibility mode.
45+
46+
#### Requirements
47+
48+
| Name | Version |
49+
|------|---------|
50+
| Xcode | >= 16.1.0 |
51+
| iOS | >= 14.0 |
52+
53+
354
## LinkKit V12.6.1 — 2025-10-22
455

556
#### Requirements

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ If migrating from older versions, see the [docs](https://plaid.com/docs/link/rea
215215

216216
| Plaid SDK Version | Min React Native Version | Android SDK | Android Min Version | Android Compile Version| iOS SDK | iOS Min Version | Status |
217217
|-------------------|--------------------------|-------------|---------------------|------------------------|---------|-----------------|-------------------------------|
218+
| 12.7.0 | * | [5.5.0+] | 21 | 34 | >=6.4.2 | 14.0 | Active, supports Xcode 16.1.0 |
218219
| 12.6.1 | * | [5.4.0+] | 21 | 34 | >=6.4.2 | 14.0 | Active, supports Xcode 16.1.0 |
219220
| 12.6.0 | * | [5.4.0+] | 21 | 34 | >=6.4.1 | 14.0 | Active, supports Xcode 16.1.0 |
220221
| 12.5.3 | * | [5.3.4+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<application>
55
<meta-data
66
android:name="com.plaid.link.react_native"
7-
android:value="12.6.1" />
7+
android:value="12.7.0" />
88
</application>
99

1010
</manifest>

ios/RNLinksdk.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ @implementation RNLinksdk
2828
RCT_EXPORT_MODULE();
2929

3030
+ (NSString*)sdkVersion {
31-
return @"12.6.1"; // SDK_VERSION
31+
return @"12.7.0"; // SDK_VERSION
3232
}
3333

3434
+ (NSString*)objCBridgeVersion {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-plaid-link-sdk",
3-
"version": "12.6.1",
3+
"version": "12.7.0",
44
"description": "React Native Plaid Link SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)