https://github.com/angular/angular

sort by:
Revision Author Date Message Commit Date
bd3dddc release: cut the v6.0.1 release 11 May 2018, 05:22:49 UTC
1336a94 build: update to latest TypeScript rules (#23828) Fixes #23810 PR Close #23828 10 May 2018, 23:45:38 UTC
d280077 fix(elements): always check to create strategy (#23825) PR Close #23825 10 May 2018, 23:07:11 UTC
2b578f5 docs(elements): add angular element term to glossary (#23807) PR Close #23807 10 May 2018, 22:50:00 UTC
12dcb31 style: remove empty comments (#23404) PR Close #23404 10 May 2018, 22:48:13 UTC
f576851 docs(elements): emphasize future direction, update link (#23806) PR Close #23806 10 May 2018, 22:46:53 UTC
ca6cb66 docs: change release_schedule.md to link to new angular release page in docs (#23808) PR Close #23808 10 May 2018, 22:45:28 UTC
484233f docs(aio): add Alain Chautard in GDE list (#23783) PR Close #23783 10 May 2018, 19:07:10 UTC
3d8799b fix(router): avoid freezing queryParams in-place (#22663) The recognizer code used to call Object.freeze() on queryParams before using them to construct ActivatedRoutes, with the intent being to help avoid common invalid usage. Unfortunately, Object.freeze() works in-place, so this was also freezing the queryParams on the actual UrlTree object, making it more difficult to manipulate UrlTrees in things like UrlHandlingStrategy. This change simply shallow-copies the queryParams before freezing them. Fixes #22617 PR Close #22663 10 May 2018, 14:54:11 UTC
8733843 fix(router): correct the segment parsing so it won't break on ampersand (#23684) PR Close #23684 10 May 2018, 14:53:54 UTC
f109791 ci: add config for size plugin of the github rebot (#23665) PR Close #23665 10 May 2018, 14:53:34 UTC
06776d1 fix(aio): fix error in import after RxJS 6 migration (#22886) PR Close #22886 09 May 2018, 18:52:04 UTC
2b31b6d refactor(service-worker): sort manifest `url`/`hashTable` entries (#23586) This makes it easier to quickly check whether a specific file ended up in the manifest, for example when debugging. PR Close #23586 09 May 2018, 18:51:23 UTC
2254ac2 fix(service-worker): correctly handle requests with empty `clientId` (#23625) Requests from clients that are not assigned a client ID by the browser will produce `fetch` events with `null` or empty (`''`) `clientId`s. Previously, the ServiceWorker only handled `null` values correctly. Yet empty strings are also valid (see for example [here][1] and [there][2]). With this commit, the SW will interpret _all_ falsy `clientId` values the same (i.e. "no client ID assigned") and handle them appropriately. Related Chromium issue/discussion: [#832105][3] [1]: https://github.com/w3c/ServiceWorker/blob/4cc72bd0f13359f16cc733d88bed4ea52ee063c0/docs/index.bs#L1392 [2]: https://w3c.github.io/ServiceWorker/#fetchevent-interface [3]: https://bugs.chromium.org/p/chromium/issues/detail?id=832105 Fixes #23526 PR Close #23625 09 May 2018, 18:50:03 UTC
38c678f test(service-worker): support mock requests with null/empty client ID (#23625) PR Close #23625 09 May 2018, 18:50:03 UTC
1a65583 test(service-worker): improve adding clients in `SwTestHarness` (#23625) This commits changes how clients are added in `SwTestHarness`, so that the behavior in tests closer mimics what would happen in an actual ServiceWorker. It also removes auto-adding clients when calling `clients.get()`, which could hide bugs related to non-existing clients. PR Close #23625 09 May 2018, 18:50:03 UTC
2e466f4 build(bazel): update to rules_typescript 0.12.3 (#23617) PR Close #23617 09 May 2018, 18:47:11 UTC
7b06fa8 build(aio): include `navigation.json` changes in docs-watch (#23698) Closes #23582 PR Close #23698 09 May 2018, 18:45:19 UTC
3d71289 fix(aio): add link to v5 docs (#23794) Fixes #23781 PR Close #23794 09 May 2018, 18:44:45 UTC
75b8eda ci: Remove Chuck from pullapprove (#23798) Jason takes over his role on core, Keen for everything else PR Close #23798 09 May 2018, 18:43:47 UTC
fe7f48c docs(aio): Upgrade example dependencies to Angular V6 (#23660) PR Close #23660 08 May 2018, 20:56:48 UTC
29600cb docs(aio): Update i18n example to Angular V6 (#23660) PR Close #23660 08 May 2018, 20:56:48 UTC
5581e97 fix(core): call ngOnDestroy on all services that have it (#23755) Previously, ngOnDestroy was only called on services which were statically determined to have ngOnDestroy methods. In some cases, such as with services instantiated via factory functions, it's not statically known that the service has an ngOnDestroy method. This commit changes the runtime to look for ngOnDestroy when instantiating all DI tokens, and to call the method if it's present. Fixes #22466 Fixes #22240 Fixes #14818 PR Close #23755 08 May 2018, 20:55:29 UTC
19262d9 Revert "style(animations): fix short param names (#23668)" This reverts commit e3518967ad705b133ee21eedcf9546b5cb2e817e. This PR accidentaly introduces a breaking change: https://github.com/angular/angular/pull/23668#discussion_r186265055 05 May 2018, 15:40:35 UTC
1eb1c63 Revert "docs(animations): fix content errors (#23668)" This reverts commit 005dc8f68b9d09f2a4db46bdbfae3e05d3604818. The PR accidently introduced a breaking change https://github.com/angular/angular/pull/23668#discussion_r186265055 05 May 2018, 15:38:13 UTC
3807599 style(animations): fix short param names (#23668) PR Close #23668 05 May 2018, 15:17:02 UTC
2ed41d9 docs(animations): fix content errors (#23668) PR Close #23668 05 May 2018, 15:17:02 UTC
5eb9c01 ci: hide encryption key from circleci logs (#23585) PR Close #23585 04 May 2018, 23:33:59 UTC
09d9662 build: serve ivy todo app with real http-server (#23446) PR Close #23446 04 May 2018, 23:33:53 UTC
844cbd9 ci: publish build snapshots from Bazel/CircleCI (#23512) This uses a new script and CircleCI job called "build-packages-dist" which shims the new Bazel build to produce outputs matching the legacy build. We'll use this to get AIO testing onto CircleCI as well. We move the integration tests to a new circleCI job that depends on this one, as well as the build publishing job. Note that every PR will have a trivial green publishing status, because we always create this job even for PRs. We'd rather not - see https://discuss.circleci.com/t/workflows-pull-request-filter/14396/4 PR Close #23512 04 May 2018, 23:33:39 UTC
373a47d test: fix firebase deployment script test When I fixed the project id in 2c4850dc582287b7c34d4d26066fe4993638cbf0, I didn't realize we had a test that verified the wrong behavior. 04 May 2018, 22:40:50 UTC
83f12f3 build: update to latest nodejs bazel rules (#23683) PR Close #23683 04 May 2018, 22:29:03 UTC
bbc416c build: update bazel to 0.13 (#23623) PR Close #23623 04 May 2018, 22:23:56 UTC
07f2098 feat(aio): add v6 release notification (#23690) PR Close #23690 04 May 2018, 22:23:36 UTC
9b53a6e fix(aio): remove main background color when printing (#23538) PR Close #23538 04 May 2018, 22:21:14 UTC
65f8505 fix(aio): fix `code-example` print styles when printing backgrounds (#23538) Fixes #23431 PR Close #23538 04 May 2018, 22:21:14 UTC
5a5ea45 refactor(aio): use the same selectors for screen and print styles (#23538) PR Close #23538 04 May 2018, 22:21:14 UTC
52a3657 refactor(aio): include print styles last to overwrite other styles (#23538) PR Close #23538 04 May 2018, 22:21:14 UTC
3824e3f fix(animations): properly clean up queried element styles in safari/edge (#23686) Prior to this patch, if an element is queried and animated for 0 seconds (just a style() call and nothing else) then the styles applied would not be properly cleaned up due to their camelCased nature. PR Close #23686 04 May 2018, 22:04:20 UTC
05aa5e0 fix(animations): retain state styling for nodes that are moved around (#23686) PR Close #23686 04 May 2018, 22:04:20 UTC
4ddeb03 build(aio): use Angular 6.0.0 (#23687) PR Close #23687 03 May 2018, 23:05:34 UTC
afe6380 build(aio): update to Angular CLI 6.0.0 (#23687) PR Close #23687 03 May 2018, 23:05:34 UTC
947ea17 build: update the scripts/release/post-check script for 6.0.x 03 May 2018, 22:38:52 UTC
a190c45 fix(aio): correct project id for deployment of archive sites 03 May 2018, 22:05:38 UTC
9027818 docs(aio): Upgrade server-side rendering example to Angular V6 (#23649) PR Close #23649 03 May 2018, 21:24:44 UTC
0d480ac docs: add new info about angular update policies and resources (#23551) PR Close #23551 03 May 2018, 21:24:31 UTC
6934bf4 docs: add information on when not to use tree-shakable providers (#23634) PR Close #23634 03 May 2018, 21:24:16 UTC
7e7ea33 docs: add doc to include updates to the index.html with the new ng add command (#23616) PR Close #23616 03 May 2018, 21:23:30 UTC
5bd8c68 docs: improve the GitHub README.md, update links, etc 03 May 2018, 20:26:52 UTC
d28ab37 docs: add link to the v6 release announcement to our changelog 03 May 2018, 20:26:46 UTC
d0ccf5f release: cut the v6.0.0 release 03 May 2018, 19:17:26 UTC
ecde152 build: update to rxjs@6.0.0 (#23679) PR Close #23679 03 May 2018, 17:53:39 UTC
983e5f2 fix(aio): correctly route embedded live-example URLs from SW (#23637) Partially addresses #23626. PR Close #23637 02 May 2018, 22:55:23 UTC
5fc4299 refactor(aio): move right margin from `.home` image to `.home` anchor (#23624) This makes the outline of `.home` symmetric. PR Close #23624 02 May 2018, 22:54:15 UTC
1823d5d style(aio): add space between `.home` and `.hamburger` (#23624) When the `.hamburger` icon is clicked, it's background is drawn until the very edge of `.home`'s image, leaving no space. PR Close #23624 02 May 2018, 22:54:15 UTC
91d4da0 docs: add missing link to bootstrapping section (#23214) PR Close #23214 02 May 2018, 22:53:02 UTC
22eb8e2 build(aio): align stackblitz files with Angular CLI V6 (#23521) Also cleans up legacy references to `.angular-cli.json` PR Close #23521 02 May 2018, 22:00:57 UTC
f6002c1 docs(forms): Fixed a typo in the reactive form (From 'address' to 'secretLairs') section (#23221) PR Close #23221 02 May 2018, 22:00:28 UTC
14138f6 docs(elements): add intro connecting angular elements to custom elements (#23638) PR Close #23638 02 May 2018, 21:57:20 UTC
f11daa2 docs(aio): update Egghead.io URL (#23598) Closes #23597 PR Close #23598 01 May 2018, 17:27:16 UTC
31a435e docs: fix typo in tag name (`my-child` --> `app-child`) (#23606) Fixes #23599 PR Close #23606 01 May 2018, 17:26:50 UTC
3e92b22 test: add i18n to cli-hello-world integration test (#23527) PR Close #23527 27 April 2018, 18:26:50 UTC
2e5457c docs(aio): update docs error in guide/http (#23567) Updates documentation to include examples for both req.flush and req.error in http testing examples. PR Close #23567 27 April 2018, 18:26:27 UTC
1ab5fba build(aio): add support for faster, unoptimized `serve` (#23569) When running `yarn start` and `yarn serve-and-sync`, we are usually more interested in faster re-build times than optimized builds. This was also the behavior, before upgrading to @angular/cli@6 (fc5af69fb). This commit introduces a new configuration (`fast`), which is used by `yarn start` and `yarn serve-and-sync` to restore the faster, unoptimized builds. Other commands, such as `ng serve` and `ng e2e`, remain unchanged (using slower, optimized builds). PR Close #23569 27 April 2018, 18:26:22 UTC
e1e57dd docs: correct more typos (#23565) PR Close #23565 27 April 2018, 18:26:17 UTC
ee7cb48 docs: correct typos (#23565) PR Close #23565 27 April 2018, 18:26:10 UTC
a30c570 docs: correct node.js version and usage (#23565) PR Close #23565 27 April 2018, 18:26:04 UTC
8a49ec4 ci: add Brandon Roberts as an aio approver (#23417) PR Close #23417 27 April 2018, 18:25:59 UTC
697b6c0 fix(core): avoid eager providers re-initialization (#23559) Fix a corner case where eager providers were getting constructed twice if the provider was requested before the initialization of the NgModule is complete. PR Close #23559 27 April 2018, 18:25:47 UTC
4008e36 release: cut the v6.0.0-rc.6 release 27 April 2018, 17:47:56 UTC
e47bb52 Revert "refactor(core): tree-shake application_module providers (#23477)" This reverts commit ac2b530f4b6b273eb0cf96753302f07d62ce6c0c. The change is breaking targets in g3 see cl/194336387. 27 April 2018, 14:13:56 UTC
ac2b530 refactor(core): tree-shake application_module providers (#23477) PR Close #23477 25 April 2018, 22:54:41 UTC
64bf6ed docs: update glossary architectural terms (#23045) PR Close #23045 25 April 2018, 20:21:52 UTC
adf6235 docs: corrected spelling of "ambient". 24 April 2018, 22:05:31 UTC
04c18ac docs: fix typo (#23514) PR Close #23514 24 April 2018, 21:43:34 UTC
1b26dd8 docs(benchpress): fix typo in README (#23471) (#23488) PR Close #23488 24 April 2018, 21:37:03 UTC
f721b06 style: format code 24 April 2018, 21:36:30 UTC
0bc8443 fix(compiler): avoid a crash in ngc-wrapped. (#23468) `ng.performCompilation` can return an `undefined` program, which is not handled by ngc-wrapped. Avoid crashing by checking for the error return and returning the diagnostics. PR Close #23468 24 April 2018, 20:57:04 UTC
db17231 ci(aio): fix `deploy-to-firebase` script (#23470) Temporary workaround for angular/angular-cli#10398. The behavior of `yarn build` remains the same, but building for a specific deployment env (e.g. archive, next) requires `yarn build-for $deployEnv`. PR Close #23470 24 April 2018, 18:15:35 UTC
540626a build(common): mark locales files as side-effect-full (#23509) Fixes https://github.com/angular/angular-cli/issues/10322 PR Close #23509 24 April 2018, 18:14:52 UTC
391bfce docs(aio): Add UpgradingAngularJS to education resources (#23169) PR Close #23169 23 April 2018, 20:36:48 UTC
d8de648 fix(router): cache route handle if found (#22475) When asking the route reuse strategy to retrieve a detached route handle, store the return value in a local variable for further processing instead of asking again later. resolves #22474 PR Close #22475 23 April 2018, 20:35:59 UTC
151fb66 ci: add alxhub as owner to a few packages (#23510) PR Close #23510 23 April 2018, 17:08:25 UTC
02424ff Revert "style(compiler): fix lint issues (#23480)" This reverts commit f0925d9705a793a44434284636de0205e37502a4. 22 April 2018, 19:21:24 UTC
f0925d9 style(compiler): fix lint issues (#23480) PR Close #23480 22 April 2018, 18:55:33 UTC
212b806 build: make commit validation accept typical Revert messages (#23480) fixes #23479 PR Close #23480 22 April 2018, 18:49:49 UTC
b9431e8 fix(compiler): handle undefined annotation metadata (#23349) In certain cases seen in production, simplify() can returned undefined when simplifying decorator metadata. This has proven tricky to reproduce in an isolated test, but the fix is simple and low-risk: don't attempt to spread an undefined set of annotations in the first place. PR Close #23349 20 April 2018, 01:57:22 UTC
7790cfa Revert "fix(compiler): Pretty print object instead of [Object object] (#22689)" (#23442) This reverts commit 8555a3a3cd95831f81b0e04b74942d451afd163d. Reverted because of https://github.com/angular/angular/issues/23440 PR Close #23442 19 April 2018, 21:52:49 UTC
41b5149 docs(aio): add front page campaign for the ng-conf live stream (#23391) PR Close #23391 17 April 2018, 21:13:43 UTC
06f8656 docs(aio): Cleanup examples with edits from Igor/George (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
824f74f build(aio): turn on webpack's stats.json generation for debugging purposes (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
5301c43 build(aio): add @angular/language-service (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
f280d1a docs(aio): Bump shared yarn.lock file for examples (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
5e741d4 docs(aio): Bump shared dependencies to RC5 (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
0035d41 docs(aio): Fix failing upgrade-module tests (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
08f447c docs(aio): Fix failing boilerplate tests (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
8953f12 docs(aio): Upgrade examples to Angular 6 (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
6274007 test(aio): fix failing tests (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
ee76be7 docs(aio): update `yarn test` command in README.md (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
a8c720b build(aio): update to @angular/material@6.0.0-rc.11 (#23234) PR Close #23234 17 April 2018, 21:09:04 UTC
back to top