Skip to content

v11.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Nov 20:46
0e5e3c7

11.0.0-beta.2 (2021-11-24)

Features

BREAKING CHANGES

  • rerender has been renamed to change.
    The change method keeps the current fixture intact and invokes ngOnChanges.

The new rerender method destroys the current component and creates a new instance with the updated properties.

BEFORE:

const { rerender } = render(...)
rerender({...})

AFTER:

const { change } = render(...)
change({...})