chore(changelog): document the breaking change of including typings

This commit is contained in:
Alex Eagle 2015-10-13 13:46:12 -07:00
parent 5a505975bf
commit f5159389b3
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,11 @@ npm package. See #4706 for more info.
* **build:** add tasks to watch and recompile js and dart ([50e922f](https://github.com/angular/angular/commit/50e922f)) * **build:** add tasks to watch and recompile js and dart ([50e922f](https://github.com/angular/angular/commit/50e922f))
* **forms:** add minlength and maxlength validators ([e82a35d](https://github.com/angular/angular/commit/e82a35d)), closes [#4705](https://github.com/angular/angular/issues/4705) * **forms:** add minlength and maxlength validators ([e82a35d](https://github.com/angular/angular/commit/e82a35d)), closes [#4705](https://github.com/angular/angular/issues/4705)
### BREAKING CHANGES
- TypeScript typings are now included in the distribution. If you have installed external typings
(eg. using tsd to fetch files from DefinitelyTyped), you need to remove them. TypeScript will give
a `Duplicate identifier` error if the same type definition appears twice.
<a name="2.0.0-alpha.41"></a> <a name="2.0.0-alpha.41"></a>
# 2.0.0-alpha.41 (2015-10-13) # 2.0.0-alpha.41 (2015-10-13)
@ -60,7 +64,6 @@ npm package. See #4706 for more info.
<cmp [(prop)]="field"> is desugared to <cmp [prop]="field" (prop-change)="field=$event"> <cmp [(prop)]="field"> is desugared to <cmp [prop]="field" (prop-change)="field=$event">
``` ```
### API DEPRECATION ### API DEPRECATION
- "DI Binding" terminology has changed to "DI Providers" to avoid conflicts/confusion with data-binding. All commonly used apis that use "bind" or "binding" in the name still work but are deprecated and will be removed in future alpha releases. Please update your code: - "DI Binding" terminology has changed to "DI Providers" to avoid conflicts/confusion with data-binding. All commonly used apis that use "bind" or "binding" in the name still work but are deprecated and will be removed in future alpha releases. Please update your code: