Commit | Description |
---|---|
step 6 tutorial docs (#60630) |
animations
Commit | Description |
---|---|
add missing peer dependency on @angular/common (#60660)
|
compiler
Commit | Description |
---|---|
error if rawText isn't estimated correctly (#60529) | |
throw for invalid "as" expression in if block (#60580) |
compiler-cli
Commit | Description |
---|---|
correctly parse event name in HostListener (#60561) | |
Produce fatal diagnostic on duplicate decorated properties (#60376) | |
set correct target when type checking events (#60561) | |
support relative imports to symbols outside rootDir (#60555)
|
core
Commit | Description |
---|---|
export signalGetFn from signal primitives (#60497) | |
move DOCUMENT token into core (#60663) | |
update Node.js version support (#60545) | |
call DestroyRef on destroy callback if view is destroyed (#58008)
| |
check ngDevMode for undefined (#60565) | |
Ensure errors in listeners report to the application error handler (#60251) | |
fix ng generate @angular/core:output-migration (#60626) | |
fix regexp for event types (#60592) | |
fixes #592882 ng generate @angular/core:signal-queries-migration (#60688) | |
preserve comments in internal inject migration (#60588) | |
prevent omission of deferred pipes in full compilation (#60571) | |
release hasPendingTasks observers (#59723)
| |
remove forceRoot flag for effects (#60535)
| |
run root effects in creation order (#60534) | |
Deprecate the structural directives ngIf /ngFor /ngSwitch . (#60492)
|
forms
Commit | Description |
---|---|
add markAllAsDirty to AbstractControl (#58663) | |
Allow to reset a form without emitting events (#60354) |
language-service
Commit | Description |
---|---|
Update adapter to log instead of throw errors (#60651) |
migrations
Commit | Description |
---|---|
handle shorthand assignments in super call (#60602) | |
inject migration not handling super parameter referenced via this (#60602) |
router
Commit | Description |
---|---|
Add ability to directly abort a navigation (#60380) | |
support custom elements for RouterLink (#60290) | |
Add missing types to transition (#60307) | |
Remove 'any' type from route guards (#60378) |
service-worker
Commit | Description |
---|---|
assign initializing client's app version, when a request is for worker script (#58131) |
Breaking Changes
core
-
- Angular no longer supports Node.js v18.
- Node.js versions 22.0 to 22.10 are also no longer supported.
Before upgrading to Angular v20, ensure the Node.js version is at least 20.11.1.
For the full list of supported versions, visit: https://angular.dev/reference/versions -
Uncaught errors in listeners which were previously only reported to
ErrorHandler
are now also reported to Angular's internal error
handling machinery. For tests, this means that the error will be
rethrown by default rather than only logging the error. Developers
should fix these errors, catch them in the test if the test is
intentionally covering an error case, or userethrowApplicationErrors: false
inconfigureTestingModule
as a last resort.
router
- The guards arrays on
Route
no longer includeany
in
the type union. The union includes functions for the functional guards
as well as a type matchingInjector.get
:ProviderToken<T>|string
.
Note that string is still deprecated on both the route guards and
Injector.get
.
Deprecations
core
ngIf
/ngFor
/ngSwitch
are deprecated. Use the control flow blocks instead (@for
/@if
/@switch
).