[Release] - Update to LinkKit 7.0.0#71
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
LinkKit 7.0.0 - 2026-06-09
LinkKit 7.0.0 is a major release introducing a modernized, session-based architecture and native SwiftUI support. This version significantly reduces the SDK footprint while offering more granular control over Link flows.
HandlerAPI has been replaced by specializedSessionobjects (e.g.,PlaidLinkSession,PlaidLayerSession).LinkKitmodule is now Swift-only. For Objective-C support, you must explicitly import the newLinkKitObjCmodule.Requirements
Key Enhancements
.plaidLink(isPresented:token:...)and the.sheet()method on session objects, removing the need forUIViewControllerRepresentable.onLoad: TheonLoadcallback is now a first-class citizen inLinkTokenConfiguration. You can now initialize sessions in the background and only present UI when the SDK is "Ready."PlaidFinanceKitwith support for async/await and a newSyncBehaviorenum.Feature Updates
Standard Link
LinkTokenConfigurationwhereonSuccess,onExit,onEvent, andonLoadare all defined at initialization.Plaid.createresult-switching with a throwingPlaid.createPlaidLinkSessionmethod.Plaid Layer
LayerTokenConfigurationandPlaidLayerSession.session.submit(data:)to programmatically pass user information (Phone, DOB) to an active Layer session.Headless Link
PlaidHeadlessSessionwhich removes the need fornoLoadingStateflags; the session is entirely invisible until programmatically started.Embedded Link
EmbeddedSearchView(SwiftUI) andEmbeddedSearchUIView(UIKit) provide a "search-first" native experience without manual view wrapping.Note: For detailed code examples and step-by-step instructions on transitioning your implementation, please refer to our v7.0.0 Migration Guide.