From b77e14beea02599e61c496d04a446cdfd69fb043 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 15 Jan 2016 20:31:08 +0000 Subject: [PATCH] docs(CHANGELOG): add missing breaking change to 1.5.0-rc.1 --- CHANGELOG.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 054c44d7e115..e8cca4c37935 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -111,8 +111,13 @@ ## Breaking Changes -- **linky:** due to [98c2db7f](https://github.com/angular/angular.js/commit/98c2db7f9c2d078a408576e722407d518c7ee10a), +- **$compileProvider**: due to [25bc5318](https://github.com/angular/angular.js/commit/25bc5318), + +This release removes the ability to set the `restrict` option on directives created via the `module.component()` helper. +All components are now element directives. If you need a directive that is not an element then you must use the +`module.directive()` helper instead. +- **linky:** due to [98c2db7f](https://github.com/angular/angular.js/commit/98c2db7f9c2d078a408576e722407d518c7ee10a), Before this change, the filter assumed that the input (if not undefined/null) was of type 'string' and that certain methods (such as `.match()`) would be available on it. Passing a non-string value @@ -124,10 +129,6 @@ values through `linky`, you need to explicitly convert them to strings first. Since input values could be initialized asynchronously, `undefined` or `null` will still be returned unchanged (without throwing an error). -Closes #13547 - -Closes #13693 - - **loader:** due to [6a47c0d7](https://github.com/angular/angular.js/commit/6a47c0d75d0c6f0bfb3b5492d1f05ec900387744), Angular 1.5.0.beta.2 introduced the `module.component` helper where `transclude` was true by default.