Andrew Kushnir
a0b2d36415
refactor(platform-server): make TransferState standalone-friendly ( #46879 )
...
This commit updates the `TransferState` to make it `providedIn: 'root'`. This makes the entire `BrowserTransferStateModule` module unnecessary, so it got deprecated as well.
The `ServerTransferStateModule` is still retained, but the `renderApplication` function now also includes the necessary tokens to serialize the `TransferState` automatically, so when using the `renderApplication` function, there is no need to include `ServerTransferStateModule` as well.
This change is a part of the ongoing efforts to update the shape of the FW APIs to make them standalone-friendly (so there is no need to import any NgModules).
PR Close #46879
2022-07-20 11:05:08 -07:00
Bob Watson
0d192e8d0b
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
e736f95884
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
piyush132000
4a68b0f6ab
docs: fix code style ( #46862 )
...
PR Close #46862
2022-07-18 16:44:20 +00:00
dario-piotrowicz
557cf7dc63
fix(docs-infra): convert docs select for versions into navigation ( #46674 )
...
convert the select for the docs versions into a proper navigation to
make it more clear for users and also to improve its accessibility
resolves #44339
PR Close #46674
2022-07-15 22:56:39 +00:00
Cédric Exbrayat
426af91a42
feat(forms): add FormBuilder.record() method ( #46485 )
...
The new `FormRecord` entity introduced in Angular v14 does not have its builder method.
This commit adds it, allowing to write:
```
const fb = new FormBuilder();
fb.record({ a: 'one' });
```
This works for both the `FormBuilder` and the `NonNullableFormBuilder`
PR Close #46485
2022-07-15 22:02:44 +00:00
Angular Robot
62174b0350
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
Bob Watson
211c35358a
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
df87f4afb5
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
Andrew Kushnir
8ab79aa7e6
refactor(core): drop r3_ prefix from TestBed filenames and merge files ( #46635 )
...
This commit updates TestBed-related files to drop the `r3_` prefix.
PR Close #46635
2022-07-13 20:09:59 +00:00
acvi
22c40b420e
docs: describe smallest typo, "an" -> "a" ( #46812 )
...
PR Close #46812
2022-07-13 20:06:30 +00:00
Angular Robot
dbb0dfe707
build: lock file maintenance ( #46691 )
...
See associated pull request for more information.
PR Close #46691
2022-07-13 17:07:57 +00:00
Paul Gschwendtner
336598aedc
refactor(docs-infra): update boilerplate to have proper angular.js types ( #46819 )
...
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 #46819
2022-07-13 16:32:25 +00:00
Angular Robot
4b03b1c25a
build: lock file maintenance ( #46819 )
...
See associated pull request for more information.
PR Close #46819
2022-07-13 16:32:25 +00:00
Bob Watson
24decdef79
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
Bob Watson
e91d6241b5
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
10495a8405
docs: Add missing period ( #46799 )
...
This adds a missing period in one documentation sentence.
PR Close #46799
2022-07-12 19:04:27 +00:00
Andrew Kushnir
a6d5fe202c
feat(core): alias createNgModuleRef as createNgModule ( #46789 )
...
This commit adds the `createNgModuleRef` function alias to the public API. The alias is called `createNgModule`. The `createNgModule` name is more consistent with the rest of the API surface, where functions that return `*Ref`s don't include the `Ref` into the function name, for example: `createPlatform`, `ViewContainerRef.createComponent`, etc.
DEPRECATED:
The `createNgModuleRef` is deprecated in favor of newly added `createNgModule` one.
PR Close #46789
2022-07-12 16:11:41 +00:00
Lukas Matta
397d75bc4c
docs: add missing space ( #46800 )
...
PR Close #46800
2022-07-12 15:56:09 +00:00
Angular Robot
9f9e4f2314
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
Paul Gschwendtner
28832ca46a
refactor(docs-infra): enable ip anonymization for legacy universal analytics ( #46716 )
...
In GA4 ip anonymization is enabled by default, but in universal
analytics with `analytics.js`, this needs to be explicitly enabled.
PR Close #46716
2022-07-12 15:53:23 +00:00
Paul Gschwendtner
dc684dbea0
refactor: move error reporting for analytics to service ( #46716 )
...
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 #46716
2022-07-12 15:53:23 +00:00
Paul Gschwendtner
658d161c18
feat(docs-infra): set up Google Analytics 4 along with keeping legacy Universal Analytics ( #46716 )
...
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 #46716
2022-07-12 15:53:23 +00:00
Nicolas Molina Monroy
23e7f7f2f3
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
50830a2bc7
docs: update topics to include feedback from PR review ( #46647 )
...
Fix #44662
PR Close #46647
2022-07-11 22:32:35 +00:00
Bob Watson
9d030dadd3
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
8271da9dbb
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
2808d889dc
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
b6a950cd60
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:06 +00:00
Jessica Janiuk
93f73114e6
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
e58207e444
docs: link fix from google.developers to web.dev ( #46768 )
...
PR Close #46768
2022-07-11 18:14:59 +00:00
Angular Robot
beba6af226
build: update dependency firebase-tools to v11 ( #46614 )
...
See associated pull request for more information.
PR Close #46614
2022-07-11 18:12:42 +00:00
Marcin Wosinek
a4b64bc483
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
4190e9a776
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
8124c78556
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
Or'el Ben-Ya'ir
ea0f07a858
docs(router): fix minor typos in tutorial ( #46696 )
...
PR Close #46696
2022-07-08 17:57:44 +00:00
dario-piotrowicz
350e3643c5
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
5a699034b1
build(docs-infra): upgrade cli command docs sources to a764b37fa ( #46740 )
...
Updating [angular#main](https://github.com/angular/angular/tree/main ) from
[cli-builds#main](https://github.com/angular/cli-builds/tree/main ).
##
Relevant changes in
[commit range](https://github.com/angular/cli-builds/compare/4a6dfc1d8...a764b37fa ):
**Modified**
- help/update.json
PR Close #46740
2022-07-07 13:33:43 -07:00
Angular Robot
ad2721a149
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:23 -07:00
Angular Robot
e96ece901c
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
b80a6e29cd
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
5fd3bb6a15
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
fc66f56c12
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:50 -07:00
Angular Robot
03e810eb3d
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:20 -07:00
Bob Watson
db631bebbf
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
da380d9c52
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
5dd9d4ae01
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
39c02f1c9d
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
598239c35d
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:08 -07:00
Angular Robot
daa6c248bb
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