diff options
| author | Brian Ford | 2014-02-14 13:29:51 -0800 |
|---|---|---|
| committer | Brian Ford | 2014-02-14 16:41:02 -0800 |
| commit | c086f831fbcb4e658993c2d7136d52eed04e486c (patch) | |
| tree | 290bc618fc7a9b4de3cfe8cafcc3b466311def18 | |
| parent | fab2d3c92fb4f813f0cf6f3e576d2d01ee8ade4b (diff) | |
| download | angular.js-c086f831fbcb4e658993c2d7136d52eed04e486c.tar.bz2 | |
docs(changelog): release notes for 1.2.13v1.2.13
| -rw-r--r-- | CHANGELOG.md | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 643c016a..777fedb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,58 @@ +<a name="1.2.13"></a> +# 1.2.13 romantic-transclusion (2014-02-14) + + +## Bug Fixes + +- **$animate:** ensure $animate doesn't break natural CSS transitions + ([4f84f6b3](https://github.com/angular/angular.js/commit/4f84f6b3e4210ae1eb14728a46d43dd961700a0c), + [#6019](https://github.com/angular/angular.js/issues/6019)) +- **$compile:** + - ensure element transclusion directives are linked with comment element + ([e7338d3f](https://github.com/angular/angular.js/commit/e7338d3f27e8824196136a18e1c3e0fcf51a0e28), + [#6006](https://github.com/angular/angular.js/issues/6006), [#6101](https://github.com/angular/angular.js/issues/6101)) + - support templates with table content root nodes + ([e7338d3f](https://github.com/angular/angular.js/commit/31c450bcee53d0a3827b7e0a611e9013b2496506), + [#2848](https://github.com/angular/angular.js/issues/2848), [#1459](https://github.com/angular/angular.js/issues/1459), [#3647](https://github.com/angular/angular.js/issues/3647), [#3241](https://github.com/angular/angular.js/issues/3241)) +- **input:** + - don't apply textInput to `<input type="file">` + ([a9fcb0d0](https://github.com/angular/angular.js/commit/a9fcb0d0fc6456f80501b8820d02b04d7c15b6d6), + [#6247](https://github.com/angular/angular.js/issues/6247), [#6231](https://github.com/angular/angular.js/issues/6231)) + - setViewValue on compositionend + ([2b730271](https://github.com/angular/angular.js/commit/2b7302713674506fdbcdc396c38f18dcb90dee8c), + [#6058](https://github.com/angular/angular.js/issues/6058), [#5433](https://github.com/angular/angular.js/issues/5433)) + + +## Features + +- **filterFilter:** support deeply nested predicate objects + ([b4eed8ad](https://github.com/angular/angular.js/commit/b4eed8ad94ce9719540462c1ee969dfd3c6b2355), + [#6215](https://github.com/angular/angular.js/issues/6215)) + + +## Breaking Changes + +- **$animate:** + - due to [4f84f6b3](https://github.com/angular/angular.js/commit/4f84f6b3e4210ae1eb14728a46d43dd961700a0c), + ngClass and {{ class }} will now call the `setClass` + animation callback instead of addClass / removeClass when both a + addClass/removeClass operation is being executed on the element during the animation. + + Please include the setClass animation callback as well as addClass and removeClass within + your JS animations to work with ngClass and {{ class }} directives. + + + - due to [cf5e463a](https://github.com/angular/angular.js/commit/cf5e463abd2c23f62e9c2e6361e6c53048c8910e), + Both the `$animate:before` and `$animate:after` DOM events must be now + registered prior to the $animate operation taking place. The `$animate:close` event + can be registered anytime afterwards. + + DOM callbacks used to fired for each and every animation operation that occurs within the + $animate service provided in the ngAnimate module. This may end up slowing down an + application if 100s of elements are being inserted into the page. Therefore after this + change callbacks are only fired if registered on the element being animated. + + <a name="1.2.12"></a> # 1.2.12 cauliflower-eradication (2014-02-07) |
