Skip to content

Commit 115aafb

Browse files
committed
release: cut the v14.0.0-next.10 release (angular#45484)
PR Close angular#45484
1 parent e1e440d commit 115aafb

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,61 @@
1+
<a name="14.0.0-next.10"></a>
2+
# 14.0.0-next.10 (2022-03-30)
3+
## Breaking Changes
4+
### compiler
5+
- Keyframes names are now prefixed with the component's "scope name".
6+
For example, the following keyframes rule in a component definition,
7+
whose "scope name" is host-my-cmp:
8+
9+
@keyframes foo { ... }
10+
11+
will become:
12+
13+
@keyframes host-my-cmp_foo { ... }
14+
15+
Any TypeScript/JavaScript code which relied on the names of keyframes rules
16+
will no longer match.
17+
18+
The recommended solutions in this case are to either:
19+
- change the component's view encapsulation to the `None` or `ShadowDom`
20+
- define keyframes rules in global stylesheets (e.g styles.css)
21+
- define keyframes rules programmatically in code.
22+
### http
23+
- JSONP will throw an error when headers are set on a reques
24+
25+
JSONP does not support headers being set on requests. Before when
26+
a request was sent to a JSONP backend that had headers set the headers
27+
were ignored. The JSONP backend will now throw an error if it
28+
receives a request that has any headers set. Any uses of JSONP
29+
on requests with headers set will need to remove the headers
30+
to avoid the error.
31+
### compiler
32+
| Commit | Type | Description |
33+
| -- | -- | -- |
34+
| [f03e313f24](https://github.com/angular/angular/commit/f03e313f24465cbe9ce99aa5f9f482a6c6b5485f) | fix | scope css keyframes in emulated view encapsulation ([#42608](https://github.com/angular/angular/pull/42608)) |
35+
### compiler-cli
36+
| Commit | Type | Description |
37+
| -- | -- | -- |
38+
| [2142ffd295](https://github.com/angular/angular/commit/2142ffd295de491eb8582c2eb1712b5b48044f24) | feat | propagate `standalone` flag to runtime ([#44973](https://github.com/angular/angular/pull/44973)) |
39+
| [6f653e05f9](https://github.com/angular/angular/commit/6f653e05f985141ae4d2d90af78b2bc001595661) | feat | standalone types imported into NgModule scopes ([#44973](https://github.com/angular/angular/pull/44973)) |
40+
| [3d13343975](https://github.com/angular/angular/commit/3d133439754cbf5d5a20bb3c714c8673c848e465) | fix | better error messages for NgModule structural issues ([#44973](https://github.com/angular/angular/pull/44973)) |
41+
| [06050ac2b4](https://github.com/angular/angular/commit/06050ac2b4937836096fb331ec71bacb5a1fc231) | fix | handle inline type-check blocks in nullish coalescing extended check ([#45454](https://github.com/angular/angular/pull/45454)) |
42+
### core
43+
| Commit | Type | Description |
44+
| -- | -- | -- |
45+
| [d36fa111eb](https://github.com/angular/angular/commit/d36fa111eb677d504a9952d8b4ca53560cadd04d) | fix | avoid Closure Compiler error in restoreView ([#45445](https://github.com/angular/angular/pull/45445)) |
46+
### forms
47+
| Commit | Type | Description |
48+
| -- | -- | -- |
49+
| [b36dec6b5b](https://github.com/angular/angular/commit/b36dec6b5b05de0d40581726c59db9f962a97124) | fix | not picking up disabled state if group is swapped out and disabled ([#43499](https://github.com/angular/angular/pull/43499)) |
50+
### http
51+
| Commit | Type | Description |
52+
| -- | -- | -- |
53+
| [d43c0e973f](https://github.com/angular/angular/commit/d43c0e973f4389c74eb19a7f6b667bd2e1d380fe) | fix | Throw error when headers are supplied in JSONP request ([#45210](https://github.com/angular/angular/pull/45210)) |
54+
## Special Thanks
55+
Alex Rickabaugh, AlirezaEbrahimkhani, Andrew Kushnir, Andrew Scott, Dylan Hunn, JiaLiPassion, JoostK, Kristiyan Kostadinov, Maddie Klein, Michael-Doner, Paul Gschwendtner, Willian Corrêa, arturovt, dario-piotrowicz and zverbeta
56+
57+
<!-- CHANGELOG SPLIT MARKER -->
58+
159
<a name="14.0.0-next.9"></a>
260
# 14.0.0-next.9 (2022-03-25)
361
## Special Thanks

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": "14.0.0-next.9",
3+
"version": "14.0.0-next.10",
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)