ngxs-labs / emitter

:octopus: New pattern that provides the opportunity to feel free from actions
MIT License
110 stars 5 forks source link

chore(deps): update @angular to v14 #776

Open renovate[bot] opened 2 years ago

renovate[bot] commented 2 years ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/common ^13.3.11 -> ^14.0.2 age adoption passing confidence
@angular/compiler ^13.3.11 -> ^14.0.2 age adoption passing confidence
@angular/core ^13.3.11 -> ^14.0.2 age adoption passing confidence
@angular/platform-browser ^13.3.11 -> ^14.0.2 age adoption passing confidence
@angular/platform-browser-dynamic ^13.3.11 -> ^14.0.2 age adoption passing confidence

Release Notes

angular/angular ### [`v14.0.2`](https://togithub.com/angular/angular/blob/HEAD/CHANGELOG.md#​1402-2022-06-15) [Compare Source](https://togithub.com/angular/angular/compare/14.0.1...14.0.2) ##### common | Commit | Type | Description | | -- | -- | -- | | [ef5cba3df7](https://togithub.com/angular/angular/commit/ef5cba3df783691433fe918f8f3c05878784c0f8) | fix | allow null in ngComponentOutlet ([#​46280](https://togithub.com/angular/angular/pull/46280)) | ##### compiler-cli | Commit | Type | Description | | -- | -- | -- | | [8ecfd71fd7](https://togithub.com/angular/angular/commit/8ecfd71fd7a44628500668fbb59fdc08de8b8140) | fix | don't emit empty providers array ([#​46301](https://togithub.com/angular/angular/pull/46301)) | | [b92c1a6ada](https://togithub.com/angular/angular/commit/b92c1a6adada5923b1fd69e24560ae5bfd67dd5a) | fix | use inline type-check blocks for components outside `rootDir` ([#​46096](https://togithub.com/angular/angular/pull/46096)) | ##### core | Commit | Type | Description | | -- | -- | -- | | [3fd8948b4a](https://togithub.com/angular/angular/commit/3fd8948b4a04dc504be3d4dd751a5554673423bb) | fix | Resolve forwardRef declarations for jit ([#​46334](https://togithub.com/angular/angular/pull/46334)) | #### Special Thanks Alex Rickabaugh, Andrew Scott, Badawi7, Daniel Schmitz, Derek Cormier, JoostK, Kevin Davila, Kristiyan Kostadinov, Paul Draper, Paul Gschwendtner, Tom Eustace, Totati, Younes Jaaidi, alefra, dario-piotrowicz, markostanimirovic, mgechev, piyush132000, sten-bone and vivekkoya ### [`v14.0.1`](https://togithub.com/angular/angular/blob/HEAD/CHANGELOG.md#​1401-2022-06-08) [Compare Source](https://togithub.com/angular/angular/compare/14.0.0...14.0.1) ##### bazel | Commit | Type | Description | | -- | -- | -- | | [b00d237c0e](https://togithub.com/angular/angular/commit/b00d237c0ef726bdc262d81bcc3a3cb33181dbd9) | fix | update API extractor version ([#​46259](https://togithub.com/angular/angular/pull/46259)) | | [9a0a7bac21](https://togithub.com/angular/angular/commit/9a0a7bac21decae7662a8a2ec9488f60daa97e10) | perf | reduce input files for `ng_package` rollup and type bundle actions ([#​46187](https://togithub.com/angular/angular/pull/46187)) | ##### forms | Commit | Type | Description | | -- | -- | -- | | [dde0b7f4b3](https://togithub.com/angular/angular/commit/dde0b7f4b3bc658b67a97644c8655252803be663) | fix | allow FormBuilder.group(...) to accept optional fields. ([#​46253](https://togithub.com/angular/angular/pull/46253)) | #### Special Thanks Adrien Crivelli, Alan Agius, Alex Rickabaugh, Andrew Kushnir, Andrew Scott, Dylan Hunn, Fabrizio Fallico, George Kalpakas, Jelle Bruisten, JoostK, Kristiyan Kostadinov, Krzysztof Platis, Paul Gschwendtner, Phalgun Vaddepalli, San Leen, dario-piotrowicz, mgechev and wellWINeo ### [`v14.0.0`](https://togithub.com/angular/angular/blob/HEAD/CHANGELOG.md#​1400-2022-06-02) [Compare Source](https://togithub.com/angular/angular/compare/13.3.11...14.0.0) [Blog post "Angular v14 is now available"](http://goo.gle/angular-v14). #### Breaking Changes ##### animations - The `AnimationDriver.getParentElement` method has become required, so any implementors of this interface are now required to provide an implementation for this method. This breakage is unlikely to affect application developers, as `AnimationDriver` is not expected to be implemented in user code. ##### common - Adds new required class member that any implementors of the LocationStrategy will need to satisfy. Location does not depend on PlatformLocation anymore. ##### compiler - Keyframes names are now prefixed with the component's "scope name". For example, the following keyframes rule in a component definition, whose "scope name" is host-my-cmp: [@​keyframes](https://togithub.com/keyframes) foo { ... } will become: [@​keyframes](https://togithub.com/keyframes) host-my-cmp_foo { ... } Any TypeScript/JavaScript code which relied on the names of keyframes rules will no longer match. The recommended solutions in this case are to either: - change the component's view encapsulation to the `None` or `ShadowDom` - define keyframes rules in global stylesheets (e.g styles.css) - define keyframes rules programmatically in code. ##### core - Support for Node.js v12 has been removed as it will become EOL on 2022-04-30. Please use Node.js v14.15 or later. - TypeScript versions older than 4.6 are no longer supported. - Forms \[email] input coercion Forms \[email] input value will be considered as true if it is defined with any value rather than false and 'false'. - Since Ivy, TestBed doesn't use AOT summaries. The `aotSummaries` fields in TestBed APIs were present, but unused. The fields were deprecated in previous major version and in v14 those fields are removed. The `aotSummaries` fields were completely unused, so you can just drop them from the TestBed APIs usage. ##### forms - Forms classes accept a generic. Forms model classes now accept a generic type parameter. Untyped versions of these classes are available to opt-out of the new, stricter behavior. - objects with a length key set to zero will no longer validate as empty. This is technically a breaking change, since objects with a key `length` and value `0` will no longer validate as empty. This is a very minor change, and any reliance on this behavior is probably a bug anyway. ##### http - Queries including + will now actually query for + instead of space. Most workarounds involving custom codecs will be unaffected. Possible server-side workarounds will need to be undone. - JSONP will throw an error when headers are set on a reques JSONP does not support headers being set on requests. Before when a request was sent to a JSONP backend that had headers set the headers were ignored. The JSONP backend will now throw an error if it receives a request that has any headers set. Any uses of JSONP on requests with headers set will need to remove the headers to avoid the error. ##### platform-browser - This change may cause a breaking change in unit tests that are implicitly depending on a specific number and sequence of change detections in order for their assertions to pass. - This may break invalid calls to `TransferState` methods. This tightens parameter types of `TransferState` usage, and is a minor breaking change which may reveal existing problematic calls. ##### router - The type of `Route.pathMatch` is now more strict. Places that use `pathMatch` will likely need to be updated to have an explicit `Route`/`Routes` type so that TypeScript does not infer the type as `string`. - When returning a `Promise` from the `LoadChildrenCallback`, the possible type is now restricted to `Type|NgModuleFactory` rather than `any`. - `initialNavigation: 'enabled'` was deprecated in v11 and is replaced by `initialNavigation: 'enabledBlocking'`. - The type of `component` on `ActivatedRoute` and `ActivatedRouteSnapshot` includes `string`. In reality, this is not the case. The component cannot be anything other than a component class. - - The type of `initialUrl` is set to `string|UrlTree` but in reality, the `Router` only sets it to a value that will always be `UrlTree` - `initialUrl` is documented as "The target URL passed into the `Router#navigateByUrl()` call before navigation" but the value actually gets set to something completely different. It's set to the current internal `UrlTree` of the Router at the time navigation occurs. With this change, there is no exact replacement for the old value of `initialUrl` because it was never intended to be exposed. `Router.url` is likely the best replacement for this. In more specific use-cases, tracking the `finalUrl` between successful navigations can also be used as a replacement. - Lazy loaded configs are now also validated once loaded like the initial set of routes are. Lazy loaded modules which have invalid Route configs will now error. Note that this is only done in dev mode so there is no production impact of this change. - When a guard returns a `UrlTree`, the router would previously schedule the redirect navigation within a `setTimeout`. This timeout is now removed, which can result in test failures due to incorrectly written tests. Tests which perform navigations should ensure that all timeouts are flushed before making assertions. Tests should ensure they are capable of handling all redirects from the original navigation. - Previously, resolvers were waiting to be completed before proceeding with the navigation and the Router would take the last value emitted from the resolver. The router now takes only the first emitted value by the resolvers and then proceeds with navigation. This is now consistent with `Observables` returned by other guards: only the first value is used. ##### zone.js - in TaskTrackingZoneSpec track a periodic task until it is cancelled The breaking change is scoped only to the plugin `zone.js/plugins/task-tracking`. If you used `TaskTrackingZoneSpec` and checked the pending macroTasks e.g. using `(this.ngZone as any)._inner ._parent._properties.TaskTrackingZone.getTasksFor('macroTask')`, then its behavior slightly changed for periodic macrotasks. For example, previously the `setInterval` macrotask was no longer tracked after its callback was executed for the first time. Now it's tracked until the task is explicitly cancelled, e.g with `clearInterval(id)`. #### Deprecations ##### common - The `ngModuleFactory` input of the `NgComponentOutlet` directive is deprecated in favor of a newly added `ngModule` input. The `ngModule` input accepts references to the NgModule class directly, without the need to resolve module factory first. ##### forms - The `initialValueIsDefault` option has been deprecated and replaced with the otherwise-identical `nonNullable` option, for the sake of naming consistency. - It is now deprecated to provide *both* `AbstractControlOption`s and an async validators argument to a FormControl. Previously, the async validators would just be silently dropped, resulting in a probably buggy forms. Now, the constructor call is deprecated, and Angular will print a warning in devmode. ##### router - The `resolver` argument of the `RouterOutletContract.activateWith` function and the `resolver` field of the `OutletContext` class are deprecated. Passing component factory resolvers are no longer needed. The `ComponentFactoryResolver`-related symbols were deprecated in `@angular/core` package since v13. ##### animations | Commit | Type | Description | | -- | -- | -- | | [a6fa37bc6e](https://togithub.com/angular/angular/commit/a6fa37bc6e705fee48f555d4b8022915094e8b16) | feat | make validateStyleProperty check dev-mode only ([#​45570](https://togithub.com/angular/angular/pull/45570)) | | [79d334b138](https://togithub.com/angular/angular/commit/79d334b1385685d0fd1451534df2ed3cbaefa0b6) | feat | provide warnings for non-animatable CSS properties ([#​45212](https://togithub.com/angular/angular/pull/45212)) | | [f8dc660605](https://togithub.com/angular/angular/commit/f8dc66060591e1ce42265a7862c3df16e40b05e1) | fix | allow animations with unsupported CSS properties ([#​44729](https://togithub.com/angular/angular/pull/44729)) | | [2a75754ee8](https://togithub.com/angular/angular/commit/2a75754ee823032e651bc596887a2186dc6846ae) | fix | apply default params when resolved value is null or undefined ([#​45339](https://togithub.com/angular/angular/pull/45339)) | | [e46b379204](https://togithub.com/angular/angular/commit/e46b37920438d84bff895498c0a102dd1ffba178) | fix | implement missing transition delay ([#​44799](https://togithub.com/angular/angular/pull/44799)) | | [5c7c56bc85](https://togithub.com/angular/angular/commit/5c7c56bc859b195bf6710f6c1479d9e18dde35b1) | perf | improve algorithm to balance animation namespaces ([#​45057](https://togithub.com/angular/angular/pull/45057)) | | [4c778cdb28](https://togithub.com/angular/angular/commit/4c778cdb28de128c6ddecd2fd6cb6257d675500b) | perf | made errors in the animations package tree shakeable ([#​45004](https://togithub.com/angular/angular/pull/45004)) | | [7a81481fb2](https://togithub.com/angular/angular/commit/7a81481fb29e94b550db7ad68270eccf26bb2743) | perf | Remove generic objects in favor of Maps ([#​44482](https://togithub.com/angular/angular/pull/44482)) | | [6642e3c8fd](https://togithub.com/angular/angular/commit/6642e3c8fd7d3b5ed22710667b2c41a46f14eda8) | perf | remove no longer needed CssKeyframes classes ([#​44903](https://togithub.com/angular/angular/pull/44903)) | | [59559fdbac](https://togithub.com/angular/angular/commit/59559fdbacc00bee380b1e88c79d08b6e856ebbe) | refactor | make `AnimationDriver.getParentElement` required ([#​45114](https://togithub.com/angular/angular/pull/45114)) | ##### common | Commit | Type | Description | | -- | -- | -- | | [31d7c3bd71](https://togithub.com/angular/angular/commit/31d7c3bd71fdab3fef1b4615ecb8124fe6c165bd) | feat | add getState method to LocationStrategy interface ([#​45648](https://togithub.com/angular/angular/pull/45648)) | | [c89cf63059](https://togithub.com/angular/angular/commit/c89cf63059370bba43717483e3d9627499dfe815) | feat | support NgModule as an input to the NgComponentOutlet ([#​44815](https://togithub.com/angular/angular/pull/44815)) | | [38c03a2035](https://togithub.com/angular/angular/commit/38c03a20358db3f8621c023b98e627cd385731c0) | feat | support years greater than 9999 ([#​43622](https://togithub.com/angular/angular/pull/43622)) | | [bedb257afc](https://togithub.com/angular/angular/commit/bedb257afc1ca12eb221536ea44ade960e62cda0) | fix | cleanup URL change listeners when the root view is removed ([#​44901](https://togithub.com/angular/angular/pull/44901)) | | [10691c626b](https://togithub.com/angular/angular/commit/10691c626bf381bedfa278e9d50ab922b4b656cd) | fix | properly cast http param values to strings ([#​42643](https://togithub.com/angular/angular/pull/42643)) | | [05d50b849b](https://togithub.com/angular/angular/commit/05d50b849bb891c37c3eefab81a45099057dfd78) | perf | make `NgLocalization` token tree-shakable ([#​45118](https://togithub.com/angular/angular/pull/45118)) | ##### compiler | Commit | Type | Description | | -- | -- | -- | | [bb8d7091c6](https://togithub.com/angular/angular/commit/bb8d7091c64a785758ae347b1a9bcdeeed95897c) | fix | exclude empty styles from emitted metadata ([#​45459](https://togithub.com/angular/angular/pull/45459)) | | [4d6a1d6722](https://togithub.com/angular/angular/commit/4d6a1d672210219328b33f4f96210870563066ee) | fix | scope css keyframes in emulated view encapsulation ([#​42608](https://togithub.com/angular/angular/pull/42608)) | | [f03e313f24](https://togithub.com/angular/angular/commit/f03e313f24465cbe9ce99aa5f9f482a6c6b5485f) | fix | scope css keyframes in emulated view encapsulation ([#​42608](https://togithub.com/angular/angular/pull/42608)) | ##### compiler-cli | Commit | Type | Description | | -- | -- | -- | | [9cf14ff03d](https://togithub.com/angular/angular/commit/9cf14ff03dc7a848413b323dfb943fcd26f1217e) | feat | exclude abstract classes from `strictInjectionParameters` requirement ([#​44615](https://togithub.com/angular/angular/pull/44615)) | | [0072eb48ba](https://togithub.com/angular/angular/commit/0072eb48ba1c6f549703988b7fd7ba3e09058048) | feat | initial implementation of standalone components ([#​44812](https://togithub.com/angular/angular/pull/44812)) | | [2142ffd295](https://togithub.com/angular/angular/commit/2142ffd295de491eb8582c2eb1712b5b48044f24) | feat | propagate `standalone` flag to runtime ([#​44973](https://togithub.com/angular/angular/pull/44973)) | | [6f653e05f9](https://togithub.com/angular/angular/commit/6f653e05f985141ae4d2d90af78b2bc001595661) | feat | standalone types imported into NgModule scopes ([#​44973](https://togithub.com/angular/angular/pull/44973)) | | [752ddbc165](https://togithub.com/angular/angular/commit/752ddbc165359c2ff987c24f715d0a36fd604ec0) | feat | Support template binding to protected component members ([#​45823](https://togithub.com/angular/angular/pull/45823)) | | [3d13343975](https://togithub.com/angular/angular/commit/3d133439754cbf5d5a20bb3c714c8673c848e465) | fix | better error messages for NgModule structural issues ([#​44973](https://togithub.com/angular/angular/pull/44973)) | | [046dad1a8d](https://togithub.com/angular/angular/commit/046dad1a8d878ea537a6e2ef5f5ef24a85a2cf02) | fix | fix issue with incremental tracking of APIs for pipes ([#​45672](https://togithub.com/angular/angular/pull/45672)) | | [27b4af7240](https://togithub.com/angular/angular/commit/27b4af7240ea964d1e4d51b83118f10321163627) | fix | full side-effectful registration of NgModules with ids ([#​45024](https://togithub.com/angular/angular/pull/45024)) | | [32c625d027](https://togithub.com/angular/angular/commit/32c625d0279d9fd55178ced47c45969da533eedc) | fix | handle forwardRef in imports of standalone component ([#​45869](https://togithub.com/angular/angular/pull/45869)) | | [06050ac2b4](https://togithub.com/angular/angular/commit/06050ac2b4937836096fb331ec71bacb5a1fc231) | fix | handle inline type-check blocks in nullish coalescing extended check ([#​45454](https://togithub.com/angular/angular/pull/45454)) | | [a524a50361](https://togithub.com/angular/angular/commit/a524a50361bb408cf8baf8ff209378a1db967545) | fix | handle standalone components with cycles ([#​46029](https://togithub.com/angular/angular/pull/46029)) | | [724e88e042](https://togithub.com/angular/angular/commit/724e88e042b1a89691d48879673b5e1b161c3d9a) | fix | preserve `forwardRef` for component scopes ([#​46139](https://togithub.com/angular/angular/pull/46139)) | | [9cfea3d522](https://togithub.com/angular/angular/commit/9cfea3d522c0e4a34bb3a5d0fa9d04f64de39b49) | fix | report invalid imports in standalone components during resolve phase ([#​45827](https://togithub.com/angular/angular/pull/45827)) | | [c0778b4dfc](https://togithub.com/angular/angular/commit/c0778b4dfc1c107543b3db6f1958814a0812c7df) | fix | Support resolve animation name from the DTS ([#​45107](https://togithub.com/angular/angular/pull/45107)) | | [f2e5234e07](https://togithub.com/angular/angular/commit/f2e5234e078b6d4771d07e8b28b8098f1faeb176) | fix | update unknown tag error for aot standalone components ([#​45919](https://togithub.com/angular/angular/pull/45919)) | | [35f20afcac](https://togithub.com/angular/angular/commit/35f20afcac4877963e4a3e5d85b67ed8cb000af9) | fix | use existing imports for standalone dependencies ([#​46029](https://togithub.com/angular/angular/pull/46029)) | | [8155428ba6](https://togithub.com/angular/angular/commit/8155428ba65c38c0c15f2666727202a7b360c1bd) | perf | ignore the module.id anti-pattern for NgModule ids ([#​45024](https://togithub.com/angular/angular/pull/45024)) | ##### core | Commit | Type | Description | | -- | -- | -- | | [174ce7dd13](https://togithub.com/angular/angular/commit/174ce7dd13f6d8f941d3aa0b843559614cb68b0c) | feat | add `ApplicationRef.destroy` method ([#​45624](https://togithub.com/angular/angular/pull/45624)) | | [5771b18a98](https://togithub.com/angular/angular/commit/5771b18a989c3c75d713ffb75cd7c047c63e4090) | feat | add the `bootstrapApplication` function ([#​45674](https://togithub.com/angular/angular/pull/45674)) | | [69018c9f42](https://togithub.com/angular/angular/commit/69018c9f42d14c1c7aa8271b406d6d247de1c564) | feat | allow for injector to be specified when creating an embedded view ([#​45156](https://togithub.com/angular/angular/pull/45156)) | | [94c949a60a](https://togithub.com/angular/angular/commit/94c949a60ad0de1f5385ec97f2c1933cb1d55f22) | feat | allow for injector to be specified when creating an embedded view ([#​45156](https://togithub.com/angular/angular/pull/45156)) | | [e702cafcf2](https://togithub.com/angular/angular/commit/e702cafcf2fef53968ef52ce17cb343f3a12bb53) | feat | allow to throw on unknown elements in tests ([#​45479](https://togithub.com/angular/angular/pull/45479)) | | [6662a97c61](https://togithub.com/angular/angular/commit/6662a97c61f133a14f2d117f71e4d2b8f4a83c32) | feat | allow to throw on unknown elements in tests ([#​45479](https://togithub.com/angular/angular/pull/45479)) | | [a6675925b0](https://togithub.com/angular/angular/commit/a6675925b0b6f313d4932a753bd4aa4cb473b5f3) | feat | allow to throw on unknown properties in tests ([#​45853](https://togithub.com/angular/angular/pull/45853)) | | [6eaaefd22e](https://togithub.com/angular/angular/commit/6eaaefd22ebb95ee896a62237832ff2f2defdee0) | feat | drop support for Node.js 12 ([#​45286](https://togithub.com/angular/angular/pull/45286)) | | [c9d566ce4b](https://togithub.com/angular/angular/commit/c9d566ce4b6e9097d9eceb7ac3964a0b25c404ad) | feat | drop support for TypeScript 4.4 and 4.5 ([#​45394](https://togithub.com/angular/angular/pull/45394)) | | [b568a5e708](https://togithub.com/angular/angular/commit/b568a5e708579f5035f40c7218fbba39ad6b3065) | feat | implement `importProvidersFrom` function ([#​45626](https://togithub.com/angular/angular/pull/45626)) | | [d5a6cd1111](https://togithub.com/angular/angular/commit/d5a6cd11110c78762a8e6115a718f5851508dbf2) | feat | implement EnvironmentInjector with adapter to NgModuleRef ([#​45626](https://togithub.com/angular/angular/pull/45626)) | | [5a10fc4f82](https://togithub.com/angular/angular/commit/5a10fc4f8287d448c88ce2f6c97c48307af34af1) | feat | implement standalone directives, components, and pipes ([#​45687](https://togithub.com/angular/angular/pull/45687)) | | [e461f716d4](https://togithub.com/angular/angular/commit/e461f716d4b736829d53de26ba6dddb58f476746) | feat | move ANIMATION_MODULE_TYPE injection token into core ([#​44970](https://togithub.com/angular/angular/pull/44970)) | | [94bba76a4a](https://togithub.com/angular/angular/commit/94bba76a4a9594a5eb90e581f407f1b70697e715) | feat | support TypeScript 4.6 ([#​45190](https://togithub.com/angular/angular/pull/45190)) | | [29039fcdbc](https://togithub.com/angular/angular/commit/29039fcdbcb8cab040d88dabe2dcb1abae34cb4e) | feat | support TypeScript 4.7 ([#​45749](https://togithub.com/angular/angular/pull/45749)) | | [225e4f2dbe](https://togithub.com/angular/angular/commit/225e4f2dbeac5982982fb94eac65ea931c44247a) | feat | triggerEventHandler accept optional eventObj ([#​45279](https://togithub.com/angular/angular/pull/45279)) | | [401dec46eb](https://togithub.com/angular/angular/commit/401dec46eb71e33ae3ef185b8f92ed2b3b7661fd) | feat | update TestBed to recognize Standalone Components ([#​45809](https://togithub.com/angular/angular/pull/45809)) | | [35653ce337](https://togithub.com/angular/angular/commit/35653ce337b59336ebb06f07dfed027e5037ed06) | fix | add more details to the MISSING_INJECTION_CONTEXT error ([#​46166](https://togithub.com/angular/angular/pull/46166)) | | [d36fa111eb](https://togithub.com/angular/angular/commit/d36fa111eb677d504a9952d8b4ca53560cadd04d) | fix | avoid Closure Compiler error in restoreView ([#​45445](https://togithub.com/angular/angular/pull/45445)) | | [0bc77f4cab](https://togithub.com/angular/angular/commit/0bc77f4cabb3fe76accb120f7aba57ebfee9262b) | fix | better error message when unknown property is present ([#​46147](https://togithub.com/angular/angular/pull/46147)) | | [f3eb7d9ecb](https://togithub.com/angular/angular/commit/f3eb7d9ecb9a82e7396cca658e3250e47c853153) | fix | Ensure the `StandaloneService` is retained after closure minification ([#​45783](https://togithub.com/angular/angular/pull/45783)) | | [701405fa71](https://togithub.com/angular/angular/commit/701405fa710177ed1c963f61686ebb910e5ec74e) | fix | handle AOT-compiled standalone components in TestBed correctly ([#​46052](https://togithub.com/angular/angular/pull/46052)) | | [ddce357d1d](https://togithub.com/angular/angular/commit/ddce357d1db9694bc69c114deb96e26d2651fb8b) | fix | improve TestBed declarations standalone error message ([#​45999](https://togithub.com/angular/angular/pull/45999)) | | [ba9f30c9a6](https://togithub.com/angular/angular/commit/ba9f30c9a6af19b34d13962303ec96997c7c3d56) | fix | include component name into unknown element/property error message ([#​46160](https://togithub.com/angular/angular/pull/46160)) | | [9fa6f5a552](https://togithub.com/angular/angular/commit/9fa6f5a552b7780ce32aa5a60273d4008a7b6afb) | fix | incorrectly inserting elements inside `