|
| 1 | +<a name="2.0.0-alpha.37"></a> |
| 2 | +# 2.0.0-alpha.37 (2015-09-09) |
| 3 | + |
| 4 | + |
| 5 | +### Bug Fixes |
| 6 | + |
| 7 | +* **build:** delete unreferenced typings on npm install ([42e1b07](https://github.com/angular/angular/commit/42e1b07)), closes [#1636](https://github.com/angular/angular/issues/1636) [#3940](https://github.com/angular/angular/issues/3940) |
| 8 | +* **bundle:** don't include System.config in dev bundle ([a94f051](https://github.com/angular/angular/commit/a94f051)), closes [#3826](https://github.com/angular/angular/issues/3826) [#3862](https://github.com/angular/angular/issues/3862) |
| 9 | +* **ComponentUrlMapper:** support relative template URLs in Dartium ([7c7888d](https://github.com/angular/angular/commit/7c7888d)), closes [#2771](https://github.com/angular/angular/issues/2771) [#3743](https://github.com/angular/angular/issues/3743) |
| 10 | +* **core:** Fix type error ([6c3c606](https://github.com/angular/angular/commit/6c3c606)) |
| 11 | +* **http:** change type declarations to interfaces and export EventEmitter ([10437ab](https://github.com/angular/angular/commit/10437ab)) |
| 12 | +* **router:** re-export of Type ([b8be4bf](https://github.com/angular/angular/commit/b8be4bf)), closes [#3632](https://github.com/angular/angular/issues/3632) [#3704](https://github.com/angular/angular/issues/3704) |
| 13 | +* **RouteRegistry:** initialize RouteParams.params ([3791c4a](https://github.com/angular/angular/commit/3791c4a)), closes [#3755](https://github.com/angular/angular/issues/3755) |
| 14 | +* **test:** error in karma when systemjs imports fail ([7820086](https://github.com/angular/angular/commit/7820086)), closes [#3846](https://github.com/angular/angular/issues/3846) |
| 15 | +* **typings:** emit spread parameters ([a34d4c6](https://github.com/angular/angular/commit/a34d4c6)), closes [#3875](https://github.com/angular/angular/issues/3875) |
| 16 | +* **WebWorker:** Return boolean from `dispatchRenderEvent` ([457eb5d](https://github.com/angular/angular/commit/457eb5d)) |
| 17 | +* **WebWorker:** WebWorkerRenderer removes views after they're destroyed ([9619636](https://github.com/angular/angular/commit/9619636)), closes [#3240](https://github.com/angular/angular/issues/3240) [#3894](https://github.com/angular/angular/issues/3894) |
| 18 | + |
| 19 | +### Features |
| 20 | + |
| 21 | +* **compile:** add HtmlParser, TemplateParser, ComponentMetadataLoader ([9f576b0](https://github.com/angular/angular/commit/9f576b0)), closes [#3839](https://github.com/angular/angular/issues/3839) |
| 22 | +* **compiler:** add full directive metadata and validation logic ([f93cd9c](https://github.com/angular/angular/commit/f93cd9c)), closes [#3880](https://github.com/angular/angular/issues/3880) |
| 23 | +* **core:** added afterContentInit, afterViewInit, and afterViewChecked hooks ([d49bc43](https://github.com/angular/angular/commit/d49bc43)), closes [#3897](https://github.com/angular/angular/issues/3897) |
| 24 | +* **core:** remove the (^ syntax and make all DOM events bubbling ([60ce884](https://github.com/angular/angular/commit/60ce884)), closes [#3864](https://github.com/angular/angular/issues/3864) |
| 25 | +* **docs:** document code size management tools for Dart ([6532171](https://github.com/angular/angular/commit/6532171)) |
| 26 | +* **docs:** document unused reflection info tracking ([46f751b](https://github.com/angular/angular/commit/46f751b)) |
| 27 | +* **exception_handler:** changed ExceptionHandler to use console.error instead of console.log ([3bb27de](https://github.com/angular/angular/commit/3bb27de)), closes [#3812](https://github.com/angular/angular/issues/3812) |
| 28 | +* **router:** hash-cons ComponentInstructions ([e1a7e03](https://github.com/angular/angular/commit/e1a7e03)) |
| 29 | +* **router:** implement Router.isRouteActive ([de37729](https://github.com/angular/angular/commit/de37729)) |
| 30 | +* **router:** router-link-active CSS class support ([36eb9d3](https://github.com/angular/angular/commit/36eb9d3)), closes [#3209](https://github.com/angular/angular/issues/3209) |
| 31 | +* **WebWorker:** Expose MessageBroker API ([358908e](https://github.com/angular/angular/commit/358908e)), closes [#3942](https://github.com/angular/angular/issues/3942) |
| 32 | +* **WebWorkers:** Add WebSocket MessageBuses for debugging apps ([4ba4427](https://github.com/angular/angular/commit/4ba4427)), closes [#3858](https://github.com/angular/angular/issues/3858) |
| 33 | + |
| 34 | + |
| 35 | +### BREAKING CHANGES |
| 36 | + |
| 37 | +* Before |
| 38 | + |
| 39 | +``` |
| 40 | +<div (^click)="onEventHandler()"> |
| 41 | + <button></button> |
| 42 | +</div> |
| 43 | +``` |
| 44 | +After |
| 45 | +``` |
| 46 | +<div (click)="onEventHandler()"> |
| 47 | + <button></button> |
| 48 | +</div> |
| 49 | +``` |
| 50 | + |
| 51 | + |
| 52 | + |
1 | 53 | <a name="2.0.0-alpha.36"></a> |
2 | 54 | # 2.0.0-alpha.36 (2015-08-31) |
3 | 55 |
|
|
0 commit comments