Skip to main content

Latest releases

Each entry below mirrors the release notes on GitHub, where every SDK release is published automatically as part of the Mesh release workflow. The GitHub releases page for each SDK is the canonical source of truth.
Web SDK 3.10.3
Web
July 6, 2026
Why update: Completes coverage of event payloads so you can respond to previously unreported SDK events. Drop-in upgrade — no breaking changes.
  • Added missing event payloads, giving your integration access to a more complete set of callback data.
Full release notes on GitHub →
React Native SDK 2.4.1
React Native
July 3, 2026
Why update: Adds typed interfaces for all LinkEventType events and fills in missing payload fields, improving type safety when handling Link events. Drop-in upgrade — no breaking changes.
  • Typed event interfaces — all LinkEventType events now have typed definitions, including ConnectionDeclined, ConnectionUnavailable, TransferDeclined, TransferConfigureError, TransferAssetSelected, TransferNetworkSelected, DefiWalletError, and simple events such as IntegrationMfaRequired, TransferKycRequired, and HomePageLoaded.
  • Expanded event payloads — added optional fields including requestId on error events, nativeLink and userSearched on IntegrationSelected, userId and clientTransactionId on TransferExecuted, and verifiedAddresses on WalletMessageSigned.
  • TransferStarted now carries a typed payload with integrationName and optional integrationType.
  • The WebView URL now includes platform=reactNative so Link v2 correctly identifies the hosting SDK.
Full release notes on GitHub →
Flutter SDK 1.1.6
Flutter
June 17, 2026
Why update: Adds support for opening BybitPay, Kraken Pay, Crypto.com Pay, and Cash App Pay in hosted-QR deposit and pay flows, and tightens origin matching. Drop-in upgrade — no breaking changes.
  • New partner pay flows — BybitPay, Kraken Pay, Crypto.com Pay, and Cash App Pay are now in the externally-opened origins list, so hosted-QR deposit and pay flows open the correct partner app or browser.
  • Deep link support — added bybit, cryptocom, krakenpay, and cashapp to allowedNativeSchemes for custom-scheme deep links.
  • iOS setup docs — README now documents the LSApplicationQueriesSchemes entries required in client apps.
  • isExternallyOpenedOrigin now matches scheme and host exactly via URI parsing instead of string-prefix matching, preventing lookalike-domain bypasses.
Full release notes on GitHub →
Android SDK 3.4.3
Android
July 2, 2026
Why update: Adds correct platform identification for Link v2 and several previously missing onEvent types. Drop-in upgrade — no breaking changes.
  • Adds a platform=android query parameter to the WebView URL so Link v2 correctly identifies the SDK platform on first render.
  • Adds missing event types to the onEvent stream: integrationConnected, transferMfaEntered, homePageLoaded, defiWalletError, and paypalComplianceDeclined.
Full release notes on GitHub →
iOS SDK 3.3.0
iOS
March 12, 2026
Why update: Removes an unnecessary third-party dependency from the SDK.
  • Disabled the QuantumIOS dependency.
Full release notes on GitHub →

Versioning policy

Mesh SDKs follow semantic versioning (MAJOR.MINOR.PATCH):
Version bumpMeaningAction needed
Major (3.x.x4.0.0)Breaking change — APIs changed or removedReview the migration notes in the release before upgrading
Minor (3.9.x3.10.0)New feature, non-breakingSafe to upgrade; review what’s new
Patch (3.10.03.10.1)Bug fix or improvementSafe to upgrade; recommended

Releases by platform

GitHub is the canonical source for versions and release notes. Each SDK also publishes to its package registry:

Get notified automatically

Set this up once during your integration build so new releases reach you without checking the docs.

Watch releases on GitHub

On the GitHub repo for your SDK, click Watch → Custom → Releases. GitHub emails you whenever Mesh publishes a new release — every release includes notes describing what changed and why it matters.

Enable Dependabot

If your repo is on GitHub, Dependabot version updates automatically open a PR in your repo whenever a new SDK version is published. The configs below are scoped to Mesh packages only via the allow list, so you won’t get PRs for unrelated dependencies. Add a .github/dependabot.yml to your repo:
version: 2
updates:
  - package-ecosystem: "npm"
    directory: "/"
    schedule:
      interval: "daily"
    allow:
      - dependency-name: "@meshconnect/*"
Already running Dependabot? Just add the Mesh dependency-name entry to the allow list of your existing config — or remove the allow block entirely if you want Dependabot to keep all your dependencies current.

AI coding reference — a compact summary of this page’s APIs, parameters, and patterns for use by AI coding assistants (following the llms.txt standard). Human readers can safely ignore this.llms.txt — SDK release notes & versioningMesh SDK versions and release notes. GitHub releases are the canonical source of truth; this page mirrors them.Latest versions (as of July 2026): Web @meshconnect/web-link-sdk 3.10.3, React Native @meshconnect/react-native-link-sdk 2.4.1, Flutter mesh_sdk_flutter 1.1.6, Android com.meshconnect:link 3.4.3, iOS 3.3.0.Versioning: Semantic versioning. Major = breaking (review migration notes), minor = new features (safe), patch = fixes (safe, recommended).Release notes: GitHub releases per repo — FrontFin/mesh-web-sdk, FrontFin/mesh-ios-sdk, FrontFin/mesh-android-sdk, FrontFin/mesh-react-native-sdk, FrontFin/mesh-flutter-sdk.Stay updated: GitHub Watch → Custom → Releases for email notifications. Dependabot (.github/dependabot.yml, ecosystems: npm, gradle, pub, swift) auto-opens PRs on new versions; scope to Mesh with allow: [dependency-name: "@meshconnect/*"] (npm), "com.meshconnect:*" (gradle), "mesh_sdk_flutter" (pub), "github.com/frontfin/mesh-ios-sdk" (swift).