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 to configurationId. Update your integration accordingly.
  • onSuccess Event Updated: The onSuccess 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.