Rahat Ahmed
157c30e3e0
docs(core): Fix typo in DI docs ( #55563 )
...
PR Close #55563
2024-09-20 16:54:45 +02:00
Tobi
1ee7ec5204
docs(http): heads up about provider ordering ( #56518 )
...
PR Close #56518
2024-09-20 15:29:16 +02:00
Angular Robot
e0ead9212f
build: update io_bazel_rules_sass digest to 8dac332 ( #57892 )
...
See associated pull request for more information.
PR Close #57892
2024-09-20 11:13:49 +02:00
Ulises
e53f753ee1
docs: update installation guide ( #57701 )
...
PR Close #57701
2024-09-20 11:09:03 +02:00
Matthieu Riegler
07a485fdba
docs(docs-infra): Add dedicated support for decorators. ( #57595 )
...
PR Close #57595
2024-09-19 14:16:33 -07:00
Ankur Mishra
88457ab9be
docs: Update Making HTTP requests best practices example ( #57876 )
...
PR Close #57876
2024-09-19 14:18:29 +02:00
Luke Schlangen
47d5341fc5
docs: fix closing tag slash location ( #57405 )
...
PR Close #57405
2024-09-19 12:50:28 +02:00
Harieswaran D
54a0ea785f
docs: suggesting a typo error in the document ( #57627 )
...
PR Close #57627
2024-09-19 12:49:52 +02:00
Charles Lyding
ad9ba9a95f
build(docs-infra): use chunk optimizer for adev builds ( #56830 )
...
The Angular build system recently introduced an opt-in chunk optimizer
for application builds. This is now enabled for adev production builds.
It reduces the initial chunk count from 14 to 1 JavaScript file. While
the raw initial total file size does increase by 0.75% (7.3kB), the total
estimated transfer size decreases by 8% (17.8kB). Not only does this
reduce the amount of data that must be sent over the network but it also
reduces the amount of HTTP requests that must be made by the browser.
While the injected HTML module preloads mitigate request cascades, not
needing to make the requests is even better.
PR Close #56830
2024-09-19 12:44:51 +02:00
Angular Robot
1701c40f08
build: update cross-repo angular dependencies ( #57857 )
...
See associated pull request for more information.
Closes #57833 as a pr takeover
PR Close #57857
2024-09-19 11:20:26 +02:00
Alan Agius
6f0042e4a1
test: disable cache and analytics ( #57863 )
...
In Bazel, the `CI` environment variable is not set due to its hermetic nature. As a result, caching is enabled by default, which includes Vite pre-bundling. This is unnecessary in CI environments.
In some cases, this leads to errors during CI runs when the Vite build is closed or canceled prematurely, resulting in the following errors:
```
Error: R] The build was canceled
Error: R] Terminating worker thread [plugin angular-vite-optimize-deps]
```
PR Close #57863
2024-09-19 11:14:23 +02:00
Angular Robot
ac3fc9a794
build: update io_bazel_rules_sass digest to 1f2bb53 ( #57860 )
...
See associated pull request for more information.
PR Close #57860
2024-09-18 17:48:06 +02:00
Pawel Kozlowski
2f96a348be
release: cut the v18.2.5 release
18.2.5
2024-09-18 17:29:45 +02:00
Matthieu Riegler
0365f38492
docs: adapt the NgModule to the new default : standalone ( #57532 )
...
PR Close #57532
2024-09-18 16:53:27 +02:00
Matthieu Riegler
b5d70b86b5
docs: add redirect for pipes guide ( #57706 )
...
cherry-pick of #57681 that should have targeted `main`. This commit also fixes the wild card redirection
PR Close #57706
2024-09-18 16:51:45 +02:00
zdwg42
5d19174cba
docs(forms): fix template-driven docs link ( #57867 )
...
PR Close #57867
2024-09-18 16:50:18 +02:00
Kristiyan Kostadinov
e685ed883a
fix(compiler-cli): extended diagnostics not validating ICUs ( #57845 )
...
The visitor that all extended diagnostics are based on hadn't implemented the `visitIcu` method which meant that it wasn't detecting any code inside of them.
Fixes #57838 .
PR Close #57845
2024-09-18 09:48:21 +02:00
Joey Perrott
7fdb47956b
build: update dependency @inquirer/prompts to v6 ( #57830 )
...
update dependency @inquirer/prompts to v6
PR Close #57830
2024-09-18 09:46:06 +02:00
Matthieu Riegler
76709d5d6e
fix(core): Handle @let declaration with array when preparingForHydration ( #57816 )
...
Before this commit, `@let` decleration with an array where mistaken for a component in the lView and throwing an unexpected error.
This commit fixes this.
PR Close #57816
2024-09-17 16:29:40 +02:00
Angular Robot
dbd697ca2d
build: update github/codeql-action action to v3.26.7 ( #57843 )
...
See associated pull request for more information.
PR Close #57843
2024-09-17 15:48:13 +02:00
Ingila Ejaz
c0b49867f1
docs: add fork url in contribution guidelines for new contributors ( #57837 )
...
Clicking a clickable repo url in the contribution guide would make it simpler for new contributors to find the repository
PR Close #57837
2024-09-17 15:23:35 +02:00
Vlad Boisa
cd970541fe
docs: change spelling to correctly params ( #57832 )
...
PR Close #57832
2024-09-16 18:03:53 +02:00
Samson Amaugo
e16b8a3794
docs: correct key usage in sectionStyles and update template binding ( #57820 )
...
PR Close #57820
2024-09-16 11:26:05 +02:00
Can Özkan
218999025a
docs: escape pipe ("|") characters in markdown tables to fix rendering issues ( #57822 )
...
PR Close #57822
2024-09-16 11:24:55 +02:00
Paweł Maniecki
b6dc274e6b
docs: fix typo in requirements for NG8106 ( #57772 )
...
"Configuration requirements" referred to the wrong diagnostic (`invalidBananaInBox`)
likely due to a copy-paste error
PR Close #57772
2024-09-16 11:21:28 +02:00
Suryaprakash
d5a27b8818
docs: Update guide for version 18 - unclear (possibly incorrect?) instruction for opting out of caching HTTP requests that require authentication ( #57799 )
...
PR Close #57799
2024-09-13 13:28:21 +02:00
Kristiyan Kostadinov
5c866942a1
fix(migrations): account for explicit standalone: false in migration ( #57803 )
...
Fixes that the standalone migration was duplicating the `standalone` flag if the declaration was `standalone: false`.
PR Close #57803
2024-09-13 10:48:42 +02:00
Pascal Weyrich
156f0d0c1b
docs: fix example for defer on hover on an alternative element ( #57788 )
...
PR Close #57788
2024-09-12 11:23:34 +02:00
Doug Parker
fab6462517
docs: add section on removing Zone.js imports/dependency from the build ( #57784 )
...
PR Close #57784
2024-09-12 10:54:10 +02:00
Lang
9bf60b06c9
docs: use correct example ( #57783 )
...
PR Close #57783
2024-09-11 21:25:26 +00:00
Simon Knott
5846d134e6
docs: add Playwright to E2E tools ( #57734 )
...
docs: alphabetisize list
PR Close #57734
2024-09-11 21:24:53 +00:00
Jessica Janiuk
7339e08c8a
release: cut the v18.2.4 release
18.2.4
2024-09-11 15:59:31 -04:00
danielbulic
98ffbb3d05
docs: fix link of DEVELOPER.md in CONTRIBUTING.md ( #57775 )
...
PR Close #57775
2024-09-11 18:55:21 +00:00
Santosh Yadav
fa4107e413
docs: add examples for localize ( #57534 )
...
PR Close #57534
2024-09-10 20:33:19 +00:00
Jan Olaf Martin
c4b19c4d43
docs: fix link from zoneless to OnPush ( #57760 )
...
PR Close #57760
2024-09-10 20:28:00 +00:00
Angular Robot
a919c6cae3
build: update all non-major dependencies to ~5.3.0 ( #57754 )
...
See associated pull request for more information.
PR Close #57754
2024-09-10 16:31:46 +00:00
Arnau Gómez Farell
d0fe538c8a
docs(core): fix typo ( #57741 )
...
Fix typo where two variable names should be the same but are different.
PR Close #57741
2024-09-09 18:23:06 +00:00
Rachid O
8d278390b2
docs: fix broken link in roadmap page ( #57722 )
...
PR Close #57722
2024-09-09 14:40:29 +00:00
Rachid O
9d730ed0b4
docs: fix typo in steps/12-enable-routing/README.md ( #57722 )
...
PR Close #57722
2024-09-09 14:40:29 +00:00
Kristiyan Kostadinov
b619d6987e
fix(compiler): produce less noisy errors when parsing control flow ( #57711 )
...
Currently several parsing errors in the new control flow (e.g. missing `track` expression) produce errors whose span targets the entire block. This can be really noisy in the IDE where the error can span many lines in the template.
These changes switch to highlighting just the start of the block.
PR Close #57711
2024-09-09 14:10:02 +00:00
Shannon V.C.
0a86b49ab0
docs: add missing link in templates guide overview ( #57718 )
...
This addresses a minor issue where the "See whitespace in templates" phrase was not linked to its corresponding documentation section
PR Close #57718
2024-09-09 14:09:07 +00:00
diamondhero1
4cb07e6a56
docs: extraneous backslashes removed ( #57725 )
...
PR Close #57725
2024-09-09 13:58:50 +00:00
Michael Small
981255c77e
docs(docs-infra): remove more unused standalone imports ( #57703 )
...
PR Close #57703
2024-09-09 13:58:21 +00:00
Matthieu Riegler
0843f31474
docs: Enable direct links to class/interface methods for @link ( #57615 )
...
PR Close #57615
2024-09-06 16:03:37 +00:00
Seyed Alireza Mirehe
98ad3afa57
docs: fix typo in view queries documentation ( #57228 )
...
The typo in the [queries document](https://angular.dev/guide/components/queries#content-queries ) has been corrected:
Queries never **pierce** through component boundaries.
PR Close #57228
2024-09-06 16:03:03 +00:00
Matthieu Riegler
e4bed4b0db
docs(docs-infra): Remove focus on navigation ( #57695 )
...
PR Close #57695
2024-09-06 16:02:13 +00:00
Matthieu Riegler
bb8e7cea28
docs(docs-infra): fix extraction tests ( #57694 )
...
PR Close #57694
2024-09-06 15:07:48 +00:00
Kristiyan Kostadinov
9895e4492f
fix(migrations): replace leftover modules with their exports during pruning ( #57684 )
...
Currently during the module pruning stage of the standalone migration we assume that any leftover modules which only have `imports` and `exports` can safely be removed. That can be incorrect for the cases where some parts of the app were converted to standalone outside of the migration.
These changes update the logic so that such modules are replaced with the `exports` which are used within the specific component.
Fixes #51420 .
PR Close #57684
2024-09-06 14:15:50 +00:00
Matthieu Riegler
09f2ec0a12
refactor(compiler-cli): Do extract symbols from private modules. ( #57611 )
...
Modules like `core/primitives` are considered private and their symbols shouldn't be exposed nor linked in the docs.
PR Close #57611
2024-09-06 14:15:19 +00:00
Ben Hong
1fa59425db
docs: add redirect for pipes guide ( #57681 )
...
PR Close #57681
2024-09-06 14:14:08 +00:00