Skip to content

Commit 9da7ea9

Browse files
release: cut the v12.0.0-next.6 release (angular#41337)
1 parent 3177d63 commit 9da7ea9

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# 12.0.0-next.6 (2021-03-24)
2+
3+
4+
### Bug Fixes
5+
6+
* **animations:** cleanup DOM elements when the root view is removed ([#41059](https://github.com/angular/angular/issues/41059)) ([c49b280](https://github.com/angular/angular/commit/c49b28013a6c017c9afc73bbc00bb4fdcf15c70e))
7+
* **compiler-cli:** add `useInlining` option to type check config ([#41043](https://github.com/angular/angular/issues/41043)) ([09aefd2](https://github.com/angular/angular/commit/09aefd29045db77689f4dc16a6abae09a79cfb81)), closes [#40963](https://github.com/angular/angular/issues/40963)
8+
* **core:** detect synthesized constructors that have been downleveled using TS 4.2 ([#41305](https://github.com/angular/angular/issues/41305)) ([274dc15](https://github.com/angular/angular/commit/274dc15452739e4fab2f647804a64d5b797cfed5)), closes [#41298](https://github.com/angular/angular/issues/41298)
9+
* **ngcc:** detect synthesized constructors that have been downleveled using TS 4.2 ([#41305](https://github.com/angular/angular/issues/41305)) ([8d3da56](https://github.com/angular/angular/commit/8d3da56eda12070df1fb473c8609f3a94d77bfd6)), closes [#41298](https://github.com/angular/angular/issues/41298)
10+
* **router:** fragment can be null ([#37336](https://github.com/angular/angular/issues/37336)) ([b555160](https://github.com/angular/angular/commit/b5551609fe02787641bdfdb0a6edfded413a3b52)), closes [#23894](https://github.com/angular/angular/issues/23894) [#34197](https://github.com/angular/angular/issues/34197)
11+
12+
13+
### Features
14+
15+
* **router:** add migration for ActivatedRouteSnapshot.fragment ([#41092](https://github.com/angular/angular/issues/41092)) ([190fa07](https://github.com/angular/angular/commit/190fa07b9a416defb581d2bf76d1deef7baefce6)), closes [#37336](https://github.com/angular/angular/issues/37336)
16+
17+
18+
### BREAKING CHANGES
19+
20+
* **animations:** DOM elements are now correctly removed when the root view is removed.
21+
If you are using SSR and use the app's HTML for rendering, you will need
22+
to ensure that you save the HTML to a variable before destorying the
23+
app.
24+
It is also possible that tests could be accidentally relying on the old behavior by
25+
trying to find an element that was not removed in a previous test. If
26+
this is the case, the failing tests should be updated to ensure they
27+
have proper setup code which initializes elements they rely on.
28+
* **router:** Strict null checks will report on fragment potentially being null.
29+
Migration path: add null check.
30+
31+
32+
133
## 11.2.7 (2021-03-24)
234

335

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-srcs",
3-
"version": "12.0.0-next.5",
3+
"version": "12.0.0-next.6",
44
"private": true,
55
"description": "Angular - a web framework for modern web apps",
66
"homepage": "https://github.com/angular/angular",

0 commit comments

Comments
 (0)