-
Notifications
You must be signed in to change notification settings - Fork 27k
Comparing changes
Open a pull request
base repository: angular/angular
base: 16.0.4
head repository: angular/angular
compare: 16.0.5
- 19 commits
- 59 files changed
- 10 contributors
Commits on Jun 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 19d6b9a - Browse repository at this point
Copy the full SHA 19d6b9aView commit details -
build: update dependency eslint-plugin-jsdoc to v46 (#50524)
See associated pull request for more information. PR Close #50524
Configuration menu - View commit details
-
Copy full SHA for 79bbf12 - Browse repository at this point
Copy the full SHA 79bbf12View commit details -
fix(compiler): do not remove comments in component styles (#50346)
Prior to this commit, comments in CSS were being removed. This caused inline sourcemaps to break to the shift in lines. This caused sourcemaps to break in the ESBuild based builder as this always adds comments at the top of the file with the filename. Example ```css /* src/app/app.component.scss */ * { color: red; background: transparent; } /*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3NyYy9hcHAvYXBwLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBOzs7Ozs7Ozs7Q0FBQTtBQVdBO0VBQ0UsVUFBQTtFQUNBLHVCQUFBO0FBREYiLCJzb3VyY2VzQ29udGVudCI6WyIvL01FRElBIFFVRVJZIE1BTkFHRVJcbi8qXG4gIDAgLSA2MDA6IFBob25lXG4gIDYwMCAtIDkwMDogVGFibGV0IHBvcnRyYWl0XG4gIDkwMCAtIDEyMDA6IFRhYmxldCBsYW5kc2NhcGVcbiAgMTIwMCAtIDE4MDA6IE5vcm1hbCBzdHlsZXNcbiAgMTgwMCsgOiBCaWcgRGVza3RvcFxuICAxZW0gPSAxNnB4XG4gIFRoZSBzbWFsbGVyIGRldmljZSBydWxlcyBhbHdheXMgc2hvdWxkIHdyaXRlIGJlbG93IHRoZSBiaWdnZXIgZGV2aWNlIHJ1bGVzXG4gIEZpeGluZyBPcmRlciA9PiBCYXNlICsgVHlwb2dyYXBoeSA+PiBHZW5lcmFsIExheW91dCArIEdyaWQgPj4gUGFnZSBMYXlvdXQgKyBDb21wb25lbnRcbiovXG5cbioge1xuICBjb2xvcjogcmVkO1xuICBiYWNrZ3JvdW5kOiB0cmFuc3BhcmVudDtcbn1cbiJdLCJzb3VyY2VSb290IjoiIn0= */ ``` Closes #50308 PR Close #50346Configuration menu - View commit details
-
Copy full SHA for 703b8fc - Browse repository at this point
Copy the full SHA 703b8fcView commit details
Commits on Jun 2, 2023
-
fix(zone.js): patch entire promise in node (#50552)
In #49144 we introduced a change to only path `Promise.prototype.then` due to Node.js `SafePromise` complaining about `Promise.prototype.then` called on incompatible receiver. This however introduced a number of regressions. This commit reverts this change and re-introduces the changes to patch the entire promise on Node. The original `SafePromise` problem is no longer reproducible as of Node.js version 18.13+ as it was addressed as part of nodejs/node#45175. While the Angular CLI does not yet generate ESM server bundles, users using ESM with dynamic imports will require using Node.js 18.13 or later. Closes #50513, closes #50457, closes #50414 and closes #49930 PR Close #50552
Configuration menu - View commit details
-
Copy full SHA for 9d7991a - Browse repository at this point
Copy the full SHA 9d7991aView commit details
Commits on Jun 6, 2023
-
fix(docs-infra): replace use of turbo on StackBlitz with npm (#50576)
Turbo is being deprecated and can be replaced by npm with some tweaks. In particular, the installation step needs `--legacy-peer-deps` to mimic turbo's behaviour. PR Close #50576
Configuration menu - View commit details
-
Copy full SHA for 7106b2f - Browse repository at this point
Copy the full SHA 7106b2fView commit details -
docs: Fix punctuation for better consistency (#50560)
This is to fix a punctuation issue on the "Tour of Heroes - Introduction" page for better consistency. PR Close #50560
Configuration menu - View commit details
-
Copy full SHA for 5cfb6ca - Browse repository at this point
Copy the full SHA 5cfb6caView commit details -
fix(core): wait for HTTP in
ngOnInitcorrectly before server render (…Configuration menu - View commit details
-
Copy full SHA for c992109 - Browse repository at this point
Copy the full SHA c992109View commit details -
build: update eslint dependencies to v5.59.9 (#50584)
See associated pull request for more information. PR Close #50584
Configuration menu - View commit details
-
Copy full SHA for 6f092c9 - Browse repository at this point
Copy the full SHA 6f092c9View commit details -
build: update github/codeql-action action to v2.3.6 (#50585)
See associated pull request for more information. PR Close #50585
Configuration menu - View commit details
-
Copy full SHA for af4fa9a - Browse repository at this point
Copy the full SHA af4fa9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef35ccd - Browse repository at this point
Copy the full SHA ef35ccdView commit details -
fix(core): incorrectly throwing error for self-referencing component (#…
Configuration menu - View commit details
-
Copy full SHA for 2b6da93 - Browse repository at this point
Copy the full SHA 2b6da93View commit details
Commits on Jun 7, 2023
-
fix(zone.js): enable monkey patching of the
queueMicrotask()API in…Configuration menu - View commit details
-
Copy full SHA for 4b16884 - Browse repository at this point
Copy the full SHA 4b16884View commit details -
fix(platform-server): surface errors during rendering (#50587)
Prior to this change in some cases errors tht happen during routing were not being surfaced. This is due to the fact that the router has floating promises, and the platform was being destroyed prior to these being settled. PR Close #50587
Configuration menu - View commit details
-
Copy full SHA for c0d4086 - Browse repository at this point
Copy the full SHA c0d4086View commit details -
Configuration menu - View commit details
-
Copy full SHA for eef1cbb - Browse repository at this point
Copy the full SHA eef1cbbView commit details -
build: update dependency get-port to v7 (#50566)
See associated pull request for more information. PR Close #50566
Configuration menu - View commit details
-
Copy full SHA for d2b205e - Browse repository at this point
Copy the full SHA d2b205eView commit details -
build: update dependency gulp-conventional-changelog to v3 (#50598)
See associated pull request for more information. PR Close #50598
Configuration menu - View commit details
-
Copy full SHA for 9035b88 - Browse repository at this point
Copy the full SHA 9035b88View commit details -
refactor(bazel): Circuit out ts semantic check in local mode compilat…
…ion (#50486) In local mode compilation the TS semantic check issues tons of diagnostics due to the fact that the file dependencies (.d.ts files) are not available in the program. So it needs to be disabled. This commit should not cause any issue for the exsiting projects as it just removes a diagnostic in the local compilation mode. PR Close #50486
Configuration menu - View commit details
-
Copy full SHA for 84912e8 - Browse repository at this point
Copy the full SHA 84912e8View commit details -
refactor(compiler-cli): Remove .d.ts files transformer in local compi…
Configuration menu - View commit details
-
Copy full SHA for c5facb9 - Browse repository at this point
Copy the full SHA c5facb9View commit details
Commits on Jun 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 992ce2d - Browse repository at this point
Copy the full SHA 992ce2dView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 16.0.4...16.0.5