atscott
11d3b19b32
release: cut the v8.2.9 release
8.2.9
2019-10-02 11:15:13 -07:00
Judy Bogart
d96167fc54
docs: add lib build note ( #32940 )
...
PR Close #32940
2019-10-02 10:59:06 -07:00
Niklas Merz
68fed2fc28
docs(router): fix typo for "urlUpdateStrategy" ( #32960 )
...
PR Close #32960
2019-10-02 10:58:41 -07:00
Alison Gale
57457fb7c7
fix(upgrade): fix AngularJsUrlCodec to support Safari ( #32959 )
...
Safari throws an error when the new URL() constructor is called with an
undefined base. This change checks whether the base is undefined and
then calls the corresponding version of the URL constructor.
fix(upgrade): simplify solution by replacing undefined with ''
Co-Authored-By: Pete Bacon Darwin <pete@bacondarwin.com >
Simplify solution by replacing undefined with ''
Co-Authored-By: Pete Bacon Darwin <pete@bacondarwin.com >
fix(upgrade): Avoid passing an empty string as the base as well.
Browsers other than Safari may have issues with the empty string.
PR Close #32959
2019-10-02 10:00:48 -07:00
Jordan Amman
a2fc5774a7
docs: added '>' to ng-template closing tag. ( #32939 )
...
Fixes #32931
PR Close #32939
2019-10-02 09:44:24 -07:00
George Kalpakas
c6041b985e
fix(docs-infra): show hamburger button on getting started guide ( #32941 )
...
In 1c3ee4190 , the `getting-started` guide/tutorial was renamed to
`start`, but the corresponding CSS class that controls the display of
the top-left hamburger (and it automatically derived based on the URL)
was not updated.
This commit updates the class to ensure that the hamburger is not hidden
when navigating to the getting started guide.
PR Close #32941
2019-10-02 09:20:23 -07:00
Kapunahele Wong
b45d2e0fb1
docs: add dynamic queries flag migration documentation ( #32582 )
...
PR Close #32582
2019-10-01 17:19:06 -07:00
Judy Bogart
42f7419522
docs: emphasize headers for code examples ( #32938 )
...
PR Close #32938
2019-10-01 14:45:30 -07:00
Joshua Colvin
32f5241598
docs: fix capitalization in elements docs ( #32917 ) ( #32936 )
...
PR Close #32917
PR Close #32936
2019-10-01 14:44:50 -07:00
Judy Bogart
06e72721ca
docs: clarify http response type ( #32817 )
...
PR Close #32817
2019-10-01 11:00:36 -07:00
Gérôme Grignon
3a80069f65
docs: fix typo in creating-libraries ( #32930 )
...
PR Close #32930
2019-10-01 10:59:02 -07:00
Hoel IRIS
0818e2c799
docs(service-worker): add info about recovering from degraded Driver state ( #32682 )
...
Related to #31865
PR Close #32682
2019-09-30 14:15:35 -07:00
Arne Hoek
7b8b2d4622
docs: update inline lazy loading example to use the import syntax ( #32260 )
...
PR Close #32260
2019-09-30 12:06:02 -07:00
Judy Bogart
f6526a0872
docs: add filename headers to code examples ( #32701 )
...
PR Close #32701
2019-09-30 10:28:21 -07:00
Judy Bogart
0984022192
docs: add prompts section to schematic guide ( #32728 )
...
PR Close #32728
2019-09-30 10:27:39 -07:00
Kirk Larkin
bb7603104f
docs: removed duplicate "compilerOptions" property ( #32449 ) ( #32911 )
...
PR Close #32449
PR Close #32911
2019-09-30 10:26:21 -07:00
Yulia Tsareva
bdea243fed
docs: add missing space between "Component" and "will" in guide ( #32885 )
...
Closes angular/angular#32873
PR Close #32885
2019-09-27 15:59:29 -07:00
George Kalpakas
2397144e01
docs(router): make InitialNavigation part of the public API ( #32707 )
...
`InitialNavigation` is used in `ExtraOptions`, which is already part of
the public API. Thus, `InitialNavigation` should be too. Not publicly
exporting it from `router/index.ts` seems an omission, since the type is
already annotated with the `@publicApi` JSDoc tag.
By publicly exporting `InitialNavigation`, it will also correctly appear
in the API docs on angular.io.
PR Close #32707
2019-09-27 14:21:14 -07:00
john li
466c754cc8
docs: fix typo in deployment guide ( #32777 )
...
The typo causes most of the callout to not appear on the page. The issue
appears at the bottom of the "Lazy loading" section on the live site:
https://angular.io/guide/deployment#lazy-loading
PR Close #32777
2019-09-27 10:32:38 -07:00
Harinder Singh
45fee069d7
docs: correct spelling of HTMLTableCellElement in Template Syntax ( #32805 )
...
Spelling Correction in Docs
Corrected spelling; From `HTMLTableCellElment` to `HTMLTableCellElement`.
PR Close #32805
2019-09-27 10:03:53 -07:00
Reuben Wilson
432f7ce2a0
docs: fix sentence phrasing ( #32846 )
...
`In this section, you'll add a "Buy" button the product details page.` -> `In this section, you'll add a "Buy" button to the product details page.`
PR Close #32846
2019-09-27 10:03:23 -07:00
Jordan Amman
e8c34c47af
docs: clarify sentence in lifecycle hooks doc ( #32860 )
...
PR Close #32860
2019-09-27 10:02:54 -07:00
George Kalpakas
e81fc14da1
fix(docs-infra): correctly run on IE11 ( #32871 )
...
Since 007282d2b , [TocService][1] uses [forEach()][2] to iterate over a
`NodeList`. This breaks in IE11, which does not support
`NodeList#forEach()`.
This commit wraps the returned `NodeList` in a regular `Array` to have
access to array methods (such as `forEach()`).
Fixes #32832
[1]: https://github.com/angular/angular/blob/fbad4ff65/aio/src/app/shared/toc.service.ts#L68
[2]: https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach
PR Close #32871
2019-09-26 17:05:39 -07:00
Rustam
d5c210a2e1
docs: added link to ngRuAir podcast ( #32223 )
...
PR Close #32223
2019-09-26 07:37:55 -07:00
Pascal Fivian
7dbde6f570
docs: remove extra parenthesis from inline animations snippet ( #32735 )
...
PR Close #32735
2019-09-25 12:05:22 -07:00
Andrew Kushnir
78de6211e3
release: cut the v8.2.8 release
8.2.8
2019-09-25 10:08:33 -07:00
Issei Horie
104c786b90
docs: removed duplicated spaces in upgrade guide ( #32813 )
...
PR Close #32813
2019-09-24 14:01:43 -07:00
Issei Horie
9680f4c991
docs: fix typo in upgrade guide ( #32807 )
...
PR Close #32807
2019-09-24 14:01:19 -07:00
Judy Bogart
e63390daf8
docs: correct default for router extra option ( #32702 )
...
PR Close #32702
2019-09-23 14:24:21 -07:00
Kapunahele Wong
af99f9e98e
docs: edit copy on getting started step 1 ( #32773 )
...
PR Close #32773
2019-09-19 14:20:51 -07:00
Kapunahele Wong
8398f9d54c
docs: edit copy on first step of getting started ( #32751 )
...
PR Close #32751
2019-09-18 13:37:00 -07:00
Andrew Kushnir
da5d91b97b
release: cut the v8.2.7 release
8.2.7
2019-09-18 10:01:57 -07:00
Jason Bedard
ba1ef6b1a5
fix(bazel): ng_package(data) should support non-text files ( #32721 )
...
PR Close #32721
2019-09-17 15:58:43 -07:00
Joey Perrott
acebf6464e
ci: build bazel saucelabs tests remotely ( #32719 )
...
PR Close #32719
2019-09-17 15:14:18 -07:00
Aristeidis Bampakos
e367aa2ca5
docs: Typo fixes in hierarchical DI guide ( #32536 )
...
Introduce minor typo fixes in the guide for hierarchical dependency injection
PR Close #32536
2019-09-17 13:37:54 -07:00
Joey Perrott
0ee2b755e2
ci: use automatic strategy selection for AngularTemplateCompile and TypeScriptCompile ( #32708 )
...
PR Close #32708
2019-09-16 16:35:54 -07:00
Judy Bogart
f213c7a643
docs: add autoprefixer backward compatability instruction ( #32109 )
...
PR Close #32109
2019-09-16 10:48:03 -07:00
cran-cg
947c076ff2
fix(compiler-cli): fix typo in diagnostic template info. ( #32684 )
...
Fixes #32662
PR Close #32684
2019-09-16 08:59:49 -07:00
Joey Perrott
6600bea815
ci: run ts-api-guardian test remotely on CI ( #32677 )
...
PR Close #32677
2019-09-13 15:13:45 -07:00
George Kalpakas
6cd61aeb1c
ci: add @josephperrott to global approvers in CODEOWNERS ( #32667 )
...
This change aims to align the documented members in `CODEOWNERS` with
the actual members of the secret `framework-global-approvers` GitHub
team.
PR Close #32667
2019-09-13 08:55:57 -07:00
Kapunahele Wong
581b991432
docs: add undecorated classes migration faq ( #32478 )
...
PR Close #32478
2019-09-12 12:16:15 -07:00
Kapunahele Wong
4014aab300
docs: move renderer2 deprecation guide into own file ( #32626 )
...
PR Close #32626
2019-09-12 10:43:01 -07:00
George Kalpakas
b523844966
build(docs-infra): upgrade cli command docs sources to e21aeeecd ( #32635 )
...
Updating [angular#8.2.x](https://github.com/angular/angular/tree/8.2.x ) from [cli-builds#8.3.x](https://github.com/angular/cli-builds/tree/8.3.x ).
##
Relevant changes in [commit range](https://github.com/angular/cli-builds/compare/6734efe52...e21aeeecd ):
**Modified**
- help/generate.json
##
PR Close #32635
2019-09-12 10:32:10 -07:00
Judy Bogart
8d322c89b7
docs: modify lazy-load module instructions for new cli flag ( #32588 )
...
PR Close #32588
2019-09-12 10:23:20 -07:00
George Kalpakas
08a7c6f0b5
ci: update codeowners to reflect GitHub team members ( #32569 )
...
PR Close #32569
2019-09-11 20:26:29 -04:00
Paul Gschwendtner
31f06ee3f9
build: enforce proper compile mode for size-tracking test ( #32613 )
...
Ensures that the "core_all:size_test" target runs with "--define=compile=aot".
This is necessary because we don't run this test on CI currently, but if we run
it manually, we need to ensure that it runs with Ivy for proper size comparisons.
PR Close #32613
2019-09-11 20:22:29 -04:00
Keen Yee Liau
1c5b157f10
fix(language-service): cache module resolution ( #32483 )
...
This is a patch PR for https://github.com/angular/angular/pull/32479
This PR fixes a critical performance issue where the language
service makes a MASSIVE number of filesystem calls when performing
module resolution.
This is because there is no caching. To make matters worse, module
resolution is performed for every program change (which means every
few keystrokes trigger a massive number of fs calls).
PR Close #32483
2019-09-11 20:21:55 -04:00
Judy Bogart
38fe47316c
docs: fix doc links to current version ( #32566 )
...
PR Close #32566
2019-09-11 19:27:01 -04:00
Judy Bogart
9488da0d0a
docs: add header to code examples ( #32563 )
...
PR Close #32563
2019-09-11 19:26:20 -04:00
Matias Niemelä
5a8c560373
docs: update CHANGELOG to include default message for 8.2.6
2019-09-11 14:06:37 -07:00