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

Commit e6ece7d

Browse files
committed
docs(changelog): more release notes for 1.3.0-rc.5
1 parent 0563a0a commit e6ece7d

File tree

1 file changed

+39
-2
lines changed

1 file changed

+39
-2
lines changed

CHANGELOG.md

+39-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@
44

55
## Bug Fixes
66

7+
- **$anchorScroll:** don't scroll to top when initializing and location hash is empty
8+
([d5445c60](https://github.com/angular/angular.js/commit/d5445c601fafd6ecd38befeaa4c9ec7bb044127c),
9+
[#8848](https://github.com/angular/angular.js/issues/8848), [#9393](https://github.com/angular/angular.js/issues/9393))
710
- **$animate:**
8-
- ensure class-based animations only consider the most recent DOM operations
11+
- ensure hidden elements with ngShow/ngHide stay hidden during animations
12+
([39d0b368](https://github.com/angular/angular.js/commit/39d0b36826a077f7549a70d0cf3edebe90a10aaa),
13+
[#9103](https://github.com/angular/angular.js/issues/9103), [#9493](https://github.com/angular/angular.js/issues/9493))
14+
- permit class-based animations for leave operations if ngAnimateChildren is enabled
15+
([df1a00b1](https://github.com/angular/angular.js/commit/df1a00b11ac2722f4da441837795985f12682030),
16+
[#8092](https://github.com/angular/angular.js/issues/8092), [#9491](https://github.com/angular/angular.js/issues/9491))
17+
- ensure that class-based animations only consider the most recent DOM operations
918
([c93924ed](https://github.com/angular/angular.js/commit/c93924ed275a62683b85c82f1c6c2e19d5662c9a),
1019
[#8946](https://github.com/angular/angular.js/issues/8946), [#9458](https://github.com/angular/angular.js/issues/9458))
1120
- abort class-based animations if the element is removed during digest
@@ -40,6 +49,9 @@
4049
- **$http:** honor application/json response header and parse json primitives
4150
([7b6c1d08](https://github.com/angular/angular.js/commit/7b6c1d08aceba6704a40302f373400aed9ed0e0b),
4251
[#2973](https://github.com/angular/angular.js/issues/2973))
52+
- **$injector:** throw when factory $get method does not return a value
53+
([0d3b69a5](https://github.com/angular/angular.js/commit/0d3b69a5f27b41745b504c7ffd8d72653bac1f85),
54+
[#4575](https://github.com/angular/angular.js/issues/4575), [#9210](https://github.com/angular/angular.js/issues/9210))
4355
- **$location:** allow `0` in `path()` and `hash()`
4456
([b8c5b871](https://github.com/angular/angular.js/commit/b8c5b87119a06edb8e8d1cefad81ee8d1f64f070))
4557
- **form:** fix submit prevention
@@ -67,7 +79,9 @@
6779
- allow automatic rewriting of links to be disabled
6880
([b3e09be5](https://github.com/angular/angular.js/commit/b3e09be58960b913fee3869bf36e7de3305bbe00),
6981
[#5487](https://github.com/angular/angular.js/issues/5487))
70-
82+
- **$route:** ability to cancel $routeChangeStart event
83+
([f4ff11b0](https://github.com/angular/angular.js/commit/f4ff11b01e6a5f9a9eb25a38d327dfaadbd7c80c),
84+
[#5581](https://github.com/angular/angular.js/issues/5581), [#5714](https://github.com/angular/angular.js/issues/5714), [#9502](https://github.com/angular/angular.js/issues/9502))
7185

7286
## Performance Improvements
7387

@@ -119,6 +133,29 @@ and did not work at all when combined.
119133

120134
See #6564
121135

136+
- **$route:** due to [f4ff11b0](https://github.com/angular/angular.js/commit/f4ff11b01e6a5f9a9eb25a38d327dfaadbd7c80c),
137+
138+
Order of events has changed.
139+
Previously: `$locationChangeStart` -> `$locationChangeSuccess`
140+
-> `$routeChangeStart` -> `$routeChangeSuccess`
141+
142+
Now: `$locationChangeStart` -> `$routeChangeStart`
143+
-> `$locationChangeSuccess` -> -> `$routeChangeSuccess`
144+
145+
Fixes #5581
146+
Closes #5714
147+
Closes #9502- **ngAnimate:** due to [667183a8](https://github.com/angular/angular.js/commit/667183a8c79d6ffce571a2be78c05dc76503b222),
148+
149+
150+
The $animate class API will always defer changes until the end of the next digest. This allows ngAnimate
151+
to coalesce class changes which occur over a short period of time into 1 or 2 DOM writes, rather than
152+
many. This prevents jank in browsers such as IE, and is generally a good thing.
153+
154+
If you're finding that your classes are not being immediately applied, be sure to invoke $digest().
155+
156+
Closes #8234
157+
Closes #9263
158+
122159

123160
<a name="1.3.0-rc.4"></a>
124161
# 1.3.0-rc.4 unicorn-hydrafication (2014-10-01)

0 commit comments

Comments
 (0)