sort by:
Revision Author Date Message Commit Date
6769df7 release: cut the v13.1.0-next.3 release (#44334) PR Close #44334 01 December 2021, 21:25:00 UTC
f1f6e71 docs: release notes for the v13.0.3 release (#44333) PR Close #44333 01 December 2021, 21:15:06 UTC
e65a245 feat(core): add migration to remove entryComponents (#44322) Adds an automated migration that will drop any usages of `entryComponents` from `@NgModule` and `@Component`. PR Close #44322 01 December 2021, 20:03:14 UTC
f7ea524 refactor(docs-infra): replace use of deprecated `Compiler` with `createNgModuleRef()` (#44293) Remove a use of the deprecated `Compiler` class in `ElementsLoader` and use the `createNgModuleRef()` function instead. PR Close #44293 01 December 2021, 19:56:47 UTC
15d38a1 refactor(docs-infra): remove obsolete ViewEngine code path from `ElementsLoader` (#44293) Remove a code path that was only reached in ViewEngine mode and is now (with the removal of ViewEngine) obsolete. PR Close #44293 01 December 2021, 19:56:47 UTC
4192ab4 build: update dependency saucelabs to v7 (#44321) PR Close #44321 01 December 2021, 19:56:12 UTC
1922032 refactor(compiler-cli): dismantle View Engine implementation of ngc (#44269) This commit does a first-pass removal of the View Engine infrastructure in compiler-cli. A more in-depth cleanup is necessary and large parts of the View Engine compiler infrastructure remain within `@angular/compiler`, this is just a first cleanup step. PR Close #44269 01 December 2021, 18:36:30 UTC
4e6281f refactor(bazel): remove metadata collection from `ngc_wrapped` (#44269) The generated metadata is obsolete now that ViewEngine is no longer used, so this commit removes the generation of those file from `ngc_wrapped`. This is needed to allow removal of the metadata collector in a subsequent commit. PR Close #44269 01 December 2021, 18:36:30 UTC
604636e refactor(compiler-cli): move version number helpers out of diagnostics subfolder (#44269) As a preparation for the removal of the ViewEngine parts in `compiler-cli`, this commit moves the version number helper functions up one level such that the whole `diagnostics` subfolder can be removed. PR Close #44269 01 December 2021, 18:36:30 UTC
3f6d8f3 refactor(forms): minor refactoring of `SelectMultipleControlValueAccessor` (#44261) This commit updates the code of the `SelectMultipleControlValueAccessor` to: - improve typings to make them more precise - updates the note that refers to IE, but we still can not remove the branch since it's needed for Universal (that uses Domino) PR Close #44261 30 November 2021, 21:43:11 UTC
5124c06 ci: Update availability for pullapprove (#44312) Follows the v3 pullapprove docs here: https://docs.pullapprove.com/config/availability/ PR Close #44312 30 November 2021, 21:41:53 UTC
a532040 Revert "feat(core): add migration to remove entryComponents (#44308)" (#44318) This reverts commit 5dff077d505da60ddead9f2ff2ddaaaea6feeb4a. PR Close #44318 30 November 2021, 21:31:17 UTC
24baa5e docs(forms): add an example for async validator token (#44301) to be consistent with the validator token, have the example code for the async validator token. PR Close #44301 30 November 2021, 19:24:26 UTC
96dfc7a refactor(core): make the error messages tree shakable (#44219) Long error messages can be tree-shaken in the production build. Doing this, we will keep the throw and remove the long error messages. See: https://github.com/angular/angular/pull/44210#pullrequestreview-810615849 PR Close #44219 30 November 2021, 19:17:39 UTC
ca5b9b5 refactor(forms): eagerly initialize data members (#44292) Data members in AbstractControl should be eagerly initialized to address issue/24571. This eliminates the need to constantly check for truthiness and makes code much more readable. More PRs to follow to address issue/24571. PR Close #44292 30 November 2021, 19:15:16 UTC
f058109 release: bump angular-in-web-memory-api package to 0.13.0 (#44313) PR Close #44313 30 November 2021, 19:12:50 UTC
95ed446 refactor(docs-infra): clean up entryComponents usages (#44257) Cleans up some usages of `entryComponents` from AIO. PR Close #44257 30 November 2021, 18:49:45 UTC
5dff077 feat(core): add migration to remove entryComponents (#44308) Adds an automated migration that will drop any usages of `entryComponents` from `@NgModule` and `@Component`. PR Close #44308 30 November 2021, 18:47:03 UTC
cd502b7 ci: update owners for fw-benchmarks (#44304) Add alxhub and jelbourn to owners for fw-benchmarks group. PR Close #44304 30 November 2021, 18:45:59 UTC
9600688 build: fix lint errors in build-saucelabs legacy script (#44311) Fixes lint errors in the build-saucelabs legacy script. Likely this only surfaces now after merge due to some other lint-affecting changes landing just before the script landed. PR Close #44311 30 November 2021, 17:23:24 UTC
d56e3f4 feat(core): support TypeScript 4.5 (#44164) Adds support for TypeScript 4.5. Includes the following changes: * Bumping the package versions. * Fixing a few calls to `createExportSpecifier` and `createImportSpecifier` that require an extra parameter. * Adding some missing methods to the TS compiler hosts. * Fixing an issue in the TS mocks for the ngcc tests where a regex was too agressive and was trying to match a path like `/node_modules/@typescript/lib-es5`. * Accounting for type-only import specifiers when reporting DI errors (see #43620). Fixes #43620. PR Close #44164 30 November 2021, 16:59:02 UTC
0fcf18d ci: increase jasmine default timeout for saucelabs legacy tests (#44281) Previously, when we did not bundle tests, we also had the jasmine default timeout increased to 15000ms. This commit re-introduces this increased timeout by also maintaining a custom test init file for the legacy saucelab jobs. This is desirable as all of the Saucelabs test code is local in the `tools/legacy-saucelabs` folder. PR Close #44281 30 November 2021, 16:56:05 UTC
444b2c4 test: remove unused router karma legacy setup (#44281) Removes unused router karma legacy test setup that just caused unnecessary confusion. PR Close #44281 30 November 2021, 16:56:05 UTC
6c1573b fix(compiler-cli): downlevel transform incorrectly extracting constructor parameters for nested classes (#44281) The downlevel decorator transform (commonly used in the CLI and other tooling of the ecosystem for enabling JIT ES2015+), is currently incorrectly dealing with nested classes. The transform will accidentally visit nested classes (in a constructor) multiple times and generate duplicated instances of the `ctorParameters` fields. This does not sound like an issue at first, but the duplicated `ctorParameters` fields will miss significant type information that has been elided by the first visit, resulting in generated code like the following: ```js let MyClass = /* @__PURE__ */ __name(class MyClass extends UpgradeNg1ComponentAdapter { constructor(scope, injector3, elementRef) { } }, "MyClass"); MyClass.ctorParameters = () => [ { type: void 0, decorators: [{ type: Inject, args: [$SCOPE] }] }, { type: Injector }, { type: ElementRef } ]; MyClass.ctorParameters = () => [ { type: void 0 }, // <---- NOTE! { type: Injector }, { type: ElementRef } ]; ``` PR Close #44281 30 November 2021, 16:56:05 UTC
a87fcaa test: re-add downlevel decorator transform test (#44281) Re-adds the accidentally deleted downlevel decorator transform test. PR Close #44281 30 November 2021, 16:56:05 UTC
43dfab4 fix(core): destroy hooks not set up for `useClass` provider using `forwardRef` (#44281) Fixes an issue where destroy hooks are not set up for `useClass` providers that rely on `forwardRef` for passing the actual class reference. Currently the destroy hooks are not captured because forward refs are not resolved for class providers. In ES2015+ this issue becomes even more critical if arrow-functions are used for e.g. `useClass: () => forwardRef(..)`. This is because arrow functions do not have a prototype, unlike in ES5 where the function assigned to `useClass` would always have a prototype. In ES2015+ a runtime exception as followed is returned (and doesn't give any useful indication of the forwardRef issue): ``` TypeError: Cannot read properties of undefined (reading 'ngOnDestroy') at registerDestroyHooksIfSupported (dist/packages/core/src/render3/di_setup.ts:196:35 <- dist/legacy-test-bundle.spec.js:41508:37) at resolveProvider (dist/packages/core/src/render3/di_setup.ts:153:9 <- dist/legacy-test-bundle.spec.js:41485:11) at resolveProvider (dist/packages/core/src/render3/di_setup.ts:70:7 <- dist/legacy-test-bundle.spec.js:41445:9) at providersResolver (dist/packages/core/src/render3/di_setup.ts:54:5 <- dist/legacy-test-bundle.spec.js:41438:7) at Object.definition.providersResolver (dist/packages/core/src/render3/features/providers_feature.ts:48:18 <- dist/legacy-test-bundle.spec.js:41600:16) at resolveDirectives (dist/packages/core/src/render3/instructions/shared.ts:1179:40 <- dist/legacy-test-bundle.spec.js:35611:17) at elementStartFirstCreatePass (dist/packages/core/src/render3/instructions/element.ts:40:7 <- dist/legacy-test-bundle.spec.js:38432:27) at ɵɵelementStart (dist/packages/core/src/render3/instructions/element.ts:87:7 <- dist/legacy-test-bundle.spec.js:38453:43) at ɵɵelement (dist/packages/core/src/render3/instructions/element.ts:180:3 <- dist/legacy-test-bundle.spec.js:38510:5) at MultipleFormControls_Template (ng:///MultipleFormControls.js:9:9) ``` PR Close #44281 30 November 2021, 16:56:05 UTC
b23ce15 build: bundle spec files for saucelabs legacy job (#44281) Bundle spec files similar to how it is done within the Angular Components repo. This should simplify the setup and also speed up the Saucelab job as only a single spec bundle would need to be downloaded, compared to having to load hundreds of files through the Saucelabs tunnel. Also makes a couple of tests more robust with the emulators/and accounts for ES2015 test runner changes. The tests should be less reluctant to such build process changes. Note for reviewers: Some imports have been simplified here. This work came from Joey's original WIP for this. It's unclear to me whether this is still needed, but it sounded like this was necessary for the ESBuild bundling to work. I have robusted the module resolution plugin though, so I doubt it's still needed. At the same time though: Not worth reverting/trying as these changes are nice to have anyway! Co-Authored-By: Joey Perrott <josephperrott@gmail.com> Co-Authored-By: Paul Gschwendtner <paulgschwendtner@gmail.com> PR Close #44281 30 November 2021, 16:56:04 UTC
61e0234 ci: attempt to increase stability of saucelabs legacy job (#44281) This is an attempt to increase the stability of the Saucelabs legacy job by using an emulator recommended by the Saucelabs platform configurator, explicitly specifying the appium server version etc. PR Close #44281 30 November 2021, 16:56:04 UTC
3aafa76 fix(language-service): Correctly parse inputs and selectors with dollar signs (#44268) When we are going to the definition of an input, we find _both_ the definition of the input _and_ also look for any directives which have a selector that matches the input. For example: ``` @Directive({ selector: '[greeting]' }) export class MyDir { @Input() greeting!: string; } ``` With this commit, we now correctly handle the case where inputs and/or selectors have a dollar sign in them. The dollar sign has special meaning in CSS, but when we encounter the dollar in a template, we need to escape it when used as a selector so that it is taken as a dollar literal rather than a character with special meaning. Previously, we were not escaping the dollar sign and the CSS parsing logic would throw an error. The change in this commit prevents that error from happening, but a `try...catch` is still added in case there is another unhandled use-case. If this happens, we do not want the `goToDefinition` operation to completely fail. Fixes https://github.com/angular/vscode-ng-language-service/issues/1574 PR Close #44268 29 November 2021, 22:22:12 UTC
708eb8c docs: fix instructions for debugging a karma test (#44244) PR Close #44244 29 November 2021, 22:21:42 UTC
ef140a7 fix(docs-infra): fix the main content layout (#44282) Fix the layout of the main docs content on both small and large screens. On small screens, content could overlap with the floating ToC, while on large screens the content was not centered correctly (see screenshots below). (For reference, this was accidentally broken in #44236.) **Before:** - ![content on small screen before](https://user-images.githubusercontent.com/8604205/143491577-97255ee7-f79d-4c95-9287-ff2afeb5b29d.png) - ![content on large screen before](https://user-images.githubusercontent.com/8604205/143491582-2c19f7a2-d5ad-475a-a58b-e449efc492a9.png) **After:** - ![content on small screen after](https://user-images.githubusercontent.com/8604205/143491580-a405f650-cd4a-4804-8e65-422fc91f4c6e.png) - ![content on large screen after](https://user-images.githubusercontent.com/8604205/143491585-d0d2e914-a1a2-45ba-8e6b-b9546aa80354.png) PR Close #44282 29 November 2021, 22:21:14 UTC
8077695 test(ngcc): use `main` property in test `package.json` files for UMD tests (#44245) Previously, the mock packages created for `UmdDependencyHost`'s tests, specified the entry-point as `esm2015`. This does not matter in tests, since the packages are explicitly passed to the `UmdDependencyHost` (while in reality the appropriate host would be determined based on the name of the entry-point property - in this case, detecting the entry-point as ES2015 and not UMD). However, in order to avoid confusion, this commit updates the test packages to use `main` (the default property used for the UMD format in `package.json` files). PR Close #44245 29 November 2021, 17:38:06 UTC
de0975c fix(ngcc): correctly report error when collecting dependencies of UMD module (#44245) Previously, the ngcc `UmdReflectionHost` would throw a misleading error when trying to collect dependencies of an invalidly formatted UMD module. This happened because an error would be thrown while trying to construct the error message for the actual error, by calling `getText()` on certain TypeScript AST nodes. See https://github.com/angular/angular/issues/44019#issuecomment-959954121 for a more in-depth explanation. This commit ensures `getText()` can be safely called on TypeScript AST nodes when collecting dependencies of UMD modules. PR Close #44245 29 November 2021, 17:38:06 UTC
707bf41 test(ngcc): run more tests against more supported UMD formats (#44245) This commit utilizes the infrastructure added in the previous commit to run more tests against more of the supported UMD formats. This shall give us more confidence that all aspects of UMD processing work correctly with the various formats. PR Close #44245 29 November 2021, 17:38:05 UTC
557857a test(ngcc): use helper function for generating UMD modules for tests (#44245) Previously, several ngcc test suites used their own helper to generate test UMD modules. This commit switches to using the same helper for generating UMD modules across test suites. This improves DRYness (ensuring changes/fixes to the UMD format need only be applied once) and makes it easier to test different UMD formats in all test suites. PR Close #44245 29 November 2021, 17:38:05 UTC
3c8a5d1 fix(ngcc): support the UMD wrapper function format emitted by Webpack (#44245) Previously, ngcc could only handle UMD modules whose wrapper function was implemented as a `ts.ConditionalExpression` (i.e. using a ternary operator). This is the format emitted by popular bundlers, such as Rollup. This commit adds support for a different format, that uses `if/else` statements, which is what is [emitted by Webpack][1]. [1]: https://webpack.js.org/configuration/output/#type-umd Fixes #44019 PR Close #44245 29 November 2021, 17:38:05 UTC
e145b7a refactor(ngcc): make it easy to support more UMD wrapper function formats (#44245) Previously, ngcc could only handle UMD modules whose wrapper function was implemented as a `ts.ConditionalExpression` (i.e. using a ternary operator). This is the format emitted by popular bundlers, such as Rollup. However, this failed to account for a different format, using `if/else` statements, such as the one [emitted by Webpack][1]. This commit prepares ngcc for supporting different UMD wrapper function formats by decoupling the operation of parsing the wrapper function body to capture the various factory function calls and that of operating on the factory function calls (for example, to read or update their arguments). In a subsequent commit, this will be used to add support for the Webpack format. [1]: https://webpack.js.org/configuration/output/#type-umd PR Close #44245 29 November 2021, 17:38:05 UTC
8fae7df fix(docs-infra): add safari-only media query for aio footer flex (#44266) safari handles rem based media queries differently so in order to provide a similar user-experience to safari users, add a new safari-only media query for the footer's flex container resolves #44242 PR Close #44266 29 November 2021, 17:37:44 UTC
1284d00 refactor(platform-browser-dynamic): remove private export of `ResourceLoaderImpl` (#44267) This type was exported for the ViewEngine compiler as it needed to reference the class in its DI codegen. This is no longer a requirement with Ivy, hence the private export can be removed. This change prevents an import of `@angular/compiler` to be referenced in the .d.ts file of `@angular/platform-browser-dynamic`, which is beneficial for application compilations as that prevents the `@angular/compiler` .d.ts files from being included in the `ts.Program` of an application. Closes #44157. PR Close #44267 29 November 2021, 17:37:00 UTC
47f1c0f fix(docs-infra): ensure deprecated styling is not overridden (#44275) The `.code-anchor` styling was overriding the `.deprecated-api-item` styling. The `text-decoration` is not needed on `.code-anchor` since it inherits this from the `a` rule in the typography.scss file. Fixes #44264 PR Close #44275 29 November 2021, 17:36:23 UTC
594bd12 test(core): clean up tests relying on entryComponents (#44276) Cleans up all the tests that had to declare a separate module in order to pass in `entryComponents` when creating components dynamically. This covers almost all of the `entryComponents` usages, except for a few which I've left for now, because they're testing some of the existing leftover `entryComponents` logic in core. PR Close #44276 29 November 2021, 17:36:04 UTC
2c954bb docs: fix filename of the file containing the 'routes'-array in lazy loading guide (#44297) PR Close #44297 29 November 2021, 17:35:44 UTC
b31973c test: remove Ivy/ViewEngine switch helpers and obsolete tests (#44120) This commit removes special functions that were used to run tests in ViewEngine or Ivy only. Since ViewEngine is deprecated and we no longer run ViewEngine tests on CI, we can cleanup those special helpers and ViewEngine-only tests. PR Close #44120 24 November 2021, 19:42:39 UTC
d8e6577 refactor(ngcc): remove Ivy switch marker transform (#43891) ngcc used to rewrite `PRE_R3` markers to become `POST_R3` in order to switch the runtime implementation in `@angular/core` from View Engine to Ivy. Now that `@angular/core` is published as native Ivy package and the runtime switch code has been removed, there is no need for ngcc to perform this transform anymore. PR Close #43891 24 November 2021, 19:26:25 UTC
b2ac81d refactor(compiler-cli): remove Ivy switch transform (#43891) Now that the core package has been cleaned up to no longer contain Ivy switch code, the transform to switch the `PRE_R3` markers to become `POST_R3` is deleted as well. PR Close #43891 24 November 2021, 19:26:25 UTC
b06e398 fix(core): add missing info about a component in the "pipe could not be found" error message (#44081) Add error handling for pipe with component class name in which it has a problem. Add it in ngDevMode, so that it will be a tree-shake away from the production bundle. PR Close #44081 24 November 2021, 18:57:11 UTC
83bbbd3 docs: document `ng update` support guarantees (#44142) PR Close #44142 24 November 2021, 18:56:32 UTC
adaff41 ci: Upgrade tsec to 0.2.0. (#44205) tools/tsec.bzl is now part of tsec. Remove from Angular repo and update BUILD.bazel files. PR Close #44205 24 November 2021, 18:55:58 UTC
0ad0054 build: update repository to node@16 locally (#44211) As node 16 is now active LTS, updating to node 16 is a better choice for our own development. Notably its support for M1 chips is an important value add for us. PR Close #44211 24 November 2021, 18:55:33 UTC
29c8fee test(common): change fallback default URL in MockPlatformLocation (#44211) In node@16 the URL constructor fails for for a malformed URL such as http://<empty>/. Instead http://_empty_ is used as this conveys the same information in tests but is correctly formed. PR Close #44211 24 November 2021, 18:55:33 UTC
7b0e9b0 docs(animations): remove incorrect information regarding animateChild (#44216) Remove incorrect information present in the angular.io animations documentation stating that animateChild does not work with route transition animations as that turned out not to be true This PR effectively reverts the changes make in PR: #44014 For more context see issue #30477 PR Close #44216 24 November 2021, 18:54:22 UTC
6ae3858 docs(core): improve viewEncapsulation documentation (#44151) Slighlty improve the `viewEncapsulation` documentation (both in code comments and content files) to make it more clear and understandable. See https://github.com/angular/angular/pull/44099#discussion_r745890903 PR Close #44151 24 November 2021, 18:53:45 UTC
2bf131a fix(docs-infra): move aio footer inside mat-sidenav-container (#44236) currently the aio footer sits outside the mat-sidenav-container, as a result when the mat-sidenav in over mode appears, the footer is not placed under the sidenav backdrop, move the footer inside the mat-sidenav-container so that it does PR Close #44236 24 November 2021, 17:04:01 UTC
3697acc build(docs-infra): upgrade cli command docs sources to 481eb4544 (#44250) Updating [angular#master](https://github.com/angular/angular/tree/master) from [cli-builds#master](https://github.com/angular/cli-builds/tree/master). ## Relevant changes in [commit range](https://github.com/angular/cli-builds/compare/b8e198ba5...481eb4544): **Modified** - help/new.json PR Close #44250 24 November 2021, 17:03:38 UTC
4527931 docs: fix issue link in v13 release notes (#44258) See: #44181 PR Close #44258 24 November 2021, 17:02:57 UTC
414d5fe ci: add jessicajaniuk to pullapprove groups (#44255) This adds jessicajaniuk to fw-animations and fw-testing. PR Close #44255 24 November 2021, 17:02:30 UTC
8c71b9f refactor: delete the View Engine runtime (#43884) This commit removes the View Engine runtime. Itself, this change is relatively straightforward, but it represents the final step in a multi-year journey. It's only possible due to the hard work of many current and former team members and collaborators, who are too numerous to list here. Co-authored-by: Alan Agius <alan.agius4@gmail.com> Co-authored-by: Andrew Kushnir <akushnir@google.com> Co-authored-by: Andrew Scott <atscott01@gmail.com> Co-authored-by: Andrew Seguin <andrewjs@google.com> Co-authored-by: Cédric Exbrayat <cedric@ninja-squad.com> Co-authored-by: Charles Lyding <19598772+clydin@users.noreply.github.com> Co-authored-by: Dave Shevitz <dshevitz@google.com> Co-authored-by: Doug Parker <dgp1130@users.noreply.github.com> Co-authored-by: Dylan Hunn <dylhunn@gmail.com> Co-authored-by: Emma Twersky <emmatwersky@google.com> Co-authored-by: George Kalpakas <kalpakas.g@gmail.com> Co-authored-by: Igor Minar <iminar@google.com> Co-authored-by: Jeremy Elbourn <jelbourn@google.com> Co-authored-by: Jessica Janiuk <jessicajaniuk@google.com> Co-authored-by: JiaLiPassion <JiaLi.Passion@gmail.com> Co-authored-by: Joey Perrott <josephperrott@gmail.com> Co-authored-by: Joost Koehoorn <joost.koehoorn@gmail.com> Co-authored-by: Kristiyan Kostadinov <crisbeto@abv.bg> Co-authored-by: Madleina Scheidegger <mscheid@google.com> Co-authored-by: Mark Thompson <2554588+MarkTechson@users.noreply.github.com> Co-authored-by: Minko Gechev <mgechev@gmail.com> Co-authored-by: Paul Gschwendtner <paulgschwendtner@gmail.com> Co-authored-by: Pawel Kozlowski <pkozlowski.opensource@gmail.com> Co-authored-by: Pete Bacon Darwin <pete@bacondarwin.com> Co-authored-by: Wagner Maciel <wagnermaciel@google.com> Co-authored-by: Zach Arend <zachzach@google.com> PR Close #43884 23 November 2021, 21:10:06 UTC
aadfad7 build: remove view engine build infrastructure (#43884) This commit removes --config=viewengine and makes Ivy the default for building Angular. PR Close #43884 23 November 2021, 21:10:06 UTC
bb9ff60 test: remove view-engine-only tests (#43884) This commit removes most tests that were designated as only covering View Engine code. It also removes tag filters from CI and local commands to run tests. In a few cases (such as with the packages/compiler tests), this tag was improperly applied, and certain test cases have been added back running in Ivy mode. This commit also empties `@angular/compiler/testing` as it is no longer necessary (this is safe since compiler packages are not public API). It can be deleted in the future. PR Close #43884 23 November 2021, 21:10:06 UTC
f44cb57 fix(router): prevent componentless routes from being detached (#44240) Currently, when deactivating a route, the detach method of the RouteReuseStrategy is always called even when we are dealing with a componentless route. If when using a custom strategy we attempt to detach a componentless route, an exception is thrown causing the navigation to break. This change prevents this from happening, by not triggering the detach of the route reuse strategy. Fixes #44239 PR Close #44240 23 November 2021, 17:12:27 UTC
2772eea refactor(core): clean up isDevMode for tree-shaking (#44210) Removing the usage of isDevMode with ngDevMode flag. This will make the dev-mode code tree-shakable from the production builds. PR Close #44210 23 November 2021, 17:11:59 UTC
40eb2f5 build: update dependency source-map-support to v0.5.21 (#44225) PR Close #44225 23 November 2021, 17:10:59 UTC
a0177c6 build: update angular (#44241) PR Close #44241 23 November 2021, 17:10:24 UTC
782b893 build: update dependency @angular-eslint/eslint-plugin-template to v13 (#44224) PR Close #44224 22 November 2021, 20:18:00 UTC
24b6353 fix(ngcc): ensure that ngcc does not write a lock-file into node_modules package directories (#44228) When executing, ngcc writes a lock-file that is used to coordinate multiple concurrent instances of ngcc. Previously, this file was written at `node_modules/@angular/compiler-cli/ngcc`, or similar depending upon the bundling of the package. But this causes problems for setups where `node_modules` package directories are expected to be read-only. Now, the lock-file is written as `.ngcc_lock_file` into the top of the `node_modules`, which is an acceptable place to store transient files. This change should help to unblock use of tools like pnpm and lerna, which can use symlinks to readonly package directories. PR Close #44228 22 November 2021, 17:55:13 UTC
f7dd0f8 build(docs-infra): update examples lockfile (#44232) In #44214, the `package.json` used to install dependencies for docs examples was updated, but the corresponding lockfile was not. Update the lockfile to keep it in sync with `package.json`. PR Close #44232 22 November 2021, 17:40:27 UTC
34c3ec6 build: update dependency @angular-eslint/eslint-plugin to v13 (#44223) PR Close #44223 22 November 2021, 17:36:00 UTC
6214636 docs: add two new overview pages: developer-guide-overview and understanding-angular-overview (#44091) PR Close #44091 20 November 2021, 00:12:10 UTC
c55ce75 refactor(bazel): always add `strictTemplates` option to `tsconfig.json` (#43674) `strictTemplates` was only conditionally added to the `tsconfig.json` file to avoid breaking the angular/components repo (see https://github.com/angular/angular/pull/43582#issuecomment-928567758). Components has been updated in https://github.com/angular/components/pull/23677, so this condition is no longer necessary and `strictTemplates` can always be included in `tsconfig.json` without breakage. PR Close #43674 19 November 2021, 22:28:03 UTC
53c99bb docs: add dynamic `import()` ES module change to v13 release notes (#44181) Closes angular/angular-cli#22159. See: https://github.com/angular/angular-cli/issues/22159#issuecomment-969251924 PR Close #44181 19 November 2021, 22:27:40 UTC
489cf42 fix(common): incorrect error type for XHR errors in `TestRequest` (#36082) Currently the `HttpClient` always wraps errors from XHR requests, but the underlying errors are always of type `ProgressEvent`, or don't have a native error if the status code is just indicating failure (e.g. 404). This behavior does not match in the `TestRequest` class provided by `@angular/common/http/testing` where errors are considered being of type `ErrorEvent`. This is incorrect because `ErrorEvent`s provide information for errors in scripts or files which are evaluated. Since the `HttpClient` never evaluates scripts/files, and also since XHR requests clearly are documented to emit `ProgressEvent`'s, we should change the `TestSupport` to retrieve such `ProgressEvent`'s instead of incompatible objects of type `ErrorEvent`. In favor of having a deprecation period, we keep supporting `ErrorEvent` in the `TestRequest.error` signature. Eventually, we can remove this signature in the future. Resources: * https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/error_event * https://developer.mozilla.org/en-US/docs/Web/API/ErrorEvent * https://xhr.spec.whatwg.org/#event-xhr-errpr Related to: https://github.com/angular/angular/issues/34748. DEPRECATED: `TestRequest` from `@angular/common/http/testing` no longer accepts `ErrorEvent` when simulating XHR errors. Instead instances of `ProgressEvent` should be passed, matching with the native browser behavior. PR Close #36082 19 November 2021, 21:26:52 UTC
53bdbc6 build: update angular (#44221) PR Close #44221 19 November 2021, 19:44:55 UTC
d8ae34a fix(docs-infra): remove negative margin (#44126) remove the top padding for the homepage article, instead of having that top padding and moving the element up via a negative bottom margin in the intro section note: the result is identical except for when the article's media query is applied, the difference is barely noticeable anyways PR Close #44126 19 November 2021, 19:32:29 UTC
9255d0b fix(docs-infra): fix aio homepage breaking on certain widths (#44126) the aio homepage has a fixed width for its hero content, that is not handling well certain window widths, fix that by removing the fixed width and tweaking related media queries PR Close #44126 19 November 2021, 19:32:29 UTC
48ca7dc fix(compiler-cli): interpret string concat calls (#44167) These changes add support for interpreting `String.prototype.concat` calls. We need to support it, because in TypeScript 4.5 string template expressions are transpiled to `concat` calls, rather than string concatenations. See https://github.com/microsoft/TypeScript/pull/45304. PR Close #44167 19 November 2021, 19:30:59 UTC
2e6b07a refactor(core): clean up leftover isDevMode usages (#44208) Removes a couple of leftover calls to `isDevMode`. PR Close #44208 19 November 2021, 19:30:20 UTC
b930547 fix(core): support cyclic metadata in TestBed overrides (#44215) The TestBed APIs to override metadata would crash when the metadata contained objects with cyclic references. Metadata overrides use the JSON serialized representation of a value to compare objects, which throws an error if the value has cyclic references. This commit avoids the error by replacing multiple occurrences of the same object using a unique string representation for the object. Fixes #43948 PR Close #44215 19 November 2021, 19:27:08 UTC
894aaea refactor(elements): remove unneeded Custom Elements polyfill from docs examples (#44214) In PR #43975, the `Angular Elements` guide was updated to remove mentions of the Custom Elements-related polyfills, since they are no longer necessary in v13+ (due to all CLI projects being ES2015+ and all supported browsers natively supporting Custom Elements). This commit updates the related docs example boilerplate to not include the unneeded `@webcomponents/custom-elements` polyfill. PR Close #44214 19 November 2021, 18:46:16 UTC
e397a4c docs(docs-infra): remove obsolete mention of skipping HTTPS-related audits (#44214) Since commit 6e405513942f675c6c64ff4cb4a62e0df649e26a, the `audit-web-app` script no longer needs to skip HTTPS-related audits. Update the docs comment to reflect that. PR Close #44214 19 November 2021, 18:46:16 UTC
7e121e4 build: update dependency @angular-eslint/builder to v13 (#44222) PR Close #44222 19 November 2021, 18:43:59 UTC
f4c1501 build: update dependency @angular-eslint/template-parser to v13 (#44226) PR Close #44226 19 November 2021, 18:43:11 UTC
76833aa build(docs-infra): upgrade cli command docs sources to b8e198ba5 (#44212) Updating [angular#master](https://github.com/angular/angular/tree/master) from [cli-builds#master](https://github.com/angular/cli-builds/tree/master). ## Relevant changes in [commit range](https://github.com/angular/cli-builds/compare/afd86f0cd...b8e198ba5): **Modified** - help/new.json PR Close #44212 18 November 2021, 21:30:26 UTC
155742e refactor(animations): improve some animations comments (#44203) Fix various typos and also improve sentences (by making them more clear or grammatically correct) present in comments inside the animations package PR Close #44203 18 November 2021, 21:12:54 UTC
213105c ci: add dylhunn to review groups for forms. (#44204) This is needed so I can review forms PRs that affect public API. PR Close #44204 18 November 2021, 18:24:28 UTC
88c6564 docs: remove tslint references from file structure document (guide/file-structure) (#44202) remove tslint references from the file structure documentation as angular cli no more generates tslint configuration files by default Fixes #44163 PR Close #44202 18 November 2021, 18:21:31 UTC
8330520 build: update dependency lighthouse to v9 (#44184) PR Close #44184 18 November 2021, 18:20:38 UTC
9c40f6c build: update extract js module output target to reflect latest API changes (#44145) The API of the `extract_js_module_output` rule has changed with the latest build of the shared dev-infra package. This commit adds the missing attributes to the targets using this rule, avoiding the CI failures as these attributes are mandatory. Note: For NPM packages the linker mappings are not relevant, neither do we want to include sources from the external NPM packages inside those. PR Close #44145 18 November 2021, 18:17:14 UTC
6d8a889 build: update angular (#44145) PR Close #44145 18 November 2021, 18:17:14 UTC
38c02e1 fix(forms): make the `FormControlStatus` available as a public API (#44183) This commit makes the `FormControlStatus` symbol available as a public API. The symbol itself was intended to become a part of the public API, but due to the missing re-export, the symbol remains private. Fixes #44176. PR Close #44183 17 November 2021, 18:37:28 UTC
65597d6 refactor(forms): inherit `ngOnChanges` hooks from the base class (#43945) This commit updates the code of the min/max and minlength/maxlength validator directives to inherit `ngOnChanges` hooks from the base class (the `AbstractValidatorDirective` one), rather than implementing the hooks on the child classes. This was needed to avoid issues with hooks inheritance in ViewEngine, but since it's deprecated, the code can be cleaned up. PR Close #43945 17 November 2021, 18:36:40 UTC
6474c3d ci: remove `cla/google` from required statues (#44197) The CLA tools no longer report statuses as it is being run as Github actions. PR Close #44197 17 November 2021, 18:35:10 UTC
6a2d8e2 docs: remove redudant word in goldens/README.md (#44192) PR Close #44192 17 November 2021, 18:34:08 UTC
e0c7360 build(docs-infra): ensure overloaded functions render correctly (#44090) If there were 1 or 2 additional overloads on a free-standing function in the API the overloads were not being shown. Also the type of overload parameters were not being escaped correctly. PR Close #44090 17 November 2021, 18:33:10 UTC
dbc46d6 docs: deprecate factory-based signature of the `downgradeModule` function (#44090) DEPRECATED: The `downgradeModule` function calls with NgModule factories are deprecated. Please use NgModule class based `downgradeModule` calls instead. PR Close #44090 17 November 2021, 18:33:10 UTC
80a90f0 docs: add profanis to GDE resources (#44147) PR Close #44147 17 November 2021, 18:32:25 UTC
90a4ae1 release: cut the v13.1.0-next.2 release (#44201) 17 November 2021, 17:48:22 UTC
b558d4e docs: release notes for the v13.0.2 release (#44200) 17 November 2021, 17:45:42 UTC
6c618de docs: Adding type annotation to ngOnInit() to make it consistent with the class structure produced by the CLI (#43579) PR Close #43579 16 November 2021, 22:09:51 UTC
130f06e docs: add armen vardanyan to GDE resources (#43919) PR Close #43919 16 November 2021, 22:09:01 UTC
8ce9a60 build: update to latest commit for feature-request github action (#44191) Updating as this fixes a permissions error. PR Close #44191 16 November 2021, 22:08:24 UTC
back to top