diff options
| author | Igor Minar | 2013-05-22 20:26:41 -0700 | 
|---|---|---|
| committer | Igor Minar | 2013-05-22 20:31:53 -0700 | 
| commit | 8b7b62c974e8c4264b8858c42b0ca612ec46c761 (patch) | |
| tree | d2c0cf5f66e2ba01c762e9ef3b084f18a3804e3e /CHANGELOG.md | |
| parent | 18f14117dec12271229e16fe6fba8d032fe934e8 (diff) | |
| download | angular.js-8b7b62c974e8c4264b8858c42b0ca612ec46c761.tar.bz2 | |
docs(changelog): add note about animation breaking change
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 14 | 
1 files changed, 12 insertions, 2 deletions
| diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ebe2033..bd5fb521 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -139,11 +139,21 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._  ## Breaking Changes -- **$animator/ngAnimate:** +- **$animator/ngAnimate:** due to [11f712bc](https://github.com/angular/angular.js/commit/11f712bc3e310302eb2e8691cf6d110bdcde1810), +  css transition classes changed from `foo-setup`/`foo-start` to `foo`/`foo-active` +  The CSS transition classes have changed suffixes. To migrate rename + +        .foo-setup {...} to .foo {...} +        .foo-start {...} to .foo-active {...} + +  or for type: enter, leave, move, show, hide + +        .foo-type-setup {...} to .foo-type {...} +        .foo-type-start {...} to .foo-type-active {...}  - **$resource:** due to [53061363](https://github.com/angular/angular.js/commit/53061363c7aa1ab9085273d269c6f04ac2162336), -  A `/` followed by a `.`, in the last segment of the URL template is now collapsed into a single `.` delimiter. +  a `/` followed by a `.`, in the last segment of the URL template is now collapsed into a single `.` delimiter.    For example: `users/.json` will become `users.json`. If your server relied upon this sequence then it will no longer    work. In this case you can now escape the `/.` sequence with `/\.` | 
