Release Notes
π Aerosync Web SDK v1.1.1
Release Date: April 22, 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π Bug Fixes
- Fixed flashing issue when launching the widget in dark mode.
- Resolved unintended onClose event trigger during successful bank linking.
- General code cleanup and several minor bug fixes for better performance and stability.
β οΈ Breaking Changes (for v1.1.0 and earlier)
If you're upgrading from v1.1.0 or below, take note of the following breaking changes:
- openWidget() β‘οΈ renamed to initAeroSyncWidget()
β Use the new function name to initiate the widget.- Widget Config: id β‘οΈ renamed to elementId
β Update your HTML reference in the widget configuration.- Event Handling Change:
β Now, only onSuccess() is triggered after a successful bank link and widget close. β Previously, both onSuccess and onClose were fired together. β Make sure to listen to onSuccess() to handle success actions like updating your UI or navigating to the next step.βΉοΈ Note for v2.x.x Users
If you're already using v2.x.x, no changes are needed. This update is specifically targeted at 1.x.x clients who havenβt migrated yet.
π Aerosync Web SDK v2.1.0
Release Date: May 30, 2025
π Bug Fixes
- Fixed flashing issue when launching the widget in dark mode.
- Resolved unintended onClose event trigger during successful bank linking.
- General code cleanup and several minor bug fixes for better performance and stability.
β οΈ Breaking Changes (for v2.0.4 and earlier)
If you're upgrading from v2.0.4 or below, take note of the following breaking changes:
- openWidget() β‘οΈ renamed to initAeroSyncWidget()
β Use the new function name to initiate the widget.- Widget Config: id β‘οΈ renamed to elementId
β Update your HTML reference in the widget configuration.- Event Handling Change:
β Now, only onSuccess() is triggered after a successful bank link and widget close. β Previously, both onSuccess and onClose were fired together. β Make sure to listen to onSuccess() to handle success actions like updating your UI or navigating to the next step.consumerId
Renamed: The consumerId parameter is now renamed toconfigurationId
. Update your integration accordingly.onSuccess
Event Updated: TheonSuccess
callback now includes only three attributes.export interface SuccessEventType { connectionId: string; clientName: string; aeroPassUserUuid: string; }
βΉοΈ Note for v1.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 8 days ago