Releases: testing-library/angular-testing-library
Releases · testing-library/angular-testing-library
v13.0.0-beta.3
22 Nov 18:30
Compare
Sorry, something went wrong.
No results found
Bug Fixes
don't invoke ngOnChanges when no properties are provided (#326 ) (3fe94da ), closes #323
BREAKING CHANGES
This change is made to have the same behavior as the run time behavior.
BEFORE:
The ngOnChanges lifecycle is always invoked when a component is rendered.
AFTER:
The ngOnChanges lifecycle is only invoked if a component is rendered with componentProperties.
v13.0.0-beta.2
21 Nov 18:55
Compare
Sorry, something went wrong.
No results found
v13.0.0-beta.1
21 Nov 17:44
Compare
Sorry, something went wrong.
No results found
Features
rename ɵcomponentImports to componentImports (bff8acb )
update to Angular 15 (71184b7 )
BREAKING CHANGES
The render property ɵcomponentImports is not experimental anymore, and is renamed to componentImports
BEFORE:
render(ParentComponent, {
ɵcomponentImports: [ChildComponent],
});
AFTER:
render(ParentComponent, {
componentImports: [ChildComponent],
});
v12.1.2
22 Aug 11:15
Compare
Sorry, something went wrong.
No results found
v12.1.1
01 Aug 16:42
Compare
Sorry, something went wrong.
No results found
v12.1.0
06 Jul 10:17
Compare
Sorry, something went wrong.
No results found
12.1.0 (2022-07-06)
Features
support componentImports option for standalone components (experimental) (#307 ) (459b500 )
v12.0.2
13 Jun 17:37
Compare
Sorry, something went wrong.
No results found
v12.0.1
10 Jun 08:12
Compare
Sorry, something went wrong.
No results found
12.0.1 (2022-06-10)
Bug Fixes
jest-utils: use official secondary package format (#300 ) (0db3a5c ), closes #299
v12.0.0
09 Jun 05:50
Compare
Sorry, something went wrong.
No results found
12.0.0 (2022-06-09)
Features
BREAKING CHANGES
This version requires Angular v14+
v11.0.4
22 Mar 07:48
Compare
Sorry, something went wrong.
No results found
11.0.4 (2022-03-22)
Bug Fixes
invoke initialNavigation if it's a method (6e4723b )