This project is mirrored from https://github.com/angular/angular.git.
Pull mirroring updated .
- Mar 08, 2018
-
-
Alex Eagle authored
-
Alex Eagle authored
-
Olivier Combe authored
PR Close #20624
-
Alex Eagle authored
Remove duplicate public api testing from the gulp task. PR Close #22628
-
Alex Eagle authored
PR Close #22628
-
Alex Eagle authored
PR Close #22628
-
Igor Minar authored
We are pushing RC and Final out by one week because of RxJS v6 complications that are blocking the release. No further delays are currently expected.
-
- Mar 07, 2018
-
-
yerkebulan authored
docs(aio): update deprecated Http reference to HttpClientModule, remove Http reference because another context is used (#21984) docs(aio): change HttpClientModule reference to HttpClient docs(aio): capitalize Http to HTTP docs(aio): fix typo mistake in 'universal' guide docs(aio): gets rid of the parentheses and the "e.g." in 'universal' guide PR Close #21984
-
Miško Hevery authored
PR Close #22235
-
Pete Bacon Darwin authored
Previously only export docs were displaying a short description. Now methods in classes and interfaces also compute and render the short description. Closes #22500 PR Close #22583
-
Ward Bell authored
* tests were broken * incorrect instructions. * didn't match current CLI template for new project PR Close #22338
-
- Mar 06, 2018
-
-
Alex Eagle authored
PR Close #22597
-
Jason Aden authored
This change brings Angular largely in line with how AngularJS previously serialized URLs. This is based on RFC 3986 and resolves issues such as the above #10280 where URLs could be parsed, re-serialized, then parsed again producing a different result on the second parsing. Adjustments to be aware of in this commit: * URI fragments will now serialize the same as query strings * In the URI path or segments (portion prior to query string and/or fragment), the plus sign (`+`) and ampersand (`&`) will appear decoded * In the URL path or segments, parentheses values (`(` and `)`) will now appear percent encoded as `%28` and `%29` respectively * In the URL path or segments, semicolons will be encoded in their percent encoding `%3B` NOTE: Parentheses and semicolons denoting auxillary routes or matrix params will still appear in their decoded form -- only parentheses and semicolons used as values in a segment or key/value pair for matrix params will be encoded. While these changes are not considered breaking because applications should be decoding URLs and key/value pairs, it is possible that some unit tests will break if comparing hard-coded URLs in tests since that hard coded string will represent the old encoding. Therefore we are releasing this fix in the upcoming Angular v6 rather than adding it to a patch for v5. Fixes: #10280 PR Close #22337
-
Pawel Kozlowski authored
PR Close #22498
-
Suguru Inatomi authored
PR Close #22579
-
Pete Bacon Darwin authored
The spacing didn't work well when the screen was narrow. PR Close #22570
-
Pete Bacon Darwin authored
Closes #22130 PR Close #22570
-
Pete Bacon Darwin authored
Previously the doc-viewer would insert an embedded `<aio-toc>` element into the DOM directly after the H1 element. Now it will not do this if there is already a such element in the doc contents. This allows the content-author/template-developer to position the ToC for specific cases. PR Close #22570
-
Igor Minar authored
PR Close #22572
-
Kara Erickson authored
Closes #22495 PR Close #22529
-
Pete Bacon Darwin authored
PR Close #22584
-
Pete Bacon Darwin authored
PR Close #22565
-
Pete Bacon Darwin authored
PR Close #22565
-
Pete Bacon Darwin authored
Closes #22379 PR Close #22565
-
Pete Bacon Darwin authored
Closes #22537 PR Close #22563
-
SangKa.Z authored
PR Close #22553
-
Pete Bacon Darwin authored
PR Close #22534
-
Pete Bacon Darwin authored
Closes #22501 PR Close #22534
-
Pete Bacon Darwin authored
The previous approach just removed the first `a` tag that was found, but now that the header-link anchor is not at the start of the heading, it could fail. Closes #22493 PR Close #22533
-
Misko Hevery authored
PR Close #22510
-
Misko Hevery authored
PR Close #22510
-
- Mar 03, 2018
-
-
Alex Eagle authored
Also use it to test the public API for core and common Once we have an ng_package for every package, we can remove the npm dependency on ts-api-guardian and the gulp-based public api check. PR Close #22544
-
Alex Eagle authored
This is an exact mirror of https://github.com/angular/ts-api-guardian/tree/750f651eca4d57a4a7ebcc12c19d0beea1a62202 PR Close #22544
-
Hans Larsen authored
PR Close #22538
-
Alex Eagle authored
PR Close #22558
-
- Mar 02, 2018
-
-
Chuck Jazdzewski authored
PR Close #22330
-
Chuck Jazdzewski authored
PR Close #22336
-
Alex Eagle authored
When I enabled bazel remote caching, I also switched to running buildifier and skylint from the package.json script, which builds them from head. With remote caching, we do get cache hits for these, but looking up the action inputs actually takes quite a bit of time since we have to first fetch the remote repository, then do loading and analysis, then read the inputs to determine the cache key. It's more important to keep the lint job fast, so I'm reverting that part of the change for now. We can experiment with building them from head in a less critical repo. PR Close #22526
-
Rado Kirov authored
PR Close #22511
-
Alex Rickabaugh authored
Previously the injectable compiler assumed all tree-shakeable injectables would have dependencies that were injectables or InjectionTokens. However old code still uses string tokens (e.g. NgUpgrade and '$injector'). Using such tokens would cause the injectable compiler to crash. Now, the injectable compiler can properly generate a dependency on such a string token. PR Close #22376
-