Skip to content

Commit 76a3385

Browse files
release 12.5.3
1 parent 6af8974 commit 76a3385

File tree

6 files changed

+54
-4
lines changed

6 files changed

+54
-4
lines changed

CHANGELOG.md

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

3+
## LinkKit V12.5.3 — 2025-09-16
4+
5+
#### Requirements
6+
7+
This SDK now works with any supported version of React Native.
8+
9+
### Changes
10+
11+
- Resolve issue [816](https://github.com/plaid/react-native-plaid-link-sdk/issues/816) with Android SDK upgrade to v5.3.4.
12+
13+
### Android
14+
15+
Android SDK [5.3.4](https://github.com/plaid/plaid-link-android/releases/tag/v5.3.4)
16+
17+
### Additions
18+
19+
- None
20+
21+
### Changes
22+
23+
- Fix retrofit reinitialization bug in edge cases.
24+
25+
### Removals
26+
27+
- None
28+
29+
#### Requirements
30+
31+
| Name | Version |
32+
|------|---------|
33+
| Android Studio | 4.0+ |
34+
| Kotlin | 1.9.25+ (Kotlin integrations only) |
35+
36+
### iOS
37+
38+
iOS SDK [6.4.0](https://github.com/plaid/plaid-link-ios/releases/tag/6.4.0)
39+
40+
### Changes
41+
42+
- Add issueDescription and issueDetectedAt to EventMetadata.
43+
44+
#### Requirements
45+
46+
| Name | Version |
47+
|------|---------|
48+
| Xcode | >= 16.1.0 |
49+
| iOS | >= 14.0 |
50+
51+
352
## LinkKit V12.5.2 — 2025-09-10
453

554
#### 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.5.3 | * | [5.3.4+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |
218219
| 12.5.2 | * | [5.3.3+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |
219220
| 12.5.1 | * | [5.3.2+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |
220221
| 12.5.0 | * | [5.3.2+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ repositories {
106106

107107
dependencies {
108108
implementation "com.facebook.react:react-native:+"
109-
implementation "com.plaid.link:sdk-core:5.3.3"
109+
implementation "com.plaid.link:sdk-core:5.3.4"
110110
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
111111
}

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.5.2" />
7+
android:value="12.5.3" />
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.5.2"; // SDK_VERSION
31+
return @"12.5.3"; // 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.5.2",
3+
"version": "12.5.3",
44
"description": "React Native Plaid Link SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)