Angular 16
https://github.com/angular/angular
16.2.0-next.1 (2023-06-28)
benchpress
| Commit | Description |
|---|---|
| correctly report GC memory amounts (#50760) |
core
| Commit | Description |
|---|---|
| expose input transform function on ComponentFactory and ComponentMirror (#50713) |
elements
| Commit | Description |
|---|---|
| support input transform functions (#50713) |
platform-browser
| Commit | Description |
|---|---|
| wait until animation completion before destroying renderer (#50677) | |
| wait until animation completion before destroying renderer (#50860) |
16.1.3 (2023-06-28)
core
| Commit | Description |
|---|---|
| expose input transform function on ComponentFactory and ComponentMirror (#50713) |
elements
| Commit | Description |
|---|---|
| support input transform functions (#50713) |
platform-browser
| Commit | Description |
|---|---|
| wait until animation completion before destroying renderer (#50677) | |
| wait until animation completion before destroying renderer (#50860) |
16.1.0 (2023-06-13)
compiler
| Commit | Description |
|---|---|
| error when reading compiled input transforms metadata in JIT mode (#50600) | |
| resolve deprecation warning with TypeScript 5.1 (#50460) |
core
| Commit | Description |
|---|---|
| add ability to transform input values (#50420) | |
| support TypeScript 5.1 (#50156) | |
| add additional component metadata to component ID generation (#50336) |
http
| Commit | Description |
|---|---|
Introduction of the fetch Backend for the HttpClient (#50247) |
16.1.0-rc.0 (2023-06-08)
compiler
| Commit | Description |
|---|---|
| do not remove comments in component styles (#50346) | |
| error when reading compiled input transforms metadata in JIT mode (#50600) |
core
| Commit | Description |
|---|---|
| incorrectly throwing error for self-referencing component (#50559) | |
wait for HTTP in ngOnInit correctly before server render (#50573) |
http
| Commit | Description |
|---|---|
Introduction of the fetch Backend for the HttpClient (#50247) |
platform-server
| Commit | Description |
|---|---|
| surface errors during rendering (#50587) |
16.0.5 (2023-06-08)
compiler
| Commit | Description |
|---|---|
| do not remove comments in component styles (#50346) |
core
| Commit | Description |
|---|---|
| incorrectly throwing error for self-referencing component (#50559) | |
wait for HTTP in ngOnInit correctly before server render (#50573) |
platform-server
| Commit | Description |
|---|---|
| surface errors during rendering (#50587) |
16.1.0-next.3 (2023-06-01)
animations
| Commit | Description |
|---|---|
| Trigger leave animation when ViewContainerRef is injected (#48705) |
common
| Commit | Description |
|---|---|
| untrack subscription and unsubscription in async pipe (#50522) |
compiler
| Commit | Description |
|---|---|
| resolve deprecation warning with TypeScript 5.1 (#50460) |
core
| Commit | Description |
|---|---|
| add ability to transform input values (#50420) | |
update ApplicationRef.isStable to account for rendering pending tasks (#50425) |
16.0.4 (2023-06-01)
animations
| Commit | Description |
|---|---|
| Trigger leave animation when ViewContainerRef is injected (#48705) |
common
| Commit | Description |
|---|---|
| untrack subscription and unsubscription in async pipe (#50522) |
core
| Commit | Description |
|---|---|
update ApplicationRef.isStable to account for rendering pending tasks (#50425) |
16.0.3 (2023-05-24)
core
http
| Commit | Description |
|---|---|
| create macrotask during request handling instead of load start (#50406) |
16.0.1 (2023-05-10)
core
16.0.0 (2023-05-03)
| Commit | Description |
|---|---|
| remove Angular Compatibility Compiler (ngcc) (#49101) | |
remove deprecated EventManager method addGlobalEventListener (#49645) |
common
compiler
compiler-cli
| Commit | Description |
|---|---|
Add an extended diagnostic for nSkipHydration (#49512) |
|
| Catch FatalDiagnosticError during template type checking (#49527) | |
| optimize NgModule emit for standalone components (#49837) |
core
forms
| Commit | Description |
|---|---|
| Improve typings form (async)Validators (#48679) |
http
migrations
| Commit | Description |
|---|---|
Migration to remove Router guard and resolver interfaces (#49337) |
platform-browser
platform-server
router
service-worker
| Commit | Description |
|---|---|
| add function to provide service worker (#48247) |
Breaking Changes
- Angular Compatibility Compiler (ngcc) has been removed and as a result Angular View Engine libraries will no longer work
- Deprecated
EventManagermethodaddGlobalEventListenerhas been removed as it is not used by Ivy.
bazel
- Several changes to the Angular Package Format (APF)
- Removal of FESM2015
- Replacing ES2020 with ES2022
- Replacing FESM2020 with FESM2022
- Several changes to the Angular Package Format (APF)
- Removal of FESM2015
- Replacing ES2020 with ES2022
- Replacing FESM2020 with FESM2022
common
MockPlatformLocationis now provided by default in tests.
Existing tests may have behaviors which rely on
BrowserPlatformLocationinstead. For example, direct access to the
window.historyin either the test or the component rather than going
through the Angular APIs (Location.getState()). The quickest fix is to
update the providers in the test suite to override the provider again
TestBed.configureTestingModule({providers: [{provide: PlatformLocation, useClass: BrowserPlatformLocation}]}).
The ideal fix would be to update the code to instead be compatible with
MockPlatformLocationinstead.- If the 'ngTemplateOutletContext' is different from the context, it will result in a compile-time error.
Before the change, the following template was compiling:
interface MyContext {
$implicit: string;
}
@Component({
standalone: true,
imports: [NgTemplateOutlet],
selector: 'person',
template: `
<ng-container
*ngTemplateOutlet="
myTemplateRef;
context: { $implicit: 'test', xxx: 'xxx' }
"></ng-container>
`,
})
export class PersonComponent {
myTemplateRef!: TemplateRef<MyContext>;
}
However, it does not compile now because the 'xxx' property does not exist in 'MyContext', resulting in the error: 'Type '{ $implicit: string; xxx: string; }' is not assignable to type 'MyContext'.'
The solution is either:
- add the 'xxx' property to 'MyContext' with the correct type or
- add '$any(...)' inside the template to make the error disappear. However, adding '$any(...)' does not correct the error but only preserves the previous behavior of the code.
- Deprecated
XhrFactoryexport from@angular/common/httphas been removed. UseXhrFactoryfrom@angular/commoninstead.
compiler
-
- TypeScript 4.8 is no longer supported.
core
-
QueryList.filter now supports type guard functions, which will result in type narrowing. Previously if you used type guard functions, it resulted in no changes to the return type. Now the type would be narrowed, which might require updates to the application code that relied on the old behavior.
-
zone.jsversions0.11.xand0.12.xare not longer supported. -
entryComponentshas been deleted from the@NgModuleand@Componentpublic APIs. Any usages can be removed since they weren't doing anyting.ANALYZE_FOR_ENTRY_COMPONENTSinjection token has been deleted. Any references can be removed.
-
ComponentRef.setInput will only set the input on the
component if it is different from the previous value (based onObject.is
equality). If code relies on the input always being set, it should be
updated to copy objects or wrap primitives in order to ensure the input
value differs from the previous call tosetInput. -
RendererType2.stylesno longer accepts a nested arrays. -
The
APP_IDtoken value is no longer randomly generated. If you are bootstrapping multiple application on the same page you will need to set to provide theAPP_IDyourself.bootstrapApplication(ComponentA, { providers: [ { provide: APP_ID, useValue: 'app-a' }, // ... other providers ... ] }); -
The
ReflectiveInjectorand related symbols were removed. Please update the code to avoid references to theReflectiveInjectorsymbol. UseInjector.createas a replacement to create an injector instead. -
Node.js v14 support has been removed
Node.js v14 is planned to be End-of-Life on 2023-04-30. Angular will stop supporting Node.js v14 in Angular v16. Angular v16 will continue to officially support Node.js versions v16 and v18.
platform-browser
- The deprecated
BrowserTransferStateModulewas removed, since it's no longer needed. TheTransferStateclass can be injected without providing the module. TheBrowserTransferStateModulewas empty starting from v14 and you can just remove the reference to that module from your applications.
platform-server
-
Users that are using SSR with JIT mode will now need to add
import to @angular/compilerbefore bootstrapping the application.NOTE: this does not effect users using the Angular CLI.
-
renderApplicationmethod no longer accepts a root component as first argument. Instead, provide a bootstrapping function that returns aPromise<ApplicationRef>.Before
const output: string = await renderApplication(RootComponent, options);Now
const bootstrap = () => bootstrapApplication(RootComponent, appConfig); const output: string = await renderApplication(bootstrap, options); -
renderModuleFactoryhas been removed. UserenderModuleinstead.
router
- The
Scrollevent'srouterEventproperty may also be
aNavigationSkippedevent. Previously, it was only aNavigationEnd
event. ComponentFactoryResolverhas been removed from Router APIs.
Component factories are not required to create an instance of a component
dynamically. Passing a factory resolver via resolver argument is no longer needed
and code can instead useViewContainerRef.createComponentwithout the
factory resolver.- The
RouterEventtype is no longer present in theEventunion type representing all router event types. If you have code using something likefilter((e: Event): e is RouterEvent => e instanceof RouterEvent), you'll need to update it tofilter((e: Event|RouterEvent): e is RouterEvent => e instanceof RouterEvent). - Tests which mock
ActivatedRouteinstances may need to be adjusted
because Router.createUrlTree now does the right thing in more
scenarios. This means that tests with invalid/incomplete ActivatedRoute mocks
may behave differently than before. Additionally, tests may now navigate
to a real URL where before they would navigate to the root. Ensure that
tests provide expected routes to match.
There is rarely production impact, but it has been found that relative
navigations when using anActivatedRoutethat does not appear in the
current router state were effectively ignored in the past. By creating
the correct URLs, this sometimes resulted in different navigation
behavior in the application. Most often, this happens when attempting to
create a navigation that only updates query params using an empty
command array, for examplerouter.navigate([], {relativeTo: route, queryParams: newQueryParams}). In this case, therelativeToproperty
should be removed.
Deprecations
core
makeStateKey,StateKeyandTransferStateexports have been moved from@angular/platform-browserto@angular/core. Please update the imports.
- import {makeStateKey, StateKey, TransferState} from '@angular/platform-browser';
+ import {makeStateKey, StateKey, TransferState} from '@angular/core';
-
EnvironmentInjector.runInContextis now deprecated, with
runInInjectionContextfunctioning as a direct replacement:// Previous method version (deprecated): envInjector.runInContext(fn); // New standalone function: runInInjectionContext(envInjector, fn); -
The
@Directive/@ComponentmoduleIdproperty is now
deprecated. It did not have any effect for multiple major versions and
will be removed in v17.
platform-browser
-
BrowserModule.withServerTransitionhas been deprecated.APP_IDshould be used instead to set the application ID.
NB: Unless, you render multiple Angular applications on the same page, setting an application ID is not necessary.Before:
imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), ... ]After:
imports: [ BrowserModule, { provide: APP_ID, useValue: 'serverApp' }, ... ], -
ApplicationConfighas moved, please importApplicationConfigfrom@angular/coreinstead.
platform-server
PlatformConfig.baseUrlandPlatformConfig.useAbsoluteUrlplatform-server config options are deprecated as these were not used.
16.0.0-rc.4 (2023-05-01)
common
| Commit | Description |
|---|---|
| fix incorrectly reported distortion for padded images (#49889) |
compiler-cli
| Commit | Description |
|---|---|
| catch fatal diagnostic when getting diagnostics for components (#50046) |
platform-server
| Commit | Description |
|---|---|
remove dependency on @angular/platform-browser-dynamic (#50064) |
Breaking Changes
platform-server
-
Users that are using SSR with JIT mode will now need to add
import to @angular/compilerbefore bootstrapping the application.NOTE: this does not effect users using the Angular CLI.
16.0.0-rc.3 (2023-04-27)
core
| Commit | Description |
|---|---|
| add newline to hydration mismatch error (#49965) | |
| ensure takeUntilDestroyed unregisters onDestroy listener on unsubscribe (#49901) | |
| typing of TestBed Common token. (#49997) |
platform-browser
| Commit | Description |
|---|---|
export deprecated TransferState as type (#50015) |
16.0.0-rc.2 (2023-04-19)
compiler-cli
| Commit | Description |
|---|---|
| optimize NgModule emit for standalone components (#49837) |
core
router
| Commit | Description |
|---|---|
| canceledNavigationResolution: 'computed' with redirects to the current URL (#49793) |
16.0.0-rc.1 (2023-04-14)
core
| Commit | Description |
|---|---|
| error if document body is null (#49818) | |
| Fix capitalization of toObservableOptions (#49832) | |
| onDestroy should be registered only on valid DestroyRef (#49804) |
http
| Commit | Description |
|---|---|
| HTTP cache was being disabled prematurely (#49826) | |
| prevent headers from throwing an error when initializing numerical values (#49379) |
Special Thanks
Alan Agius, Andrew Kushnir, Andrew Scott, Danilo Bassi, Kristiyan Kostadinov, Matthieu Riegler, Pawel Kozlowski and Payam Valadkhan
16.0.0-rc.0 (2023-04-12)
compiler
| Commit | Description |
|---|---|
| incorrectly matching directives on attribute bindings (#49713) | |
| Produce diagnositc if directive used in host binding is not exported (#49527) |
compiler-cli
| Commit | Description |
|---|---|
| Catch FatalDiagnosticError during template type checking (#49527) |
core
http
router
| Commit | Description |
|---|---|
| fix = not parsed in router segment name (#47332) |
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Brandon Roberts, De Wildt, Jessica Janiuk, Joey Perrott, Kristiyan Kostadinov, Matthieu Riegler, Nikola Kološnjaji, Paul Gschwendtner, Pawel Kozlowski and dewildt
16.0.0-next.7 (2023-04-05)
Breaking Changes
core
- QueryList.filter now supports type guard functions, which will result in type narrowing. Previously if you used type guard functions, it resulted in no changes to the return type. Now the type would be narrowed, which might require updates to the application code that relied on the old behavior.
- The
ReflectiveInjectorand related symbols were removed. Please update the code to avoid references to theReflectiveInjectorsymbol. UseInjector.createas a replacement to create an injector instead.
platform-browser
- The deprecated
BrowserTransferStateModulewas removed, since it's no longer needed. TheTransferStateclass can be injected without providing the module. TheBrowserTransferStateModulewas empty starting from v14 and you can just remove the reference to that module from your applications.
core
http
| Commit | Description |
|---|---|
allow HttpClient to cache requests (#49509) |
platform-browser
platform-server
| Commit | Description |
|---|---|
rename provideServerSupport to provideServerRendering (#49678) |
router
| Commit | Description |
|---|---|
| create correct URL relative to path with empty child (#49691) |
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Charles Lyding, Dylan Hunn, Guillaume Weghsteen, Jessica Janiuk, JoostK, Matthieu Riegler, Pawel Kozlowski, Robin Richtsfeld, Sandra Limacher and vikram menon
16.0.0-next.6 (2023-04-03)
Breaking Changes
- Deprecated
EventManagermethodaddGlobalEventListenerhas been removed as it is not used by Ivy.
| Commit | Description |
|---|---|
remove deprecated EventManager method addGlobalEventListener (#49645) |
core
forms
| Commit | Description |
|---|---|
| Improve typings form (async)Validators (#48679) |
router
| Commit | Description |
|---|---|
Opt-in for binding Router information to component inputs (#49633) |
|
| Ensure initial navigation clears current navigation when blocking (#49572) |
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, John Manners, Johnny Gérard, Kristiyan Kostadinov, Matthieu Riegler, Pawel Kozlowski, Sarthak Thakkar and Vinit Neogi
16.0.0-next.5 (2023-03-29)
Breaking Changes
bazel
- Several changes to the Angular Package Format (APF)
- Removal of FESM2015
- Replacing ES2020 with ES2022
- Replacing FESM2020 with FESM2022
- Several changes to the Angular Package Format (APF)
- Removal of FESM2015
- Replacing ES2020 with ES2022
- Replacing FESM2020 with FESM2022
common
- If the 'ngTemplateOutletContext' is different from the context, it will result in a compile-time error.
Before the change, the following template was compiling:
interface MyContext {
$implicit: string;
}
@Component({
standalone: true,
imports: [NgTemplateOutlet],
selector: 'person',
template: `
<ng-container
*ngTemplateOutlet="
myTemplateRef;
context: { $implicit: 'test', xxx: 'xxx' }
"></ng-container>
`,
})
export class PersonComponent {
myTemplateRef!: TemplateRef<MyContext>;
}
However, it does not compile now because the 'xxx' property does not exist in 'MyContext', resulting in the error: 'Type '{ $implicit: string; xxx: string; }' is not assignable to type 'MyContext'.'
The solution is either:
- add the 'xxx' property to 'MyContext' with the correct type or
- add '$any(...)' inside the template to make the error disappear. However, adding '$any(...)' does not correct the error but only preserves the previous behavior of the code.
core
-
entryComponentshas been deleted from the@NgModuleand@Componentpublic APIs. Any usages can be removed since they weren't doing anyting.ANALYZE_FOR_ENTRY_COMPONENTSinjection token has been deleted. Any references can be removed.
- ComponentRef.setInput will only set the input on the
component if it is different from the previous value (based onObject.is
equality). If code relies on the input always being set, it should be
updated to copy objects or wrap primitives in order to ensure the input
value differs from the previous call tosetInput.
Deprecations
core
makeStateKey,StateKeyandTransferStateexports have been moved from@angular/platform-browserto@angular/core. Please update the imports.
- import {makeStateKey, StateKey, TransferState} from '@angular/platform-browser';
+ import {makeStateKey, StateKey, TransferState} from '@angular/core';
- The
@Directive/@ComponentmoduleIdproperty is now
deprecated. It did not have any effect for multiple major versions and
will be removed in v17.
platform-server
PlatformConfig.baseUrlandPlatformConfig.useAbsoluteUrlplatform-server config options are deprecated as these were not used.
common
| Commit | Description |
|---|---|
| invalid ImageKit transformation (#49201) | |
| strict type checking for ngtemplateoutlet (#48374) |
compiler
| Commit | Description |
|---|---|
| do not unquote CSS values (#49460) | |
| handle trailing comma in object literal (#49535) |
compiler-cli
| Commit | Description |
|---|---|
Add an extended diagnostic for nSkipHydration (#49512) |
core
http
| Commit | Description |
|---|---|
| force macro task creation during HTTP request (#49546) |
migrations
| Commit | Description |
|---|---|
Migration to remove Router guard and resolver interfaces (#49337) |
platform-browser
| Commit | Description |
|---|---|
| set nonce attribute in a platform compatible way (#49624) |
platform-server
| Commit | Description |
|---|---|
deprecate useAbsoluteUrl and baseUrl (#49546) |
router
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Asaf Malin, Jan Cabadaj, Jessica Janiuk, JiaLiPassion, Kristiyan Kostadinov, Matthieu Riegler, Paul Gschwendtner, Pawel Kozlowski, Sid, Tano Abeleyra and tomalaforge
16.0.0-next.4 (2023-03-22)
Breaking Changes
platform-server
-
renderApplicationmethod no longer accepts a root component as first argument. Instead, provide a bootstrapping function that returns aPromise<ApplicationRef>.Before
const output: string = await renderApplication(RootComponent, options);Now
const bootstrap = () => bootstrapApplication(RootComponent, appConfig); const output: string = await renderApplication(bootstrap, options);
compiler
| Commit | Description |
|---|---|
| add support for compile-time required inputs (#49453) | |
| add support for compile-time required inputs (#49468) |
core
migrations
| Commit | Description |
|---|---|
| preserve trailing commas in code generated by standalone migration (#49533) |
platform-browser
| Commit | Description |
|---|---|
only add ng-app-id to style on server side (#49465) |
platform-server
| Commit | Description |
|---|---|
remove renderApplication overload that accepts a component (#49463) |
Special Thanks
Aditya Srinivasan, Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Jessica Janiuk, Kristiyan Kostadinov, Masaoki Kobayashi, Matthieu Riegler, Paul Gschwendtner, Pawel Kozlowski, Peter Götz, Thomas Pischke, Virginia Dooley and avmaxim
16.0.0-next.3 (2023-03-16)
Breaking Changes
core
-
The
APP_IDtoken value is no longer randomly generated. If you are bootstrapping multiple application on the same page you will need to set to provide theAPP_IDyourself.bootstrapApplication(ComponentA, { providers: [ { provide: APP_ID, useValue: 'app-a' }, // ... other providers ... ] });
router
ComponentFactoryResolverhas been removed from Router APIs.
Component factories are not required to create an instance of a component
dynamically. Passing a factory resolver via resolver argument is no longer needed
and code can instead useViewContainerRef.createComponentwithout the
factory resolver.
Deprecations
core
-
EnvironmentInjector.runInContextis now deprecated, with
runInInjectionContextfunctioning as a direct replacement:// Previous method version (deprecated): envInjector.runInContext(fn); // New standalone function: runInInjectionContext(envInjector, fn);
platform-browser
-
BrowserModule.withServerTransitionhas been deprecated.APP_IDshould be used instead to set the application ID.
NB: Unless, you render multiple Angular applications on the same page, setting an application ID is not necessary.Before:
imports: [ BrowserModule.withServerTransition({ appId: 'serverApp' }), ... ]After:
imports: [ BrowserModule, { provide: APP_ID, useValue: 'serverApp' }, ... ],
compiler
| Commit | Description |
|---|---|
| add support for compile-time required inputs (#49304) |
core
| Commit | Description |
|---|---|
introduce runInInjectionContext and deprecate prior version (#49396) |
|
| generate consistent component IDs (#48253) | |
| generate a static application ID (#49422) |
platform-browser
| Commit | Description |
|---|---|
deprecate withServerTransition call (#49422) |
|
| reuse server generated component styles (#48253) |
platform-server
| Commit | Description |
|---|---|
add provideServerSupport function to provide server capabilities to an application (#49380) |
router
| Commit | Description |
|---|---|
| Remove deprecated ComponentFactoryResolver from APIs (#49239) |
service-worker
| Commit | Description |
|---|---|
| add function to provide service worker (#48247) |
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Esteban Gehring, Jessica Janiuk, JiaLiPassion, Julien Saguet, Kristiyan Kostadinov, Matthieu Riegler, Paul Gschwendtner and Virginia Dooley
16.0.0-next.2 (2023-03-08)
Breaking Changes
common
- Deprecated
XhrFactoryexport from@angular/common/httphas been removed. UseXhrFactoryfrom@angular/commoninstead.
core
zone.jsversions0.11.xand0.12.xare not longer supported.
platform-server
renderModuleFactoryhas been removed. UserenderModuleinstead.
Deprecations
platform-browser
ApplicationConfighas moved, please importApplicationConfigfrom@angular/coreinstead.
common
| Commit | Description |
|---|---|
remove deprecated XhrFactory export from http entrypoint (#49251) |
compiler
| Commit | Description |
|---|---|
support multiple configuration files in extends (#49125) |
core
| Commit | Description |
|---|---|
add mergeApplicationConfig method (#49253) |
|
drop support for zone.js versions <=0.12.0 (#49331) |
migrations
| Commit | Description |
|---|---|
| add protractor support if protractor imports are detected (#49274) |
platform-browser
| Commit | Description |
|---|---|
| KeyEventsPlugin should keep the same behavior (#49330) | |
move ApplicationConfig to core (#49253) |
platform-server
| Commit | Description |
|---|---|
renderApplication now accepts a bootstrapping method (#49248) |
|
remove deprecated renderModuleFactory (#49247) |
router
| Commit | Description |
|---|---|
Expose information about the last successful Navigation (#49235) |
Special Thanks
Alan Agius, Andrew Kushnir, Andrew Scott, Dylan Hunn, Jessica Janiuk, JiaLiPassion, Kristiyan Kostadinov, Matthieu Riegler, Paul Gschwendtner, Sai Kartheek Bommisetty and Vinit Neogi
16.0.0-next.1 (2023-03-01)
Breaking Changes
compiler
-
- TypeScript 4.8 is no longer supported.
core
-
Node.js v14 support has been removed
Node.js v14 is planned to be End-of-Life on 2023-04-30. Angular will stop supporting Node.js v14 in Angular v16. Angular v16 will continue to officially support Node.js versions v16 and v18.
router
- Tests which mock
ActivatedRouteinstances may need to be adjusted
because Router.createUrlTree now does the right thing in more
scenarios. This means that tests with invalid/incomplete ActivatedRoute mocks
may behave differently than before. Additionally, tests may now navigate
to a real URL where before they would navigate to the root. Ensure that
tests provide expected routes to match.
There is rarely production impact, but it has been found that relative
navigations when using anActivatedRoutethat does not appear in the
current router state were effectively ignored in the past. By creating
the correct URLs, this sometimes resulted in different navigation
behavior in the application. Most often, this happens when attempting to
create a navigation that only updates query params using an empty
command array, for examplerouter.navigate([], {relativeTo: route, queryParams: newQueryParams}). In this case, therelativeToproperty
should be removed.
common
| Commit | Description |
|---|---|
| make Location.normalize() return the correct path when the base path contains characters that interfere with regex syntax. (#49181) |
compiler
| Commit | Description |
|---|---|
| drop support for TypeScript 4.8 (#49155) |
compiler-cli
| Commit | Description |
|---|---|
| do not persist component analysis if template/styles are missing (#49184) |
core
| Commit | Description |
|---|---|
| add support for TypeScript 5.0 (#49126) | |
| introduce concept of DestroyRef (#49158) | |
| update zone.js peerDependencies ranges (#49244) | |
| remove Node.js v14 support (#49255) |
migrations
| Commit | Description |
|---|---|
| avoid migrating the same class multiple times in standalone migration (#49245) | |
| delete barrel exports in standalone migration (#49176) |
platform-server
| Commit | Description |
|---|---|
| bundle @angular/domino in via esbuild (#49229) |
router
Special Thanks
Alan Agius, Andrew Kushnir, Andrew Scott, Aristeidis Bampakos, Craig Spence, Doug Parker, Iván Navarro, Jessica Janiuk, JiaLiPassion, Joey Perrott, Kristiyan Kostadinov, Matthieu Riegler, Michael Ziluck, Paul Gschwendtner, Pawel Kozlowski, Stephanie Tuerk, Vincent and Virginia Dooley
16.0.0-next.0 (2023-02-22)
Breaking Changes
- Angular Compatibility Compiler (ngcc) has been removed and as a result Angular View Engine libraries will no longer work
common
MockPlatformLocationis now provided by default in tests.
Existing tests may have behaviors which rely on
BrowserPlatformLocationinstead. For example, direct access to the
window.historyin either the test or the component rather than going
through the Angular APIs (Location.getState()). The quickest fix is to
update the providers in the test suite to override the provider again
TestBed.configureTestingModule({providers: [{provide: PlatformLocation, useClass: BrowserPlatformLocation}]}).
The ideal fix would be to update the code to instead be compatible with
MockPlatformLocationinstead.
core
RendererType2.stylesno longer accepts nested arrays.
router
- The
Scrollevent'srouterEventproperty may also be
aNavigationSkippedevent. Previously, it was only aNavigationEnd
event. - The
RouterEventtype is no longer present in theEventunion type representing all router event types. If you have code using something likefilter((e: Event): e is RouterEvent => e instanceof RouterEvent), you'll need to update it tofilter((e: Event|RouterEvent): e is RouterEvent => e instanceof RouterEvent).
| Commit | Description |
|---|---|
| remove Angular Compatibility Compiler (ngcc) (#49101) |
common
| Commit | Description |
|---|---|
| Provide MockPlatformLocation by default in BrowserTestingModule (#49137) |
core
| Commit | Description |
|---|---|
| add Angular Signals to the public API (#49150) | |
change RendererType2.styles to accept only a flat array (#49072) |
router
| Commit | Description |
|---|---|
| Ensure anchor scrolling happens on ignored same URL navigations (#48025) | |
| remove RouterEvent from Event union type (#46061) |
Special Thanks
Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Cédric Exbrayat, Joey Perrott, Mladen Jakovljević and Pawel Kozlowski