Skip to content

Commit aece467

Browse files
prepare 12.6.1 (#826)
1 parent 221dbb4 commit aece467

File tree

6 files changed

+57
-4
lines changed

6 files changed

+57
-4
lines changed

CHANGELOG.md

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

3+
## LinkKit V12.6.1 — 2025-10-22
4+
5+
#### Requirements
6+
7+
This SDK now works with any supported version of React Native.
8+
9+
### Changes
10+
11+
- Resolved an issue where the `selection` value was missing in `LinkEvent.EventMetadata`.
12+
- Improved internal debugging and logging to help diagnose customer-reported issues more effectively.
13+
- Upgrade to Android SDK [5.4.0](https://github.com/plaid/plaid-link-android/releases/tag/v5.4.0)
14+
- Upgrade to iOS SDK [6.4.1](https://github.com/plaid/plaid-link-ios/releases/tag/6.4.1)
15+
16+
### Android
17+
18+
Android SDK [5.4.0](https://github.com/plaid/plaid-link-android/releases/tag/v5.4.0)
19+
20+
### Additions
21+
22+
- None
23+
24+
### Changes
25+
26+
- Resolved an issue where the `selection` value was missing in `LinkEvent.EventMetadata`.
27+
- Improved internal debugging and logging to help diagnose customer-reported issues more effectively.
28+
29+
### Removals
30+
31+
- None
32+
33+
#### Requirements
34+
35+
| Name | Version |
36+
|------|---------|
37+
| Android Studio | 4.0+ |
38+
| Kotlin | 1.9.25+ (Kotlin integrations only) |
39+
40+
### iOS
41+
42+
iOS SDK [6.4.2](https://github.com/plaid/plaid-link-ios/releases/tag/6.4.2)
43+
44+
### Changes
45+
46+
- Resolved `syncFinanceKit` crash when running on iPad on compatibility mode.
47+
48+
#### Requirements
49+
50+
| Name | Version |
51+
|------|---------|
52+
| Xcode | >= 16.1.0 |
53+
| iOS | >= 14.0 |
54+
355
## LinkKit V12.6.0 — 2025-10-06
456

557
#### 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.6.1 | * | [5.4.0+] | 21 | 34 | >=6.4.2 | 14.0 | Active, supports Xcode 16.1.0 |
218219
| 12.6.0 | * | [5.4.0+] | 21 | 34 | >=6.4.1 | 14.0 | Active, supports Xcode 16.1.0 |
219220
| 12.5.3 | * | [5.3.4+] | 21 | 34 | >=6.4.0 | 14.0 | Active, supports Xcode 16.1.0 |
220221
| 12.5.2 | * | [5.3.3+] | 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.0" />
7+
android:value="12.6.1" />
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.0"; // SDK_VERSION
31+
return @"12.6.1"; // 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.0",
3+
"version": "12.6.1",
44
"description": "React Native Plaid Link SDK",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

react-native-plaid-link-sdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Pod::Spec.new do |s|
3636
end
3737

3838
s.dependency 'React-Core'
39-
s.dependency 'Plaid', '~> 6.4.1'
39+
s.dependency 'Plaid', '~> 6.4.2'
4040
end

0 commit comments

Comments
 (0)