From 4e16feaf722e8b1b3b14eff83b3fe5d2635daa19 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 9 Dec 2015 22:10:12 -0800 Subject: [PATCH] docs(changelog): add breaking change note about peerDependencies Closes #5747 --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f747a45c4e..c88db45b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,26 @@ Use `angular-polyfills.js` instead. ```html
``` +* rxjs, reflect-metadata, zone.js and es6-shims now must be specified as + explicit dependencies of each angular app that uses npm for package management. + + To migrate, please add the following into the "dependencies" section of your package.json: + + ``` + "dependencies": { + ... + + "es6-promise": "^3.0.2", + "es6-shim": "^0.33.3", + "reflect-metadata": "0.1.2", + "rxjs": "5.0.0-alpha.11", + "zone.js": "0.5.8" + + ... + } + ``` + + or check angular2's package.json for the latest peer dependencies