diff --git a/CHANGELOG.md b/CHANGELOG.md index 268d138699..d80c68c03c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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(...); + ``` + # 2.0.0-alpha.47 (2015-12-01)