common
Commit | Description |
---|---|
improve typing of ngComponentOutletContent (#63674)
|
compiler
Commit | Description |
---|---|
Add support for aria-invalid (#63748)
|
compiler-cli
Commit | Description |
---|---|
only bind inputs that are part of microsyntax to a structural directive (#52453) | |
remove internal syntax-related flags (#63787) | |
signal not invoked diagnostic not raised when input has same name in template (#63754) |
core
Commit | Description |
---|---|
Add migration for zoneless by default. (#63042) | |
support regular expressions in templates (#63857) | |
Drop special-case disables automatic change detection scheduling (#63846) | |
prevent animation events from being cleaned up on destroy (#63414) | |
Prevent leave animations on a move operation (#63745) | |
Remove Zone-based change provider from internals by default (#63382) | |
remove moduleId from Component metadata (#63482)
| |
remove deprecated interpolation option on Components. (#63474)
|
forms
Commit | Description |
---|---|
Prevents marking fields as touched/dirty when state is hidden/readonly/disabled (#63633) |
migrations
Commit | Description |
---|---|
add migration to convert ngStyle to use style (#63517) | |
fix route-lazy-loading migration (#63818) |
Breaking Changes
common
ngComponentOutletContent
is now of typeNode[][] | undefined
instead ofany[][] | undefined
.
core
- Using a combination of
provideZoneChangeDetection
while also removing ZoneJS polyfills will no longer result in the
internal scheduler being disabled. All Angular applications now
consistenly use the same scheduler, and those with the Zone change detection
provider include additional automatic scheduling behaviors based on
NgZone stabilization. - Angular no longer provides a change detection scheduler
for ZoneJS-based change detection by default. Add
provideZoneChangeDetection
to the providers of your
bootstrapApplication
function or yourAppModule
(if using
bootstrapModule
). This provider addition will be covered by an
automated migration. moduleId
was removed fromComponent
metadata.- The
interpolation
option on Components has been removed. Only the default{{ ... }}
is now supported.