Skip to content

v18.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 07 Aug 16:06
4fea701

18.0.0 (2025-08-07)

Features

BREAKING CHANGES

  • The angular minimum version has changed.

BEFORE:

Angular 17,18,19 were supported.

AFTER:

Angular 20 (and up) is supported.
Reason: The method TestBed.get has been removed.

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

BEFORE:

The NoopAnimationsModule was always imported to the render the component.

AFTER:

Import the NoopAnimationsModule in your render configuration (where needed):

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