Skip to content

@aws-amplify/ui-angular@5.3.5

Latest

Choose a tag to compare

@github-actions github-actions released this 08 Jun 03:06
· 2 commits to main since this release
2a7c143

Patch Changes

  • #7008 a57f58931cac4d36dc343d30f3fd42617f6d449e Thanks @pranavosu! - fix(ui-angular): render authenticator route changes on Angular v22+

    The Authenticator is driven by an xstate machine, and the component previously
    relied on zone.js to trigger change detection when the machine transitioned
    between routes. That implicit behavior is no longer guaranteed on Angular v22+,
    which left the Authenticator stuck on its initial route and rendered an empty
    component. Change detection now runs on every machine transition so the rendered
    route always reflects the current machine state.

  • #7003 c2c09e66a760049718ecbea7e933b49047f0f6fc Thanks @pranavosu! - This change adds changeDetection: ChangeDetectionStrategy.Default to all components, preserving existing behavior across Angular 19-22+ without any API or behavioral changes for consumers.