Skip to content

Commit

Permalink
prep 11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dtroupe-plaid committed Nov 9, 2023
1 parent 40356b4 commit 5aa6ada
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 6 deletions.
69 changes: 69 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,74 @@
# RELEASES

## LinkKit V11.0.0 — 2023-11-09

### React Native

#### Requirements

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

#### Changes

The update to the next major version of our mobile SDKs **includes breaking changes**. Please see our [migration guide]
(https://github.com/plaid/react-native-plaid-link-sdk/blob/master/v11-migration-guide.md) for full details.


- Update Android SDK [4.0.0](https://github.com/plaid/plaid-link-android/releases/tag/v4.0.0)
- Update iOS SDK to [5.0.0](https://github.com/plaid/plaid-link-ios/releases/tag/5.0.0)

### Android

Android SDK [4.0.0](https://github.com/plaid/plaid-link-android/releases/tag/v4.0.0)

#### Requirements

| Name | Version |
|------|---------|
| Android Studio | 4.0+ |
| Kotlin | 1.8+ |

#### Additions

- Flutter usage tracking.

#### Changes

- Upgrade to Kotlin 1.8.22
- Change LinkActivity to SingleInstance to fix issue with OAuth Redirects on Android 14.

#### Removals

- Remove deprecated support for public key authentication.
- Remove extraParams Map field from API.

[Android migration guide](https://github.com/plaid/plaid-link-android#migration-guide)

### iOS

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

#### Requirements

| Name | Version |
|------|---------|
| Xcode | >= 15.0.1 |
| iOS | >= 14.0 |


#### Changes

- Drop support for iOS 11, 12, & 13.
- Reduce iOS SDK size from 15 megabytes to 11 megabytes.
- Remove deprecated support for public key authentication.
- Remove deprecated continue from method (this method no longer needs to be called for OAuth redirects).
- Remove deprecated continue method (this method no longer needs to be called for OAuth redirects).
- Remove deprecated open with OpenOptions function.
- Make webview inspectable on iOS >= 16.4.
- Add Privacy Manifest for `UserDefaults` use.

[iOS migration guide](https://github.com/plaid/plaid-link-ios/blob/master/v5-migration-guide.md)

## LinkKit V10.8.0 — 2023-11-07

### React Native
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ You can also use the `usePlaidEmitter` hook in react functional components:

| Plaid SDK Version | Min React Native Version | Android SDK | Android Min Version | Android Compile Version| iOS SDK | iOS Min Version | Status |
|-------------------|--------------------------|-------------|---------------------|------------------------|---------|-----------------|-------------------------------|
| 11.0.0 | * | [4.0.0+] | 21 | 33 | >=5.0.0 | 14.0 | Active, supports Xcode 15.0.1 |
| 10.8.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.7.0 | 11.0 | Active, supports Xcode 14 |
| 10.7.0 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 |
| 10.6.4 | >= 0.66.0 | [3.14.0+] | 21 | 33 | >=4.6.4 | 11.0 | Active, supports Xcode 14 |
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ repositories {

dependencies {
implementation "com.facebook.react:react-native:+"
implementation "com.plaid.link:sdk-core:4.0.0-beta1"
implementation "com.plaid.link:sdk-core:4.0.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "com.jakewharton.rxrelay2:rxrelay:2.1.1"
}
6 changes: 3 additions & 3 deletions android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Oct 23 12:48:00 PDT 2019
#Thu Nov 09 09:41:09 PST 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
zipStoreBase=GRADLE_USER_HOME
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="10.8.0" />
android:value="11.0.0" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion react-native-plaid-link-sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Pod::Spec.new do |s|
s.source_files = "ios/*.{h,m,swift}"

s.dependency 'React-Core'
s.dependency 'Plaid', '~> 5.0.0-beta2'
s.dependency 'Plaid', '~> 5.0.0'
end

0 comments on commit 5aa6ada

Please sign in to comment.