Bob Watson
3e3f4fec00
docs: add info about request timeouts ( #46882 )
...
* Adds a short note about how service workers report request timeouts
* Updated heading levels to present a clearer hierarchy and cleaner local TOC
* Removed documentation lint errors
* Moves the service worker service timeout paragraph to a more logical topic in service-worker-devops
* Removes line error from the more logical topic.
* address feedback from PR review comments
fixes #46445
PR Close #46882
2022-07-20 08:47:59 -07:00
Angular Robot
6d9d9f499f
build: update eslint dependencies to v5.30.7 ( #46884 )
...
See associated pull request for more information.
PR Close #46884
2022-07-19 16:04:37 +00:00
George Kalpakas
f1ca4ab848
build(docs-infra): upgrade cli command docs sources to a6747c168 ( #46870 )
...
Updating [angular#14.0.x](https://github.com/angular/angular/tree/14.0.x ) from
[cli-builds#14.1.x](https://github.com/angular/cli-builds/tree/14.1.x ).
##
Relevant changes in
[commit range](https://github.com/angular/cli-builds/compare/2cb508ffa...a6747c168 ):
**Modified**
- help/completion.json
- help/update.json
PR Close #46870
2022-07-18 17:06:50 +00:00
piyush132000
c5c3cbc726
docs: fix code style ( #46862 )
...
PR Close #46862
2022-07-18 16:44:21 +00:00
Angular Robot
71062e140f
build: update cross-repo angular dependencies ( #46834 )
...
See associated pull request for more information.
PR Close #46834
2022-07-14 22:35:08 +00:00
Angular Robot
f8a25f7fc5
build: lock file maintenance ( #46691 ) ( #46840 )
...
See associated pull request for more information.
PR Close #46691
PR Close #46840
2022-07-14 15:55:02 +00:00
Paul Gschwendtner
5579d96c60
refactor(docs-infra): update boilerplate to have proper angular.js types ( #46840 )
...
With the recent lock file maintenance, the `@types/angular` dependency
ended up being duplicated. This seems to happen because we locked our
type dependency, but other Angular deps like `angular-route` had a
looser dependency, resulting in e.g. `1.7` types and `1.8` types to be
loaded.
This ultimately ended up breaking TypeScript's auto-discovering
of types and broke some example compilations e.g.
```
app/app.animations.ts(3,3): error TS2339: Property 'animation' does not exist on type 'IModule'.
app/app.config.ts(5,45): error TS2694: Namespace 'angular' has no exported member 'route'.
app/phone-detail/phone-detail.component.ajs.ts(10,37): error TS2694: Namespace 'angular' has no exported member 'route'.
```
We fix this by loosening the type dependency ranges, updating all of
these. Also we update AngularJS itself to the final version.
PR Close #46840
2022-07-14 15:55:01 +00:00
Angular Robot
f344cbb171
build: lock file maintenance ( #46840 )
...
See associated pull request for more information.
PR Close #46840
2022-07-14 15:55:01 +00:00
Bob Watson
676bf041c1
docs: correct debugging task step ( #46832 )
...
Also remove lint errors.
Fix : #42781
PR Close #46832
2022-07-13 22:55:20 +00:00
George Kalpakas
8e2fc3e951
docs: redirect /guide/ivy to the v12 guide ( #46820 )
...
Since Ivy is the default since v13, the Ivy guide (that used to live at
https://angular.io/guide/ivy ) has been removed (see #43860 ). However,
there are certain error messages emitted by the CLI that still point to
it.
This commit address the problem by adding a redirect from
https://angular.io/guide/ivy to https://v12.angular.io/guide/ivy (which
is the last version that includes the guide).
Fixes #46717
PR Close #46820
2022-07-13 21:59:18 +00:00
acvi
89edfe76a6
docs: describe smallest typo, "an" -> "a" ( #46812 )
...
PR Close #46812
2022-07-13 20:06:30 +00:00
Bob Watson
fd15744fca
docs: add warning about lack of testing used by TOH ( #46811 )
...
Adds a short note about how the .spec.ts testing files aren't used or modified in this tutorial.
Fixes #37652
PR Close #46811
2022-07-13 00:03:49 +00:00
Paul Gschwendtner
26ab3687bb
refactor(docs-infra): enable ip anonymization for legacy universal analytics ( #46801 )
...
In GA4 ip anonymization is enabled by default, but in universal
analytics with `analytics.js`, this needs to be explicitly enabled.
PR Close #46801
2022-07-12 19:43:18 +00:00
Paul Gschwendtner
f2a1ea39a4
refactor: move error reporting for analytics to service ( #46801 )
...
This is acceptable because `gtag.js` is also only loaded as part of the
service, similary `ga` is only registered in the service (so the
reporting was a noop if errors are thrown before -- no change here)
We can benefit from downleveling etc. and do not need to be careful
with the inline script in the `index.html`
PR Close #46801
2022-07-12 19:43:18 +00:00
Paul Gschwendtner
a786cf68e2
feat(docs-infra): set up Google Analytics 4 along with keeping legacy Universal Analytics ( #46801 )
...
We currently use Universal Analytics. This is deprecated in favor of
Google Analytics 4 and UA will stop processing hits in October 2023.
This change intends to prepare us for this migration, and to already
pre-populate our GA4 property (there is no way to migrate existing data
/properties into a GA4 property -- a new one needs to be created).
This will help us minimize the data gap so that we can:
* Continue to look at the UA property with the full time span until
October 2023
* Can start using the GA4 property long-term in the future, starting
with data even before Universal Analytics stops processing new data.
We need to keep the existing `analytics.js` setup. Initially we have
considered using `gtag.js` for both the UA and GA4 properties, as it
supports that, but that doesn't work with our strict trusted types
enforcement because it results in multiple `gtag.js` scripts (specific
versions for UA or GA4) that recreate the same trusted type policies.
This causes runtime errors and breaks the setup.
Instead, with continued use of `analytics.js` we have the benefit of
a good separation of trusted types + events and configuration. There is
some problematic with translation of Universal Analytics Events to GA4,
or the other way around (even though we don't use custom events
currenlty)
We also do not need to send page views for our GA4 property because GA4
with gtag supports this automatically (respecting the history state --
using the `Enhanced measurement events` setting in the UI).
For our UA legacy instance we continue to dispatch events manually. This
logic can be removed in the future.
More details can be found here:
https://docs.google.com/document/d/1aK8u4ZlXbqQ2wMqmgSX7Ces8iLgamC13oCoG6VeBruA/edit?usp=sharing&resourcekey=0-EVe-Rhnme3bj_pkz2RcOmw .
PR Close #46801
2022-07-12 19:43:18 +00:00
Bob Watson
b5e411aaef
docs: clarify how ng adds classes to form elements ( #46805 )
...
* Clarify text described in #46424
* Remove lint errors
* Fix #46424
PR Close #46805
2022-07-12 19:09:04 +00:00
Ivaylo Kirov
2985191660
docs: Add missing period ( #46799 )
...
This adds a missing period in one documentation sentence.
PR Close #46799
2022-07-12 19:04:28 +00:00
Lukas Matta
dfeb8d5047
docs: add missing space ( #46800 )
...
PR Close #46800
2022-07-12 15:56:10 +00:00
Angular Robot
4355b82632
build: update eslint dependencies to v5.30.6 ( #46794 )
...
See associated pull request for more information.
PR Close #46794
2022-07-12 15:54:12 +00:00
Nicolas Molina Monroy
98b41bf399
docs: add nicobytes to GDE resources and Platzi to Online Training ( #46668 )
...
PR Close #46668
2022-07-11 23:29:30 +00:00
Bob Watson
023c218c43
docs: update topics to include feedback from PR review ( #46647 )
...
Fix #44662
PR Close #46647
2022-07-11 22:32:36 +00:00
Bob Watson
8a0a7c49fe
docs: update references to HeroListComponent ( #46647 )
...
Remove or reframe references to the obsolete HeroListComponent component that was taken from an old version of the Tour of Heroes tutorial.
Incorporates review feedback.
Fix #44662
PR Close #46647
2022-07-11 22:32:35 +00:00
Bob Watson
9d2d92a99b
docs: Remove content lint errors from tutorial topics ( #46652 )
...
Contains revisions to the Tour of Heroes tutorial that remove the text and formatting errors identified by the content lint tool.
PR Close #46652
2022-07-11 21:44:58 +00:00
Angular Robot
963ef3d027
build: update dependency firebase-tools to v11 ( #46779 )
...
See associated pull request for more information.
PR Close #46779
2022-07-11 21:42:08 +00:00
markostanimirovic
d51e0f27d7
docs(core): add full example of directive with typed context ( #46689 )
...
This commit adds a complete example of a structural directive
with strongly typed context.
PR Close #46689
2022-07-11 20:01:07 +00:00
Jessica Janiuk
ec1ff66e34
Revert "build: update dependency firebase-tools to v11" ( #46777 )
...
This reverts commit 179523003d .
PR Close #46777
2022-07-11 19:27:03 +00:00
SoulsMark
96eeb6bd00
docs: link fix from google.developers to web.dev ( #46768 )
...
PR Close #46768
2022-07-11 18:15:00 +00:00
Angular Robot
268ea58a99
build: update dependency firebase-tools to v11 ( #46614 )
...
See associated pull request for more information.
PR Close #46614
2022-07-11 18:12:43 +00:00
Marcin Wosinek
97491997ff
build(docs-infra): update versions of some docs examples dependencies ( #46609 )
...
Update angular-in-memory-web-api and jasmine-marbles (used in doc examples) to latest versions.
PR Close #46609
2022-07-11 17:34:26 +00:00
Angular Robot
410b5e48a0
build: update dependency jasmine to v4 ( #46617 )
...
| datasource | package | from | to |
| ---------- | -------------- | ------ | ----- |
| npm | jasmine | 3.10.0 | 4.2.1 |
| npm | @types/jasmine | 3.5.14 | 4.0.3 |
| npm | jasmine | 3.6.1 | 4.2.1 |
PR Close #46617
2022-07-11 17:33:55 +00:00
Angular Robot
28bd6dd3d8
build: update eslint dependencies to v5.30.5 ( #46705 )
...
| datasource | package | from | to |
| ---------- | -------------------------------- | ------ | ------ |
| npm | @typescript-eslint/eslint-plugin | 5.30.0 | 5.30.5 |
| npm | @typescript-eslint/parser | 5.30.0 | 5.30.5 |
PR Close #46705
2022-07-08 22:00:00 +00:00
dario-piotrowicz
72d1affbdd
docs(animations): add section about animations and view encapsulation ( #46738 )
...
Add a section regarding component view encapsulations in the complex animation
sequences guide to let developers know how animations work in regard to
view encapsulations.
This section is used to both add information to the guide but also to
take a stand on how the animations should behave in regard to the
shadow dom view encapsulation.
This relates to PR #46488 which by trying to make sure the query
function works with shadow dom elements proved that having the
animations implementation work with shadow dom would increase the
complexity of the code and would have a negative impact on performance,
such facts alongide the small adoption of shadow dom by users influenced
the decision to keep the current functionalities and simply discourage
the use of animations and shadow dom components.
PR Close #46738
2022-07-07 13:52:33 -07:00
George Kalpakas
b1500ab0e7
build(docs-infra): upgrade cli command docs sources to 2cb508ffa ( #46741 )
...
Updating [angular#14.0.x](https://github.com/angular/angular/tree/14.0.x ) from
[cli-builds#14.0.x](https://github.com/angular/cli-builds/tree/14.0.x ).
##
Relevant changes in
[commit range](https://github.com/angular/cli-builds/compare/847de3e7b...2cb508ffa ):
**Modified**
- help/update.json
PR Close #46741
2022-07-07 13:34:19 -07:00
Angular Robot
ae1264bd70
build: update cross-repo angular dependencies ( #46607 )
...
| datasource | package | from | to |
| ---------- | ----------------------------- | --------------- | --------------- |
| npm | @angular-devkit/architect-cli | 0.1401.0-next.3 | 0.1401.0-next.4 |
| npm | @angular-devkit/build-angular | 14.1.0-next.3 | 14.1.0-next.4 |
| npm | @angular-devkit/core | 14.1.0-next.3 | 14.1.0-next.4 |
| npm | @angular-devkit/schematics | 14.1.0-next.3 | 14.1.0-next.4 |
| npm | @angular/cli | 14.1.0-next.3 | 14.1.0-next.4 |
| npm | @schematics/angular | 14.1.0-next.3 | 14.1.0-next.4 |
PR Close #46607
2022-07-06 15:56:24 -07:00
Angular Robot
36276c815a
build: update dependency concurrently to v7 ( #46698 )
...
| datasource | package | from | to |
| ---------- | ------------ | ----- | ----- |
| npm | concurrently | 5.0.1 | 7.2.2 |
| npm | concurrently | 5.3.0 | 7.2.2 |
PR Close #46698
2022-07-06 07:31:46 -07:00
George Kalpakas
73d2deb9f5
docs(elements): fix typo in guide (@ --> @) ( #46688 )
...
HTML entities should not be used inside single backtick code blocks,
because they are not automatically decoded.
PR Close #46688
2022-07-06 07:31:15 -07:00
Alan Agius
e81fe52926
docs: replace fix typo in ( #46659 )
...
`extract-18n` should be `extract-i18n`
PR Close #46659
2022-07-06 07:30:14 -07:00
Alan Agius
dc015eca1f
fix(docs-infra): wrap enum values in CLI commands ( #46658 )
...
This commit changes the enum seperator in the CLI command overview pages so that wrapping is allowed.
PR Close #46658
2022-07-06 07:29:51 -07:00
Angular Robot
1fd4c1611e
build: update dependency supertest to v6 ( #46627 )
...
| datasource | package | from | to |
| ---------- | --------- | ----- | ----- |
| npm | supertest | 4.0.2 | 6.2.3 |
PR Close #46627
2022-07-06 07:29:21 -07:00
Bob Watson
853b1c1bc9
docs: move section on subscribing to observable ( #46655 )
...
This change moves a section of the text to a more logical location in the document flow.
fixes #43235
PR Close #46655
2022-07-01 10:23:46 -07:00
Angular Robot
610e1d305e
build: update cross-repo angular dependencies ( #46642 )
...
| datasource | package | from | to |
| ---------- | --------------------------------- | -------- | --------------- |
| npm | @angular-devkit/architect-cli | 0.1400.0 | 0.1401.0-next.3 |
| npm | @angular-devkit/build-angular | 13.3.6 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.0 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.0 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.4 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.0 | 14.1.0-next.3 |
| npm | @angular-devkit/build-angular | 14.0.0 | 14.1.0-next.3 |
| npm | @angular-devkit/build-optimizer | 0.1302.1 | 0.1302.0-rc.1 |
| npm | @angular-devkit/core | 13.3.6 | 14.1.0-next.3 |
| npm | @angular-devkit/schematics | 13.3.6 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/animations | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/cdk | 13.3.7 | 14.1.0-next.3 |
| npm | @angular/cdk | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/cdk | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/cli | 13.3.6 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/common | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/compiler-cli | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/core | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/elements | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/forms | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/localize | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/localize | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/localize | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/localize | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/material | 13.3.7 | 14.1.0-next.3 |
| npm | @angular/material | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/material | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-browser-dynamic | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-server | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-server | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/platform-server | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/platform-server | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/router | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/service-worker | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/upgrade | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/upgrade | 14.0.0 | 14.1.0-next.3 |
| npm | @angular/upgrade | 14.0.4 | 14.1.0-next.3 |
| npm | @angular/upgrade | 14.0.4 | 14.1.0-next.3 |
| npm | @schematics/angular | 13.3.6 | 14.1.0-next.3 |
PR Close #46642
2022-07-01 10:20:51 -07:00
Paul Gschwendtner
ddaacffc1b
build: account for rename of angular/code-of-conduct default branch ( #46640 )
...
We just renamed the Angular code of conduct repository default branch
to `main`. This repository was not part of the large migration and is
now handled separately as a little clean-up.
PR Close #46640
2022-06-30 12:44:05 -07:00
Aristeidis Bampakos
df7c3fb90d
docs(router): mark title strategy as injectable ( #46639 )
...
Add the `@Injectable` decorator in the title strategy example so that it can be injected in the providers of the routing module.
PR Close #46639
2022-06-30 12:43:32 -07:00
Angular Robot
a782e942bd
build: update dependency rimraf to v3 ( #46625 )
...
| datasource | package | from | to |
| ---------- | ------- | ----- | ----- |
| npm | rimraf | 2.6.2 | 3.0.2 |
PR Close #46625
2022-06-29 13:55:09 -07:00
Angular Robot
e0aeb0c648
build: update dependency source-map-explorer to v2 ( #46626 )
...
| datasource | package | from | to |
| ---------- | ------------------- | ----- | ----- |
| npm | source-map-explorer | 1.5.0 | 2.5.2 |
PR Close #46626
2022-06-29 13:51:50 -07:00
renovate[bot]
996cc9d938
build: update dependency karma-jasmine-html-reporter to v2 ( #46578 )
...
PR Close #46578
2022-06-29 10:12:26 -07:00
renovate[bot]
72255be939
build: update dependency jsdom to v20 ( #46576 )
...
PR Close #46576
2022-06-29 10:11:32 -07:00
renovate[bot]
c9b6a26c72
build: update eslint dependencies ( #46593 )
...
PR Close #46593
2022-06-29 10:10:50 -07:00
renovate[bot]
d228188357
build: update dependency http-server to v14 ( #46572 )
...
PR Close #46572
2022-06-29 10:08:53 -07:00
renovate[bot]
7276a74dbb
build: update dependency @rollup/plugin-commonjs to v22 ( #46556 )
...
PR Close #46556
2022-06-29 10:08:30 -07:00