Release Notes
π Aerosync React Native SDK v3.0.1
Release Date: May 05, 2025
β¨** New Feature**
Embedded Bank View (Optional)You can now embed a list of Aerosync-supported banks directly into your webpage using the new embedded view feature. This offers a smoother and more integrated user experience.Learn more here: <https://dev.aero.inc/docs/embedded-view>
Weβve added a refreshed demo application to make local testing faster and easier. <https://github.com/Aeropay-inc/aerosync-react-native-sdk/tree/main/demo/syncReactNativeCLI>
You now have the flexibility to pass custom WebView props directly using customWebViewProps.Reference: <https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.md>
react-native-webview
has been added as a peer dependency ofaerosync-react-native-sdk
π** Bug Fixes**
- General code cleanup and several minor bug fixes for better performance and stability.
β οΈ** Breaking Changes (for v2.0.6 and earlier)**
<BankLink>
has been renamed to<AeroSyncWidget>
β update your code to reflect this change.
react-native-webview
will no longer be automatically installed withaerosync-react-native-sdk
.You must install it manually:
npm install react-native-webview
This change improves flexibility and avoids version conflicts with your project's existing dependencies.
If you previously used custom WebView props (e.g., limitsNavigationsToAppBoundDomains), please ensure you now pass them via customWebViewProps.
Before:<BankLink ... limitsNavigationsToAppBoundDomains = {true} }}></BankLink>
After:
<AeroSyncWidget ... customWebViewProps={{ style: { marginTop: 30, backgroundColor: isDarkTheme ? '#000000' : '#FFFFFF' }, limitsNavigationsToAppBoundDomains: true }} />
The
style
prop has been removed from widget props. You can now direcly handle the styles from your application.<BankLink ... ΜΆ ΜΆ ΜΆ ΜΆsΜΆtΜΆyΜΆlΜΆeΜΆ=ΜΆ{ΜΆ{ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆwΜΆiΜΆdΜΆtΜΆhΜΆ:ΜΆ ΜΆ'ΜΆ1ΜΆ0ΜΆ0ΜΆ%ΜΆ'ΜΆ,ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆhΜΆeΜΆiΜΆgΜΆhΜΆtΜΆ:ΜΆ ΜΆ'ΜΆ1ΜΆ0ΜΆ0ΜΆ%ΜΆ'ΜΆ,ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆoΜΆpΜΆaΜΆcΜΆiΜΆtΜΆyΜΆ:ΜΆ ΜΆ1ΜΆ,ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆbΜΆgΜΆCΜΆoΜΆlΜΆoΜΆrΜΆ:ΜΆ ΜΆ'ΜΆ#ΜΆFΜΆFΜΆFΜΆFΜΆFΜΆFΜΆ'ΜΆ,ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ ΜΆ}ΜΆ}ΜΆ>ΜΆ }}></BankLink>
π Aerosync React Native SDK v3.0.2
Release Date: May 20, 2025
β¨ New Feature
- Updated embedded height to accommodate privacy policy.
- Updated README documentation with the latest example.
β οΈ Breaking Changes- The embedded view height requirement has changed. To properly display 3 rows of banks, the height must now be at least 356px. Please refer to the updated breakpoint table for more details.
π Aerosync Web SDK v4.0.1
Release Date: May 30, 2025
β¨ New Feature
- AeroPass Support: Returning users can now select their previously linked banks when using AeroPass, streamlining the login and verification process.
β οΈ Breaking Changes
onSuccess
Event Updated: TheonSuccess
callback now includes only three attributes.export interface SuccessEventType { connectionId: string; clientName: string; aeroPassUserUuid: string; }
consumerId
Renamed: The consumerId parameter is now renamed toconfigurationId
. Update your integration accordingly.βΉοΈ Note for <=v3.x.x Users
If you're already using v1.x.x, no changes are needed.This update is specifically targeted at 2.x.x clients who have already migrated.
Updated 25 days ago