Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8b7b62c

Browse files
committed
docs(changelog): add note about animation breaking change
1 parent 18f1411 commit 8b7b62c

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,21 @@ _Note: This release also contains all bug fixes available in [1.0.7](#1.0.7)._
139139

140140
## Breaking Changes
141141

142-
- **$animator/ngAnimate:**
142+
- **$animator/ngAnimate:** due to [11f712bc](https://github.com/angular/angular.js/commit/11f712bc3e310302eb2e8691cf6d110bdcde1810),
143+
css transition classes changed from `foo-setup`/`foo-start` to `foo`/`foo-active`
143144

145+
The CSS transition classes have changed suffixes. To migrate rename
146+
147+
.foo-setup {...} to .foo {...}
148+
.foo-start {...} to .foo-active {...}
149+
150+
or for type: enter, leave, move, show, hide
151+
152+
.foo-type-setup {...} to .foo-type {...}
153+
.foo-type-start {...} to .foo-type-active {...}
144154

145155
- **$resource:** due to [53061363](https://github.com/angular/angular.js/commit/53061363c7aa1ab9085273d269c6f04ac2162336),
146-
A `/` followed by a `.`, in the last segment of the URL template is now collapsed into a single `.` delimiter.
156+
a `/` followed by a `.`, in the last segment of the URL template is now collapsed into a single `.` delimiter.
147157

148158
For example: `users/.json` will become `users.json`. If your server relied upon this sequence then it will no longer
149159
work. In this case you can now escape the `/.` sequence with `/\.`

0 commit comments

Comments
 (0)