From 1c937a10f95a61e76c8f624f09332a78a867903c Mon Sep 17 00:00:00 2001 From: vsavkin Date: Thu, 16 Jun 2016 15:25:16 -0700 Subject: [PATCH] chore(router): add changelog --- modules/@angular/router/CHANGELOG.md | 36 ++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 modules/@angular/router/CHANGELOG.md diff --git a/modules/@angular/router/CHANGELOG.md b/modules/@angular/router/CHANGELOG.md new file mode 100644 index 0000000000..e52f92a16c --- /dev/null +++ b/modules/@angular/router/CHANGELOG.md @@ -0,0 +1,36 @@ +# 3.0.0-alpha.7 (--) + +## Features +* feat(router): add route config validation +* feat(router): do not support paths starting with / +* feat(router): drop index property + +## Bug Fixes +* fix(router): stringify positional parameters when using routerLink + +## Breaking Changes + +No longer supporting paths starting with / + +BEFORE +The following two routes were equivalent: +{ path: '/a', component: ComponentA } +{ path: 'a', component: ComponentA } + +AFTER +Only the following works: +{ path: 'a', component: ComponentA } + +No longer supporting index routs + +BEFORE +The following two routes were equivalent: +{ path: '', component: ComponentA } +{ index: true, component: ComponentA } + +AFTER +Only the following works: +{ path: '', component: ComponentA } + + +# 3.0.0-alpha.6 (2016-06-16) \ No newline at end of file