fix(changelog): add RxJS imports breaking change

Closes #5678
This commit is contained in:
Rob Wormald 2015-12-07 14:45:50 -08:00 committed by Jeremy Elbourn
parent 2d313c4d1d
commit ad481694e1
1 changed files with 11 additions and 2 deletions

View File

@ -46,8 +46,17 @@ import * as core from 'angular2/core';
* Http's MockBackend is no longer exported from the `angular2/http` module. It's now available at `angular2/http/testing`
* Operators and Observables from RxJS (e.g. .map(), .toArray(), .toPromise(), etc ) now need to be explicitly imported (once per operator in your app)
```
import {Observable} from 'angular2/angular2/'
import 'rxjs/operators/map';
import 'rxjs/observable/interval'
Observable.interval(1000).subscribe(...);
http.get('foos.json').map(res => res.json()).subscribe(...);
```
<a name="2.0.0-alpha.47"></a>
# 2.0.0-alpha.47 (2015-12-01)