Skip to content

v18.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 08 Jun 17:41
59f73ae

18.0.0-beta.2 (2025-06-08)

Features

BREAKING CHANGES

Because of the removal of the animations dependency, the NoopAnimationsModule is no longer automatically imported in the render function.

BEFORE:

The NoopAnimationsModule is always imported to the render the component.

AFTER:

Import the NoopAnimationsModule in your render configuration where needed:

 await render(SutComponent, {
    imports: [NoopAnimationsModule],
});