f0c4f31771
fix(ivy): should export lifecycle hooks feature ( #27082 )
...
PR Close #27082
2018-11-13 16:17:30 -08:00
a63fd2d0f5
feat(ivy): support for i18n & ICU expressions ( #26275 )
...
PR Close #26275
2018-11-13 14:50:30 -08:00
d97994b27f
fix(ivy): clone ts.SourceFile in ivy_switch when triggered ( #27032 )
...
Make a copy of the ts.SourceFile before modifying it in the ivy_switch
transform. It's suspected that the Bazel tsc_wrapped host's SourceFile
cache has issues when the ts.SourceFiles are mutated.
PR Close #27032
2018-11-13 14:00:20 -08:00
c31e78f670
fix(compiler-cli): add missing tslib dependency ( #27063 )
...
PR Close #27063
2018-11-13 13:59:41 -08:00
bc652a2943
fix(ivy): jit compilation should support content queries with type predicates ( #27068 )
...
PR Close #27068
2018-11-13 12:18:13 -08:00
e6e590479e
fix(ivy): support forward refs in @Inject annotations ( #27069 )
...
PR Close #27069
2018-11-13 12:17:18 -08:00
123da1a8c2
test(ivy): split out provider tests ( #27069 )
...
PR Close #27069
2018-11-13 12:17:18 -08:00
7695dbd0bd
test(ivy): run common tests with ivy on ci ( #27071 )
...
PR Close #27071
2018-11-13 10:59:55 -08:00
9741f5b8cf
docs: new doc for core directives ( #26923 )
...
PR Close #26923
2018-11-13 10:57:56 -08:00
1b97971eb7
docs: fixed typo on Github issue template ( #27070 )
...
PR Close #27070
2018-11-13 10:52:09 -08:00
0ada23a5fb
fix(compiler-cli): only pass canonical genfile paths to compiler host ( #27062 )
...
In a more specific scenario: Considering people use a custom TypeScript compiler host with `NGC`, they _could_ expect only posix paths in methods like `writeFile`. This at first glance sounds like a trivial issue that should be just fixed by the actual compiler host, but usually TypeScript internal API's just pass around posix normalized paths, and therefore it would be good to follow the same standards when passing JSON genfiles to the `CompilerHost`.
For normal TypeScript files (and TS genfiles), this is already consistent because those will be handled by the actual TypeScript `Program` (see `emitCallback`).
PR Close #27062
2018-11-13 10:51:19 -08:00
6b1780d77e
build: avoid writing \r
in windows ( #26888 )
...
In windows when using readFile `\n` are replaced with `\r\n` which causes issues when comparing golden files
PR Close #26888
2018-11-13 10:50:21 -08:00
7865abf667
build: fix api guardian path for windows ( #26888 )
...
At the moment, `path.posix.relative` will break paths in windows as it will return something like
```
Error: Source file "../C:/users/alag/_bazel_alag/3tbqurya/execroot/angular/bazel-out/x64_windows-fastbuild/bin/packages/core/core.d.ts" not found
```
PR Close #26888
2018-11-13 10:50:21 -08:00
efa443bba3
docs: fix typo ( #26878 )
...
PR Close #26878
2018-11-13 10:49:35 -08:00
f5a0ec0d7c
fix(ivy): ngcc should not fail on invalid package.json ( #26539 )
...
Some package.json files may have invalid JSON, for example package.json blueprints from `@schematics/angular` (see https://github.com/angular/angular-cli/blob/master/packages/schematics/angular/workspace/files/package.json ).
This makes ngcc more resilient, by simpling logging a warning if an error is encountered, instead of failing as it does right now.
PR Close #26539
2018-11-13 10:48:31 -08:00
5247594e86
fix(ivy): add support for providers in TestBed.configureCompiler ( #27066 )
...
Adds support for the `providers` that are passed in through `TestBed.configureCompiler` and scopes the error only if the consumer has passed in `useJit`.
PR Close #27066
2018-11-12 15:33:56 -08:00
095b6e8113
refactor(ivy): abstract all styling-related compiler logic into a shared class ( #27043 )
...
PR Close #27043
2018-11-12 15:32:48 -08:00
8b9249a670
fix(ivy): host bindings should support content children and content hooks ( #27065 )
...
PR Close #27065
2018-11-12 14:26:06 -08:00
f80c6008af
docs: Fix wrong quoting in SSR guide ( #27057 )
...
PR Close #27057
2018-11-12 12:52:32 -08:00
b278ea1f09
docs: fix typo in toh-pt0.md ( #27044 )
...
PR Close #27044
2018-11-12 12:51:53 -08:00
1810cdf2c3
fix(ivy): compiler should generate restoreView() for local refs in listeners ( #27034 )
...
PR Close #27034
2018-11-12 12:50:58 -08:00
97ef8ae9e7
fix(ivy): let ngcc not consider deep imports as missing dependencies ( #27031 )
...
This fixes an issue where packages would be skipped if they contained
e.g. RxJS 5 style imports such as
```
import { observeOn } from 'rxjs/operators/observeOn';
```
Given that no package.json file can be found at the imported path, the
dependency would be reported missing, causing the package to be skipped.
PR Close #27031
2018-11-12 12:50:06 -08:00
99c5db1fb1
docs(forms): update API reference for value accessors ( #26946 )
...
PR Close #26946
2018-11-12 12:48:33 -08:00
e5c9f7a507
fix(ivy): provide NgZone to ComponentRef ( #26898 )
...
Fixes the r3 `TestBed` not providing an `NgZone` to the `ComponentFixture`.
PR Close #26898
2018-11-12 12:47:07 -08:00
9729e8f4b9
docs: removed unused pull-left classes from hero form component ( #26178 )
...
PR Close #26178
2018-11-09 10:23:17 -08:00
78b6f88cb3
fix(ivy): TestBed should use an NgZone ( #27015 )
...
PR Close #27015
2018-11-09 09:56:36 -08:00
552836ebf0
fix(ivy): merged host bindings functions should take superclass hostVars into account ( #27013 )
...
PR Close #27013
2018-11-09 09:55:47 -08:00
2f36a9591d
fix(ivy): providers should not be inherited ( #27013 )
...
PR Close #27013
2018-11-09 09:55:47 -08:00
83c9bff242
docs(core): cleanup todo notes in ContentChild documentation examples ( #26543 )
...
PR Close #26543
2018-11-09 09:47:26 -08:00
4efb460127
docs(router): add RxJS filter pipe operator to example ( #25686 )
...
This example for Angular 6 requires piping the RxJS filter operator in order to traverse the multitude of Router Events.
PR Close #25686
2018-11-09 09:46:11 -08:00
ac1988d8e6
docs: add missing instruction in HTTP section ( #25715 )
...
PR Close #25715
2018-11-09 09:44:11 -08:00
edb50a2f51
docs: override code formatting for CLI commands ( #26619 )
...
Closes 26614
PR Close #26619
2018-11-09 09:43:00 -08:00
c89045fb77
docs: update links to TC39 and observable proposal ( #26715 )
...
Before (404 Not Found):
http://www.ecma-international.org/memento/TC39.htm
After:
https://www.ecma-international.org/memento/tc39-m.htm
PR Close #26715
2018-11-09 09:41:57 -08:00
1258ec041d
docs: Fix links ( #27027 )
...
Fix the links.
PR Close #27027
2018-11-09 09:40:44 -08:00
499e303ea3
test(ivy): add global utils to the public_api_guard test ( #27008 )
...
This API is part of our public api surface and needs to be monitored by the public_api_guard.
I also had to go back and mark all of the exported functions with @publicApi jsdoc tag.
PR Close #27008
2018-11-08 15:37:11 -08:00
e618032d53
feat(ivy): introduce getPlayers()
to global utils ( #27008 )
...
PR Close #27008
2018-11-08 15:37:11 -08:00
b9eeb1c383
ci: exclude symbol golden files from build-and-ci pullapprove group ( #27004 )
...
these files are test data and note test infrastructure, so they don't belong to this group.
this means that the core group can now approve the golden symbol changes
PR Close #27004
2018-11-08 13:10:53 -08:00
1529ecd8fa
docs: add Angular subreddit to resources.json ( #26976 )
...
Close #26941
PR Close #26976
2018-11-08 13:09:36 -08:00
51f26cb4e0
docs: add ngx-api-utils to resources ( #26120 )
...
PR Close #26120
2018-11-08 13:07:42 -08:00
0d972d9bbf
docs: update hero search component to use input event ( #26440 )
...
PR Close #26440
2018-11-08 11:29:10 -08:00
19546c234e
build: add 'yarn list-fixme-ivy-targets' to list all the fixme-ivy-* targest ( #26834 )
...
PR Close #26834
2018-11-08 11:09:00 -08:00
791d192e63
docs: correct https://angularconsole.com/ link ( #26999 )
...
PR Close #26999
2018-11-08 11:06:24 -08:00
15e671ec5a
build(bazel): upgrade benchmarks to protractor_web_test_suite for CI without local chrome ( #26908 )
...
PR Close #26908
2018-11-07 16:47:39 -08:00
3567e81175
fix(ivy): restore missing match operation in View and Content Queries ( #26847 )
...
PR Close #26847
2018-11-07 16:29:19 -08:00
ff2ee644b4
release: cut the v7.1.0-beta.2 release
7.1.0-beta.2
2018-11-07 12:23:59 -08:00
b57ce9299a
docs: release notes for the v7.0.3 release
2018-11-07 12:15:08 -08:00
9e26216c40
fix(ivy): compiler should generate bindings to host attrs properly ( #26973 )
...
PR Close #26973
2018-11-07 11:09:31 -08:00
a4398aa17f
docs(forms): update description for FormBuilder.group ( #26970 )
...
PR Close #26970
2018-11-07 10:39:12 -08:00
53e4e0c1a3
fix(ivy): Enable AoT tests to run on CI; disable failing tests ( #26975 )
...
PR Close #26975
2018-11-07 10:35:20 -08:00
5e769d9a25
fix(ivy): add nocollapse
to ngInjectableDef for closure compatibility ( #26975 )
...
PR Close #26975
2018-11-07 10:35:20 -08:00