https://github.com/angular/angular

sort by:
Revision Author Date Message Commit Date
1472515 release: cut the v16.2.0-rc.0 release 02 August 2023, 20:20:39 UTC
9d88cd8 docs: release notes for the v16.1.8 release 02 August 2023, 19:55:00 UTC
2d52d5e refactor(compiler): support safe function calls (#51100) Adds support for safe function calls in template pipeline compiler PR Close #51100 01 August 2023, 20:45:34 UTC
42caeee refactor(compiler): reuse temp vars when possible (#51100) Updates the template pipeline's temporary variables phase to reuse temporary variables within an expression. The algorithm implemented here reuses variables more aggressively than TemplateDefinitionBuilder. This change in behavior is acceptable, as it is unlikely to cause any failures, and implementing the exact behavior observed in TemplateDefinitionBuilder would be difficult. PR Close #51100 01 August 2023, 20:45:34 UTC
b8ec182 test(compiler): allow alternate expected file for template pipeline (#51100) In some cases it is not feasible to have the template pipeline produce the exact same compiled output as the TemplateDefinitionBuilder. This commit adds support to the testing infrastructure to have different expected output files for each. This option should be used sparingly, as we want the output to be as close as possible. PR Close #51100 01 August 2023, 20:45:34 UTC
e53d4ec feat(core): add afterRender and afterNextRender (#50607) Add and expose the after*Render functions as developer preview PR Close #50607 01 August 2023, 20:02:27 UTC
8913d3e docs: fix warning about an unknown decorator (#51237) dgeni was complaning about an unknown decorator (`@Input`) PR Close #51237 01 August 2023, 20:00:53 UTC
d86e637 docs: add lang attribute to html files (#51235) PR Close #51235 01 August 2023, 19:16:44 UTC
388d1db docs: add the title tag (#51233) PR Close #51233 01 August 2023, 19:15:11 UTC
4602545 refactor(core): remove useless hack (#51224) This hack is remnant of the Ivy migration. PR Close #51224 01 August 2023, 19:12:52 UTC
d81d125 refactor(core): Remove dead unit test code (#51223) This code is duplicated but unused. PR Close #51223 01 August 2023, 19:10:57 UTC
9d59764 refactor(core): createInjector is a private function (#51221) `createInjector` is not public. PR Close #51221 01 August 2023, 19:10:20 UTC
737ed23 refactor(core): removing reflect-metadata from symbol tests. (#51217) We were not reyling on it anymore. PR Close #51217 01 August 2023, 19:09:25 UTC
a871e23 docs: remove duplicate words. (#51215) Using the `\b(\w+)\s+\1\b` we can find duplicate word. Let's remove them. PR Close #51215 01 August 2023, 19:08:33 UTC
2274d15 docs: updated the doc files (#51204) PR Close #51204 01 August 2023, 19:07:21 UTC
a248307 docs: fix typos (#51201) PR Close #51201 01 August 2023, 19:04:31 UTC
6691c49 docs: add lang attributes to the files (#51200) PR Close #51200 01 August 2023, 18:58:44 UTC
584a32d docs: add the title tag (#51199) PR Close #51199 01 August 2023, 18:54:36 UTC
63b7f52 docs: update the html tags (#51198) PR Close #51198 01 August 2023, 18:53:30 UTC
5c6d1bb docs: fix typos in component overview guide (#51197) PR Close #51197 01 August 2023, 18:53:00 UTC
71e803a docs: add new edition of Angular Projects book (#51184) PR Close #51184 01 August 2023, 18:51:49 UTC
efb486e refactor(compiler): handle defer blocks in TemplateDefinitionBuilder (#51162) Updates the TemplateDefinitionBuilder class to generate the `defer` instruction for `{#defer}` blocks. Also generates dependency function that would be invoked at runtime (with dynamic imports inside). PR Close #51162 01 August 2023, 18:50:05 UTC
08992a5 refactor(compiler): compute the list of dependencies for defer blocks (#51162) This commit brings the logic to calculate teh set of dependencies for each defer block. For each dependency we also identify whether it can be defer-loaded or not. PR Close #51162 01 August 2023, 18:50:05 UTC
f5116e7 refactor(compiler): extracting helper function and types to the top level (#51162) This is a minor refactoring of the ComponentHandler class logic to extract helper function and types to the top level for simplicity and reuse across other functions of the class. PR Close #51162 01 August 2023, 18:50:05 UTC
553cbae refactor(compiler): update TemplateBinder and DirectiveBinder to work with defer blocks (#51162) This commit updates the logic of the TemplateBinder and DirectiveBinder classes to recognize defer blocks. The logic is updated to prevent Directive and Pipe matching inside the defer block. Instead, the scope for those blocks would be calculated separately. PR Close #51162 01 August 2023, 18:50:04 UTC
256e682 refactor(compiler): add DeferredSymbolTracker class to keep track of symbol usages (#51162) This commit adds a new class called `DeferredSymbolTracker` to keep track of all usages of a particular symbol within a source file and allow to detect whether a symbol can be defer loaded (i.e. if there are any references to a symbol). PR Close #51162 01 August 2023, 18:50:04 UTC
4d8cc70 build: update io_bazel_rules_sass digest to ded821e (#51139) See associated pull request for more information. PR Close #51139 01 August 2023, 18:49:06 UTC
c1dee4c test(core): unit tests for the injector profiler and injector debugging APIs (#48639) Creates unit tests for the following APIs - setInjectorProfiler - getInjectorProviders - getInjectorResolutionPath - getDependenciesFromInjectable Modifies existing tests in - packages/examples/core/di/ts/injector_spec.ts - packages/core/test/render3/jit/declare_injectable_spec.ts - packages/core/test/render3/jit/declare_factory_spec.ts because they setup framework injector context manually. Exports setInjectorProfilerContext in packages/core/src/core_private_export.ts in order for use in the the modified tests above. PR Close #48639 01 August 2023, 18:44:40 UTC
98d262f feat(core): create injector debugging APIs (#48639) This commit introduces 3 new APIs. getDependenciesFromInstantiation: - Given an injector and a token that was instantiated by that injector, discover all of the things were injected in the instance of that token - This API is meant to enable recursive inspection of dependencies. Dependencies returned by this API include which injector they were providedIn, which enables the continous use of getDependenciesFromInstantiation to determine the dependencies of dependencies getInjectorProviders: - Given an injector, discover all of the providers that were configured in that injector. - This API returns information on the configured providers of an injector, including the import path that leads to the container that the provider originated from (NgModule or standalone directive). This enables fine grained inspection to determine where a specific provider comes from. getInjectorParent: - Given an injector, discover the parent of that injector. - This function is meant to be used recursively to discover the entire resolution path from a starting injector to the NullInjector. These APIs were designed to be used together. For example, getInjectorParent can be used to discover the structure of an injector hierarchy. Once that's done, getInjectorProviders can be used to determine the providers of each injector in that hierarchy. Another example: getDependenciesFromInstantiation can be used to discover the dependencies of a specific injector constructed instance. From there, we can use getInjectorParent to discover the injector resolution path and map each dependency to a path from the starting injector to the injector that it was provided in. PR Close #48639 01 August 2023, 18:44:40 UTC
4d92080 refactor(core): convert walkProviderTree and `processInjectorTypesWithProviders` to callback style interfaces (#48639) walkProviderTree and processInjectorTypesWithProviders both perform some generic traversal logic of the import graph of an input NgModule or Standalone component. Currently, these functions pass around a `providersOut` array that is used to collect providers at each step of the traversal. This PR converts those functions to accept visitor callbacks instead of the `providersOut` array. This is done to make the traversal logic of these functions reusable, while leaving it up to the visitor to determine the logic that fires for each visited node. This refactor would allow us to reuse `walkProviderTree` for injector debugging APIs that could support some cool features in DevTools, like tracing the injector resolution path of an injected property on a component instance all the way up to the specific imported module/standalone component. PR Close #48639 01 August 2023, 18:44:40 UTC
ff4d1b4 feat(devtools): create profiler for DI and injector events (#48639) Currently, understanding dependency injection in Angular requires a lot of context and has been sited in our surveys as one of the largest points of confusion that our users have with the framework. This commit is the beginning of our approach to make debugging dependency injection in Angular easier. This commit introduces injector profiler callbacks in parts of the framework to emit injector events. It also introduces a default handler for these events. This default handler parses the stream of events to construct some data structures that will support new injector debug APIs. We have implemented a similar pattern in the past to minimize overhead. There is also the possiblity of making the internal `setInjectorProfiler` function a public debug API in the future, so that users can implement their own handlers to debug DI events. Lastly DI in Angular maps nicely to a stream of events. For production applications there is no runtime overhead. For applications in dev mode there is some additional overhead from the default profiler handling injector events and holding debug data in memory. For production applications, dead code elimination should strip all of the code used by this PR. PR Close #48639 01 August 2023, 18:44:40 UTC
c1052cf refactor(compiler): add support for sanitizing properties and attributes (#51156) Sets sanitizer functions when attempting to set sensitive properties and attributes PR Close #51156 28 July 2023, 22:11:51 UTC
e4ae634 ci: remove migrated circleci jobs (#51194) Remove test_angular_devtools and test_win jobs which were migrated to GHA PR Close #51194 28 July 2023, 21:43:03 UTC
f71851a docs: Change "ng run build:ssr" to "npm run build:ssr" in universal.md (#51192) PR Close #51192 28 July 2023, 21:42:30 UTC
7225528 refactor(compiler): add utility to enable deferred blocks for testing (#51183) Adds the `ɵsetEnabledBlockTypes` utility that can be used when writing JIT tests using `defer` blocks. Intended usage: ```ts import {ɵsetEnabledBlockTypes as setEnabledBlockTypes} from '@angular/compiler/src/jit_compiler_facade'; describe('deferred tests', () => { beforeEach(() => setEnabledBlockTypes(['defer'])); afterEach(() => setEnabledBlockTypes([])); it('should work', () => { // test goes here }); }); ``` PR Close #51183 28 July 2023, 21:42:04 UTC
09bf327 refactor(compiler): add support for animation listeners (#50975) Adds support for binding animation listeners, e.g. PR Close #50975 28 July 2023, 21:40:13 UTC
570bd67 refactor(compiler): make listener instruction chainable (#50975) Makes the `ɵɵlistener` instruction chainable in the template pipeline PR Close #50975 28 July 2023, 21:40:13 UTC
7dd99cd refactor(compiler): add support for animation properties (#50975) Adds support for binding animation properties, e.g. PR Close #50975 28 July 2023, 21:40:13 UTC
88a5711 refactor(compiler): make element instruction chainable (#50975) Makes the `ɵɵelement` instruction chainable in the template pipeline PR Close #50975 28 July 2023, 21:40:13 UTC
6755f53 fix(compiler): return full spans for Comment nodes (#50855) Change sourceSpan for Comment nodes to cover the whole comment instead of just the opening token. The primary motivation for this is the interaction between ESLint and `@angular-eslint`. ESLint can detect unused `eslint-disable` directives in comments and automatically remove them when running with `--fix`. This is based on ranges computed from AST spans, and as a result does not work inside Angular templates - right now all comments claim to be 4 characters long so only the opening `<!--` is removed. PR Close #50855 28 July 2023, 21:39:18 UTC
cdaa2a8 feat(core): support Provider type in Injector.create (#49587) This commit updates the Injector.create function to accept the `Provider` type in addition to the `StaticProvider` type. This should make it easier to work with the Injector.create function and have less type casts if you have a list of `Provider`s available. PR Close #49587 28 July 2023, 21:38:05 UTC
5061311 refactor(compiler): Ingest host attribute bindings in template pipeline (#51188) Host property bindings beginning with `attr.` should have `Attribute` binding kind, and result in an `attribute` instruction. This should really be handled in the parser in the future. PR Close #51188 28 July 2023, 18:47:57 UTC
a42c91e refactor(compiler): Generate temporaries in host bindings for template pipeline (#51188) Add the ability to name and resolve generated temporary variables in host bindings, using the existing phase. PR Close #51188 28 July 2023, 18:47:57 UTC
72a59bd refactor(compiler): Support `svg` and `math` namespace instructions in template pipeline (#51188) Templates may contain special `svg` and `math` elements, as well as logical descendants of those elements (e.g. `svg` may contain `g`). These will be parsed with a special colon-prefixed *namespace identifier*, such as `:svg:svg`, or `:svg:g`, or `:math:infinity`. The template pipeline now considers these namespace prefixes, and stores them specially on the Element and Template data structures, ultimately generating the appropriate runtime instructions to change namespaces when needed. PR Close #51188 28 July 2023, 18:47:57 UTC
c4b289a refactor(compiler): Allow chaining of listeners in template pipeline (#51188) Calls to the listener instruction can be chained. PR Close #51188 28 July 2023, 18:47:57 UTC
8f50385 refactor(compiler): support `ngNonBindable` in the template pipeline (#51188) When a container-like element has the `ngNonBindable` special attribute, bindings are disabled for it and its descendants. This requires emitting the `disableBindings` and `enableBindings` instructions when nested content exists. PR Close #51188 28 July 2023, 18:47:57 UTC
1c553ee refactor(compiler): Delete some redundant types in template pipeline. (#50899) Previously we refactored the compilation to use the concepts of "jobs" and "units." However, old type aliases were provided to avoid changing all call-sites in bulk. Here, those aliases are deleted, and call sited updated: 1. `ComponentCompilation` becomes `ComponentCompilationJob`. 2. `ViewCompilation` becomes `ViewCompilationUnit`. PR Close #50899 27 July 2023, 22:08:05 UTC
833cb8e refactor(compiler): Enable additional tests for the template pipeline (#50899) A number of tests were previously disabled, but are now passing with the latest changes. PR Close #50899 27 July 2023, 22:08:05 UTC
5a0ecdb refactor(compiler): Allow host binding functions to specialize bindings (#50899) Interestingly, host bindings are parsed quite differently from template functions. For example, bindings such as `[style.foo]: 3px` would be parsed into a value, unit, and type when bound to a template, but will not be parsed as such when used in a host binding. In this commit, we remedy this shortcoming by adding support for bindings in host binding functions to the template pipeline. In particular, we create a phase to process these bindings, and transform them into the correct output binding kind. Additionally, we fix some other minor bugs and omissions. Finally, we enable compilation of host bindings with the template pipeline, which requires us to turn off a number of failing tests. PR Close #50899 27 July 2023, 22:08:05 UTC
7652ec7 refactor(compiler): Allow host bindings to be ingested into the template pipeline. (#50899) Alter the compiler code to ingest and process host bindings, using the newly updated compilation passes. This is currently switched off in the outer compiler layer, but lays the foundation for actually generating the host binding functions using template pipeline. PR Close #50899 27 July 2023, 22:08:05 UTC
5ed8db2 refactor(compiler): Refactor processing of bindings and interpolations. (#50899) Today, bindings on templates are ingested in highly distinct ways, depending on the parsed binding kind, as well as special cases for `style` and `class`. This makes it very difficult to also ingest them for host bindings without duplicating all this subtle logic. To solve this, we introduce two major related refactors: 1. Move all processing of attributes into phases. This dramatically reduces the amount of code in `ingest.ts`, which is now only responsible for ingesting an abstract `BindingOp`. The later phases replace each `BindingOp` with more specific ops for each binding kind. For example, `binding_specialization.ts` transforms each abstract `BindingOp` into a concrete `PropertyOp`, `AttributeOp`, etc. Likewise, `style_binding_specialization.ts` performs special-case transformations for style and class bindings. This approach has the additional advantage of separating the creation of attribute and property bindings from other special cases. 2. Eliminate all interpolation ops. Instead, allow the expression inside of an op to be of a new `Interpolation` type. The reify code will then emit the appropriate instruction variant (interpolated or unary). 3. Separate some concerns that were previously mixed in, such as empty bindings and listeners on templates. These refactors cause major downstream code changes across the system, especially to attribute extraction and variable counting. PR Close #50899 27 July 2023, 22:08:05 UTC
30237d1 refactor(compiler): Template pipeline: accept host bindings in additional phases (#50899) Modify most of the remaining necessary phases to accept generic `CompilationJobs`. This includes `phasePureLiteralStructures`, `phaseNullishCoalescing`, `phaseExpandSafeReads`, `phaseVariableOptimization`, `phaseNaming`, and `phasePureFunctionExtraction`. PR Close #50899 27 July 2023, 22:08:05 UTC
8f67c07 refactor(compiler): Prepare the template pipeline to support host bindings. (#50899) Refactor `compilation.ts` by introducing two new concepts: 1. A compilation unit, which has create and update ops. Compilations of individual views are compilation units, as are individual host bindings. 2. Aa compilation job, which has several compilation units. For example, a whole component is a compilation job, because it can have many view compilation units. A host binding compilation is a job in addition to a unit, because each host binding unit is always a singleton. Then, we begin modifying phases to accept general compilation jobs instead of component compilations specifically, which will allow us to run them on host bindings. In particular, we update the following phases: `phaseReify`, and `phaseChaining`. PR Close #50899 27 July 2023, 22:08:04 UTC
fe7de0d refactor(compiler): Compatibility mode for the template pipeline. (#50899) Add a compatibility setting to the component compilation. Accordingly, remove all the custom compatibility flags passed to each phase, and use the main setting instead. PR Close #50899 27 July 2023, 22:08:04 UTC
31ff476 refactor(compiler): Introduce source maps in the template pipeline. (#50899) Begin producing source maps for the template pipeline, for a couple fundamental kinds of instructions, including elements, templates, properties, text, and interpolations. PR Close #50899 27 July 2023, 22:08:04 UTC
8a6a72e refactor(compiler): Fix `$event` in listeners for template pipeline (#50899) Previously, `$event` was interpreted as a lexical read on the enclosing context. Now, a new pass converts such reads into simple output AST reads of `$event`, so they are not processed by the context resolution or naming phases. Additionally, the same pass sets a field on the enclosing listener op, so that the reify phase does not have to search for reads of `$event`. PR Close #50899 27 July 2023, 22:08:04 UTC
c6010f0 refactor(compiler): Support `$any` in template pipeline (#50899) `$any(...)` casts should be dropped, except when they are an explicit call on `this.$any(...)`. Fix a bug in which we were transforming `ThisReceiver` into an implicit receiver. PR Close #50899 27 July 2023, 22:08:04 UTC
3a59de6 fix(devtools): ensure that inspected component label is always in the viewport (#50656) Currently the label showing the component name is always positioned from the bottom/right edge of the element which may be outside of the viewport. These changes add some logic to fall back to a different position so that the label is always visible. I've also cleaned the `highlighter.ts` file up a bit. Fixes #48479. PR Close #50656 26 July 2023, 17:04:26 UTC
bb0f3bc docs(docs-infra): Adding required and Transform Args into the usage and documentation of input (#51173) I# No commands remaining. PR Close #51173 26 July 2023, 17:03:41 UTC
53aa35b docs: improve readability, use future tense to indicate future events (#49578) Summary of changes: * change 'notice that' -> note that * break large sentence to smaller ones to improve readability * use future tense & modal verbs to indicate future events PR Close #49578 26 July 2023, 17:03:04 UTC
29a4103 docs: fixed grammar error in vulnerability reporting (#47326) Split a run-on sentence into 2 sentences and improved link accessibility. PR Close #47326 26 July 2023, 17:01:29 UTC
d9a4ca6 release: cut the v16.2.0-next.4 release 26 July 2023, 16:11:32 UTC
d2b7d76 docs: release notes for the v16.1.7 release 26 July 2023, 16:05:18 UTC
d6efd71 ci: correct changed github action paths (#51168) Change to the new paths to the github actions after dev-infra refactor PR Close #51168 25 July 2023, 17:48:47 UTC
2c5e5e4 docs: updated the tour of heroes doc file (#51151) PR Close #51151 25 July 2023, 17:24:52 UTC
d886887 refactor(core): Better use of Object.keys() (#51153) Code cleaning arround the `Object.keys()` in the core tests. PR Close #51153 25 July 2023, 16:17:46 UTC
29d3581 feat(common): add component input binding support for NgComponentOutlet (#51148) This commit add component input binding support for NgComponentOutlet. PR Close #51148 25 July 2023, 16:16:19 UTC
b5cf5d2 docs: remove orphan migration docs (#51147) These docs are orphoned, no longer referenced anywhere in the docs, we can safery remove them. PR Close #51147 24 July 2023, 15:20:22 UTC
8b32f89 docs: updated the word in tutorial template (#51150) PR Close #51150 24 July 2023, 15:18:34 UTC
daaa0a4 docs: remove trailing periods after `@see` (#51144) This fixes a rendering issue where the periods would be bellow the text block. PR Close #51144 24 July 2023, 15:14:51 UTC
92ebfd1 refactor(compiler): handle braces in block parameters (#51143) Fixes that using braces in the block parameters would result in incorrect tokens being produced. Currently we don't have any blocks that allow object literal parameters, but it may come up in the future. PR Close #51143 24 July 2023, 15:13:51 UTC
27d43a4 build: lock file maintenance (#51134) See associated pull request for more information. PR Close #51134 24 July 2023, 15:12:51 UTC
4120a03 docs: fix typos in first app tutorial (#51115) PR Close #51115 21 July 2023, 17:31:24 UTC
0c9c825 docs: Add links to the injection context guide (#51129) PR Close #51129 21 July 2023, 16:46:42 UTC
57e8412 fix(http): check whether `Zone` is defined (#51119) Accessing the `Zone` variable without checking if it's defined or not leads to an error "Zone is not defined" if zone.js is not imported (nooped). This commit adds an additional check before getting the current zone where the `doRequest` is being called. PR Close #51119 21 July 2023, 16:45:26 UTC
3106054 docs: updated the benchpress readme doc (#51110) PR Close #51110 21 July 2023, 16:43:30 UTC
189d601 build: update cross-repo angular dependencies (#51132) See associated pull request for more information. PR Close #51132 21 July 2023, 16:42:35 UTC
528fea7 build: update cross-repo angular dependencies (#51127) See associated pull request for more information. PR Close #51127 21 July 2023, 14:12:58 UTC
39899fe build: update io_bazel_rules_sass digest to e2e30df (#51126) See associated pull request for more information. PR Close #51126 21 July 2023, 14:11:33 UTC
0413e55 docs: remove the links to docs.angular.lat (#51117) docs.angular.lat hasn't been updated in a while and is stuck at v10. Let's remove it. Fixes #47644 PR Close #51117 20 July 2023, 20:21:29 UTC
33acf4f docs(docs-infra): fix rendering of `Exported from` section on Firefox. (#51116) On Firefox when an `a` element contains a `block` element, the `a` element is not aligned with the `li` marker. Fixes #51112 PR Close #51116 20 July 2023, 19:58:11 UTC
6fed684 build: update github/codeql-action action to v2.21.0 (#51077) See associated pull request for more information. PR Close #51077 20 July 2023, 19:57:22 UTC
d2e08a6 build: update dependency @types/convert-source-map to v2 (#51085) See associated pull request for more information. PR Close #51085 20 July 2023, 19:56:54 UTC
7092b21 build: Upgrade `firebase-tools` and `puppeteer` to fix transitive dependency vulnerability. (#51114) `vm2` was pulled by `firebase-tools` < 12.4.5 and `puppeteer` < 20.8.2. Fixes #51080 PR Close #51114 20 July 2023, 19:55:52 UTC
05657cf release: cut the v16.2.0-next.3 release 19 July 2023, 19:32:42 UTC
16e132f docs: release notes for the v16.1.6 release 19 July 2023, 19:14:38 UTC
386cb2f Revert "docs: added the alt attribute in the img tag (#51102)" (#51107) This reverts commit 3b248c59c65927d0fda619884dea3a6bc3e19e42. PR Close #51107 19 July 2023, 18:48:59 UTC
32e49f5 docs: update v16.2 date (#51104) PR Close #51104 19 July 2023, 17:57:12 UTC
6462924 docs(docs-infra): fix wrong links in first-app-lesson-14.md (#51097) docs(docs-infra): fix wrong links in first-app-lesson-14.md in first-app-lesson-14.md, the links to starting code point to the wrong lesson 06 instead of lesson 13 and the links to completed code point to lesson 07 instead of lesson 14 PR Close #51097 19 July 2023, 17:52:13 UTC
551b246 docs: updated the angular-compiler-option doc (#51095) PR Close #51095 19 July 2023, 17:44:04 UTC
3b248c5 docs: added the alt attribute in the img tag (#51102) PR Close #51102 19 July 2023, 17:39:44 UTC
385adbb build: update dependency core-js to v3 (#51099) See associated pull request for more information. PR Close #51099 19 July 2023, 17:37:36 UTC
ddf1769 docs(docs-infra): fix wrong links in first-app-lesson-13.md (#51094) docs(docs-infra): fix wrong links in first-app-lesson-13.md in first-app-lesson-13.md, the links to starting code point to the wrong lesson 13 instead of lesson 12 and the links to completed code point to lesson 14 instead of lesson 13 PR Close #51094 19 July 2023, 17:10:05 UTC
8fb9db9 docs: Fix path to sample (#51076) PR Close #51076 19 July 2023, 17:09:30 UTC
24bf133 refactor(compiler): add support for dynamic imports in the output AST (#51087) This commit updates the output AST (and related visitors) to support dynamic imports. This functionality will be used later to generate the output for defer blocks. PR Close #51087 19 July 2023, 16:54:42 UTC
3ef8195 build: update dependency @types/systemjs to v6 (#51088) See associated pull request for more information. PR Close #51088 19 July 2023, 14:37:01 UTC
dd43615 build: update all non-major dependencies (#50994) See associated pull request for more information. PR Close #50994 18 July 2023, 21:01:44 UTC
109737b docs(common): Add NgOptimizedImage FAQ (#51036) Make minor updatees to NgOptimizedImage docs, and add an FAQ. PR Close #51036 18 July 2023, 19:05:15 UTC
7410d68 refactor(compiler): add compiler flag to enable deferred blocks for testing (#51079) Adds a new compiler option that will allow `defer` (and other) blocks to be enabled when writing unit tests. PR Close #51079 18 July 2023, 17:05:29 UTC
89c84bf test(core): update runtime error list to include deps tracker error (#50980) The previous commits add a new runtime error code (RUNTIME_DEPS_INVALID_IMPORTED_TYPE) which needs to be added to the golden for the tests to pass. PR Close #50980 18 July 2023, 14:04:39 UTC
back to top