https://github.com/angular/angular

sort by:
Revision Author Date Message Commit Date
a10bf34 docs: add changelog for 5.2.7 28 February 2018, 23:01:38 UTC
38146a2 release: cut the 5.2.7 release 28 February 2018, 23:00:20 UTC
eccce17 docs: fix community tab in GitHub by copying CoC 28 February 2018, 03:04:00 UTC
4aef9de fix(upgrade): correctly destroy nested downgraded component (#22400) Previously, when a downgraded component was destroyed in a way that did not trigger the `$destroy` event on the element (e.g. when a parent element was removed from the DOM by Angular, not AngularJS), the `ComponentRef` was not destroyed and unregistered. This commit fixes it by listening for the `$destroy` event on both the element and the scope. Fixes #22392 PR Close #22400 28 February 2018, 02:41:03 UTC
f2fa7a2 docs(aio): add Observable and Rx docs (#21423) PR Close #21423 27 February 2018, 19:24:31 UTC
e1fbe20 style(aio): updated padding-right for the .alert class in _heading-anchors.scss (#22431) The h3 element is overflowing over its surrounding div element. Modified padding-right to align consistently with the remainder of div contents. fixes: #22407 PR Close #22431 27 February 2018, 01:52:30 UTC
38bd8d4 style(aio): added padding-left to h3 in _subsection.scss (#22431) The h3 element is overflowing over its surrounding div element. Modified padding-left to align consistently with the remainder of div contents. fixes: #22407 PR Close #22431 27 February 2018, 01:52:30 UTC
d033106 docs: update i18n guide for projects that don't use the cli (#21767) PR Close #21767 27 February 2018, 01:51:58 UTC
de02a7a fix(platform-server): generate correct stylings for camel case names (#22263) * Add correct mapping from camel case to kebab case for CSS style names * Remove internal CSS methods in favor of native Domino APIs Fixes #19235 PR Close #22263 27 February 2018, 01:46:21 UTC
c30a942 docs: testing guide for CLI (#20697) - updates tests - heavy prose revisions - uses HttpClient (with angular-in-memory-web-api) - test HeroService using `HttpClientTestingModule` - scrub away most By.CSS - fake async observable with `asyncData()` - extensive Twain work - different take on retryWhen - remove app barrels (& systemjs.extras) which troubled plunker/systemjs - add dummy export const to hero.ts (plunkr/systemjs fails w/o it) - shrink and re-organize TOC - add marble testing package and tests - demonstrate the "no beforeEach()" test coding style - add section on Http service testing - prepare for stackblitz - confirm works in plunker except excluded marble test - add tests for avoidFile class feature of CodeExampleComponent PR Close #20697 26 February 2018, 21:40:24 UTC
2a38d93 docs(aio): fix doc typo referring to `httpOptions` (#22456) The variable name mention should match the actual tutorial code. PR Close #22456 26 February 2018, 21:32:44 UTC
a9a0e27 fix(upgrade): fix empty transclusion content with AngularJS@>=1.5.8 (#22167) The function provided by `ngUpgrade` as `parentBoundTranscludeFn` when upgrading a component with transclusion, will break in AngularJS v1.5.8+ if no transclusion content is provided. The reason is that AngularJS will try to destroy the transclusion scope (which would not be needed any more). But since the transcluded content comes from Angular, not AngularJS, there is no transclusion scope to destroy. This commit fixes it by providing a dummy scope object with a no-op `$destroy()` method. Fixes #22175 PR Close #22167 25 February 2018, 18:06:14 UTC
6638390 fix(upgrade): correctly handle `=` bindings in `@angular/upgrade` (#22167) Previously, having a `=` binding on an upgraded components would result in setting the corresponding property to an EventEmitter function. This should only happen for `&` bindings. This commit rstrores the correct behavior. Note: The issue was only present in the dynamic version of `ngUpgrade`. The static version worked as expected. The error did not show up in tests, because in AngularJS v1.5.x a function would be serialized to an empty string in interpolations, thus making them indistinguishable from uninitialized properties (in the view). The serialization behavior changed in AngularJS v1.6.x, making the errors visible. PR Close #22167 25 February 2018, 18:06:14 UTC
1eb5413 test(upgrade): run tests against multiple AngularJS versions (#22167) Fixes #19332 PR Close #22167 25 February 2018, 18:06:14 UTC
6c9c173 refactor(upgrade): use correct paths for imports (#22167) `packages/upgrade/static/src` is anymlink to `packages/upgrade/src`. Still, using the correct paths (e.g. using `@angular/upgrade/static/src/...` for `@angula/upgrade/static` specs ensures that the module loader (e.g. SystemJS) can map the imports to the same instances. PR Close #22167 25 February 2018, 18:06:14 UTC
1e08a94 test(platform-browser): remove stray `debugger` statement (#22167) PR Close #22167 25 February 2018, 18:06:14 UTC
4a08745 build: add support for the "merge-assistance" label in merge-pr (#22414) fixes #22256 PR Close #22414 23 February 2018, 20:58:30 UTC
cf91906 docs(aio): Essential JS 2 url updated (#19739) PR Close #19739 23 February 2018, 19:18:12 UTC
0723c04 docs(aio): Essential JS 2 UI Components. (#19739) PR Close #19739 23 February 2018, 19:18:12 UTC
2b71889 build: fix 5.2.x merge (#22408) PR Close #22408 23 February 2018, 18:21:33 UTC
17c1577 ci: don't use bazel git_repository rule (#22406) It's currently broken on CircleCI because of a TLS change made by GitHub. This is okay as a permanent change, we don't really want bazel to fetch a full git history. Fixes #22405 PR Close #22406 23 February 2018, 17:41:11 UTC
150bac3 docs: fix deployment sample path (#22048) PR Close #22048 22 February 2018, 21:40:57 UTC
8f0a064 fix(router): don't mutate route configs (#22358) Fixes #22203 PR Close #22358 22 February 2018, 21:35:38 UTC
1776239 build: disable bazel-out symlink (#22375) It causes headaches on MacOS High Sierra, see https://github.com/bazelbuild/bazel/issues/4603 PR Close #22375 22 February 2018, 21:33:12 UTC
da1b4d5 docs: fix ngmodules-jsmodules pre-req (#22316) closes #22157 PR Close #22316 22 February 2018, 19:20:48 UTC
aa100f6 docs: edit styleguide recommendation on components as elements (#22074) Change recommendation on using attributes for components since there are use cases including the use of <button mat-button> in MD Closes #19401. PR Close #22074 22 February 2018, 19:20:21 UTC
9cca5a8 build: allow passing node options to ngc. (#22245) PR Close #22245 22 February 2018, 18:23:54 UTC
7c3b95b docs: add changelog for 5.2.6 22 February 2018, 00:45:10 UTC
e4e8a68 release: cut the 5.2.6 release 22 February 2018, 00:45:09 UTC
6460ac0 Revert "feat(platform-browser): fix #19604, can config hammerOptions (#21979)" This reverts commit fdbfd21bcdae775bb6fbaa6e407998f796fd2613. 22 February 2018, 00:45:09 UTC
ee91de9 feat(core): support metadata reflection for native class types (#22356) closes #21731 PR Close #22356 22 February 2018, 00:09:27 UTC
5ec38f2 fix(core): properly handle function without prototype in reflector (#22284) closes #19978 PR Close #22284 21 February 2018, 22:52:05 UTC
612cfec docs(aio): updates directive event hooks real capabilities (#16654) Minor documentation update to include event hooks that were assumed to only work on components. Closes angular/angular#10221 PR Close #16654 21 February 2018, 22:51:05 UTC
dfdade2 docs(aio): Wrong code example. Form status field was added later in the guide. (#21275) PR Close #21275 21 February 2018, 19:06:48 UTC
c2f78e1 docs(http): fix a typo in code comment (#22327) PR Close #22327 21 February 2018, 19:06:06 UTC
484802c build: make git revert messages valid (#22339) `git revert` default message is "Revert <original message>" (no semi-colon) PR Close #22339 21 February 2018, 19:05:35 UTC
ee53577 docs: add ngStyle to cheat sheet (#22070) PR Close #22070 21 February 2018, 00:08:16 UTC
94756eb docs(aio): fix incorrect quote mark usage (#22335) PR Close #22335 20 February 2018, 23:42:55 UTC
23b0707 docs(aio): fix the css of the heroes component's buttons (#22333) Fixes #22222 PR Close #22333 20 February 2018, 23:41:57 UTC
a2cb010 docs(aio): Fix name of component (#22332) PR Close #22332 20 February 2018, 23:41:35 UTC
d20a08b docs(aio): update installed mobile tool list (#22331) PR Close #22331 20 February 2018, 23:41:15 UTC
5bdb3ac build: update tsickle dep from compiler-cli (#22295) PR Close #22295 20 February 2018, 23:40:45 UTC
c5418c7 fix(compiler-cli): add missing entry point to package, update tsickle (#22295) PR Close #22295 20 February 2018, 23:40:45 UTC
09b4612 docs(aio): add Nx and Angular Enterprise Playbook to resources (#22321) PR Close #22321 20 February 2018, 18:09:34 UTC
a346d28 test(language-service): fix minor typos (#21372) PR Close #21372 20 February 2018, 18:08:55 UTC
bf07837 test(common): fix ngIf tests The failing test was ported for the master branch which ignores whitespaces 19 February 2018, 04:12:47 UTC
cdfedc1 fix(common): fix merge error in ng_if.ts 19 February 2018, 03:51:15 UTC
af6a056 fix(common): then and else template might be set to null (#22298) PR Close #22298 19 February 2018, 03:28:36 UTC
c726d1d docs(aio): add angular-buch to resources (#22163) adds a link to the website of our book. second version of the text. thanks! PR Close #22163 18 February 2018, 23:12:14 UTC
2030846 docs(aio): add angular-buch to resources (#22163) adds a link to the website of our book. many thanks for reviewing this PR Close #22163 18 February 2018, 23:12:14 UTC
9dae97c docs: correct grammar mistakes in CONTRIBUTING.md (#22285) Various grammar mistakes were present in the contribution guidelines This commit corrects some of them PR Close #22285 18 February 2018, 21:27:24 UTC
228eb9f fix(aio): improve announcement-bar layout with wide logos (#22272) PR Close #22272 18 February 2018, 21:16:30 UTC
debf01d docs(aio): added ngconf announcement (#22272) PR Close #22272 18 February 2018, 21:16:30 UTC
51abe69 fix: merge-pr script (#22290) PR Close #22290 18 February 2018, 21:13:29 UTC
396bc0d build: use authenticated mode for the merge script (#22269) `TOKEN` is the name with use for other GH scripts PR Close #22269 18 February 2018, 21:01:51 UTC
861250b docs: fix changelog errors (#22228) PR Close #22228 17 February 2018, 02:03:04 UTC
81c1e0a docs: replace plnkr with StackBlitz (#20365) PR Close #20365 16 February 2018, 23:12:10 UTC
ce5e8fa fix(common): correct mapping of Observable methods (#20518) fixes #20516 PR Close #20518 16 February 2018, 23:10:31 UTC
185a6ab build: add esm5 build (#22258) This is a partial cherry-pick of 370ab66c4f020da7e1a6b25b96109f1b3cbf9cba which included this along with a new feature for ivy. PR Close #22258 16 February 2018, 22:49:24 UTC
6b45784 test(aio): increase `docs-test` timeouts to prevent flakes on Travis (#22261) PR Close #22261 16 February 2018, 22:46:23 UTC
5f52ea3 feat(bazel): ng_module produces bundle index (#22176) It creates the bundle index .d.ts and .metadata.json files. The names are based on the ng_module target. PR Close #22176 15 February 2018, 22:17:16 UTC
6c1e7ac feat(bazel): introduce a binary stamping feature (#22176) This grabs version control metadata and makes it available in the build, eg. to put in the version field for released artifacts PR Close #22176 15 February 2018, 22:08:54 UTC
6597616 refactor(bazel): convert most ts_library to ng_module (#22176) This is necessary so we can produce ng metadata for our packages that are published as libraries PR Close #22176 15 February 2018, 22:08:54 UTC
6a57264 Revert: "build: allow bazel build ... (#22168)" This reverts commit 3237f1dbfc0bfbd018627d2ffddf63cc01a69e95. 15 February 2018, 22:07:41 UTC
1e3e0fa fix(aio): improve printing styles (#19651) printfix PR Close #19651 14 February 2018, 23:49:59 UTC
0c88d5d style: fix typos boostrap to bootstrap (#21917) PR Close #21917 14 February 2018, 23:21:52 UTC
0b8b06e build: comment-out chromium version checking code temporarily (#22232) Related #22231 PR Close #22232 14 February 2018, 22:26:43 UTC
edd6cd4 docs: typo - components should be possessive (#22172) PR Close #22172 14 February 2018, 20:06:52 UTC
fdbfd21 feat(platform-browser): fix #19604, can config hammerOptions (#21979) PR Close #21979 14 February 2018, 20:02:59 UTC
0a5283d docs(aio): fix extraneous divs (#22069) PR Close #22069 14 February 2018, 20:02:36 UTC
3237f1d build: allow bazel build ... (#22168) Note, the reason this commit removes `firebase-tools` is: 1) firebase-tools has an optional dependency on https://www.npmjs.com/package/@google-cloud/functions-emulator 2) yarn's `--ignore-optional` doesn't work for transitive deps, so there's no way to yarn install without getting that functions-emulator package 3) functions-emulator has a transitive dep on `grpc` 4) the version of `grpc` we get has `BUILD` files and no `WORKSPACE` file so it always breaks `bazel build ...` It could be solved by any of: 1) remove firebase-tools - this is what I did 2) fix yarn so you can omit optional deps of a transitive dep 3) make functions-emulator depend transitively on a more recent `grpc` version 4) patch `grpc` after install by doing an `rm` command in our postinstall or something In its place we must install protobufjs. This is needed by the ngc-wrapped test, which needs jasmine as well as bazel's worker mode dependencies, and therefore cannot simply rely on node_modules = "@build_bazel_rules_typescript_tsc_wrapped_deps//:node_modules" PR Close #22168 14 February 2018, 20:01:42 UTC
106b435 docs: add changelog for 5.2.5 14 February 2018, 05:07:53 UTC
ca69dfd release: cut the 5.2.5 release 14 February 2018, 05:06:54 UTC
1b8ea10 fix(compiler): make unary plus operator consistent to JavaScript (#22154) fixes #22089 PR Close #22154 13 February 2018, 21:04:30 UTC
da6ab91 fix(platform-browser): support 0/false/null values in transfer_state (#22179) Issue #22178 PR Close #22179 13 February 2018, 19:28:22 UTC
c4f841f fix(core): add stacktrace in log when error during cleanup component in TestBed (#22162) PR Close #22162 13 February 2018, 19:28:08 UTC
e576b69 ci: update ngbot config file (#22173) Fixes #22053 PR Close #22173 13 February 2018, 18:26:06 UTC
f938774 ci: remove conditional clause for bazel install (#22170) No longer needed since we don't have a bazel job PR Close #22170 13 February 2018, 18:25:51 UTC
c0b7806 ci: remove bazel job from Travis (#22170) This saves us an executor on Travis. Note that we still do a bazel build on travis when we run the integration tests under e2e_2. We expect that CircleCI is the only place we'll ever consume bazel-built artifacts. PR Close #22170 13 February 2018, 18:25:51 UTC
2931018 ci: enable bazel remote caching on CircleCI (#21784) This should cause Bazel builds to be incremental, only re-building parts of Angular affected by changes since the last build. It also fixes a potential version skew, where CI was running the Bazel linter binaries in the ngcontainer docker image, but developers built them using the versions in WORKSPACE PR Close #21784 13 February 2018, 18:14:22 UTC
e97afae docs(aio): fix typo in "preserveWhitespaces" example (#22182) Fixes #22147 PR Close #22182 12 February 2018, 23:57:42 UTC
c6bdc83 fix(common): weaken AsyncPipe transform signature (#22169) The AsyncPipe type signature was changed to allow deferred creation of promises and observalbes that is supported by the implementation by allowing `Promise<T>|null|undefined` and by allowing `Observable<T>|null|undefined`. PR Close #22169 12 February 2018, 23:57:29 UTC
1a897e4 docs(aio): add angular-playground to resources (#22042) PR Close #22042 12 February 2018, 22:30:58 UTC
603e50d refactor(router): move activation to private method (#22144) PR Close #22144 12 February 2018, 18:41:18 UTC
ca5b724 docs(aio): add angular.schule to resources (#22164) adds a link to our website. many thanks for reviewing this PR Close #22164 12 February 2018, 18:01:23 UTC
a616dd6 fix(aio): remove broken span closing tag (#22146) PR Close #22146 12 February 2018, 18:01:10 UTC
0ed64af docs(aio): put structural directives back in the nav (#21856) PR Close #21856 12 February 2018, 18:00:14 UTC
d57fd0b fix(bazel): allow TS to read ambient typings (#21876) Same fix as https://github.com/bazelbuild/rules_typescript/commit/e70d7a2a7c08d7031f4dd4a385a7a6aa27296948 This is because the CompilerOptions needs to have directoryExists undefined in order to get the google3 behavior, so we have to set the property outside the constructor. Fixes #21872 PR Close #21876 10 February 2018, 01:16:25 UTC
9b280ee build: merge-pr new checks that all requested changes have been addressed (#21817) PR Close #21817 10 February 2018, 01:14:17 UTC
d4a9db2 fix(aio): do not rewrite /styleguide URL in Service Worker (#22104) This URL needs to be redirected via the server, so we must exclude it from being rewitten. Closes #22078 PR Close #22104 09 February 2018, 21:10:48 UTC
2740b69 docs(aio): update docs changelog with links to ts-to-js guide (#21763) (#22104) PR Close #21763 PR Close #22104 09 February 2018, 21:10:48 UTC
15ff7ba fix(aio): update Firebase redirects and SW routes (#21763) (#22104) Closes #21377 PR Close #21763 PR Close #22104 09 February 2018, 21:10:48 UTC
615bb95 build(aio): test Service Worker "routing" configuration (#21763) (#22104) PR Close #21763 PR Close #22104 09 February 2018, 21:10:48 UTC
2b67400 build(aio): test Firebase hosting redirection configuration (#21763) (#22104) PR Close #21763 PR Close #22104 09 February 2018, 21:10:48 UTC
ac815f7 docs: fix typo in http.md (#22058) PR Close #22058 09 February 2018, 21:10:24 UTC
854f0ff feat(aio): enable data driven homepage announcements (#22043) PR Close #22043 09 February 2018, 21:10:12 UTC
c555234 docs(aio): several fix for ngmodule guides (#21517) PR Close #21517 09 February 2018, 21:03:47 UTC
f80b9da Revert "docs(common): add `HttpParamsOptions` to the public API (#20332)" This reverts commit de561f36e10b244af8817775a2486cf2a1fc5314. 08 February 2018, 22:38:13 UTC
c5ec8d9 fix(bazel): improve error message for missing assets (#22096) fixes #22095 PR Close #22096 08 February 2018, 18:01:27 UTC
de561f3 docs(common): add `HttpParamsOptions` to the public API (#20332) Fixes #20276 PR Close #20332 08 February 2018, 17:44:37 UTC
back to top