aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2013-05-22 20:26:41 -0700
committerIgor Minar2013-05-22 21:48:37 -0700
commit6fcf0afa35008fcc5fc9b4b8dce8eac63191b978 (patch)
treedd26217b66d61bd7c71cbe0895385b690936bb75
parent05521e276fe39cfb86082305f2bbd35de5faaca0 (diff)
downloadangular.js-6fcf0afa35008fcc5fc9b4b8dce8eac63191b978.tar.bz2
docs(changelog): add note about animation breaking change
-rw-r--r--CHANGELOG.md14
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 `/\.`