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

Commit 16febf8

Browse files
committed
docs(CHANGELOG): add release notes for 1.2.2 consciousness-inertia
1 parent 0f7c4ca commit 16febf8

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

CHANGELOG.md

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
<a name="1.2.2"></a>
2+
# 1.2.2 consciousness-inertia (2013-11-22)
3+
4+
5+
## Bug Fixes
6+
7+
- **$animate:**
8+
- ensure keyframe animations are blocked around the reflow
9+
([6760d7a3](https://github.com/angular/angular.js/commit/6760d7a315d7ea5cbd4f8ab74b200f754a2041f4),
10+
[#5018](https://github.com/angular/angular.js/issues/5018))
11+
- ensure transition animations are unblocked before the dom operation occurs
12+
([062fbed8](https://github.com/angular/angular.js/commit/062fbed8fc3f7bc55433f8c6915c27520e6f63c5),
13+
[#5014](https://github.com/angular/angular.js/issues/5014),
14+
[#4265](https://github.com/angular/angular.js/issues/4265))
15+
- ensure addClass/removeClass animations do not snap during reflow
16+
([76e4db6f](https://github.com/angular/angular.js/commit/76e4db6f3d15199ac1fbe85f9cfa6079a1c4fa56),
17+
[#4892](https://github.com/angular/angular.js/issues/4892))
18+
- ensure the DOM operation isn't run twice
19+
([7067a8fb](https://github.com/angular/angular.js/commit/7067a8fb0b18d5b5489006e1960cee721a88b4d2),
20+
[#4949](https://github.com/angular/angular.js/issues/4949))
21+
- **$compile:**
22+
- secure form[action] & iframe[srcdoc]
23+
([0421cb42](https://github.com/angular/angular.js/commit/0421cb4200e672818ed10996e92311404c150c3a),
24+
[#4927](https://github.com/angular/angular.js/issues/4927),
25+
[#4933](https://github.com/angular/angular.js/issues/4933))
26+
- ensure CSS classes are added and removed only when necessary
27+
([0cd7e8f2](https://github.com/angular/angular.js/commit/0cd7e8f22721f62b62440bb059ae764ebbe7b42a))
28+
- **$httpBackend:** only IE8 and below can't use `script.onload` for JSONP
29+
([a3172a28](https://github.com/angular/angular.js/commit/a3172a285fd74b5aa6c8d68a4988c767c06f549c),
30+
[#4523](https://github.com/angular/angular.js/issues/4523),
31+
[#4527](https://github.com/angular/angular.js/issues/4527),
32+
[#4922](https://github.com/angular/angular.js/issues/4922))
33+
- **$parse:** allow for new lines in expr when promise unwrapping is on
34+
([40647b17](https://github.com/angular/angular.js/commit/40647b179c473f3f470bb1b3237d6f006269582f),
35+
[#4718](https://github.com/angular/angular.js/issues/4718))
36+
- **$resource:** Always return a resource instance when calling class methods on resources.
37+
([f6ecf9a3](https://github.com/angular/angular.js/commit/f6ecf9a3c9090593faf5fa50586c99a56b51c776),
38+
[#4545](https://github.com/angular/angular.js/issues/4545),
39+
[#5061](https://github.com/angular/angular.js/issues/5061))
40+
- **httpBackend:** should not read response data when request is aborted
41+
([6f1050df](https://github.com/angular/angular.js/commit/6f1050df4fa885bd59ce85adbef7350ea93911a3),
42+
[#4913](https://github.com/angular/angular.js/issues/4913),
43+
[#4940](https://github.com/angular/angular.js/issues/4940))
44+
- **loader:** expose `$$minErr` to modules such as`ngResource`
45+
([9e89a31b](https://github.com/angular/angular.js/commit/9e89a31b129e40c805178535c244899ffafb77d8),
46+
[#5050](https://github.com/angular/angular.js/issues/5050))
47+
- **ngAnimate:**
48+
- correctly retain and restore existing styles during and after animation
49+
([c42d0a04](https://github.com/angular/angular.js/commit/c42d0a041890b39fc98afd357ec1307a3a36208d),
50+
[#4869](https://github.com/angular/angular.js/issues/4869))
51+
- use a fallback CSS property that doesn't break existing styles
52+
([1d50663b](https://github.com/angular/angular.js/commit/1d50663b38ba042e8d748ffa6d48cfb5e93cfd7e),
53+
[#4902](https://github.com/angular/angular.js/issues/4902),
54+
[#5030](https://github.com/angular/angular.js/issues/5030))
55+
- **ngClass:** ensure that ngClass only adds/removes the changed classes
56+
([6b8bbe4d](https://github.com/angular/angular.js/commit/6b8bbe4d90640542eed5607a8c91f6b977b1d6c0),
57+
[#4960](https://github.com/angular/angular.js/issues/4960),
58+
[#4944](https://github.com/angular/angular.js/issues/4944))
59+
- **ngController:** fix issue with ngInclude on the same element
60+
([6288cf5c](https://github.com/angular/angular.js/commit/6288cf5ca471b0615a026fdb4db3ba242c9d8f88),
61+
[#4431](https://github.com/angular/angular.js/issues/4431))
62+
- **ngInclude:**
63+
- Don't throw when the ngInclude element contains content with directives.
64+
([0a7cbb33](https://github.com/angular/angular.js/commit/0a7cbb33b06778833a4d99b1868cc07690a827a7))
65+
- allow ngInclude to load scripts when jQuery is included
66+
([c47abd0d](https://github.com/angular/angular.js/commit/c47abd0dd7490576f4b84ee51ebaca385c1036da),
67+
[#3756](https://github.com/angular/angular.js/issues/3756))
68+
- **ngMock:** fixes httpBackend expectation with body object
69+
([4d16472b](https://github.com/angular/angular.js/commit/4d16472b918a3482942d76f1e273a5aa01f65e83),
70+
[#4956](https://github.com/angular/angular.js/issues/4956))
71+
- **ngView:** Don't throw when the ngView element contains content with directives.
72+
([e6521e74](https://github.com/angular/angular.js/commit/e6521e7491242504250b57dd0ee66af49e653c33),
73+
[#5069](https://github.com/angular/angular.js/issues/5069))
74+
- **tests:** Correct tests for IE11
75+
([57924234](https://github.com/angular/angular.js/commit/579242346c4202ea58fc2cae6df232289cbea0bb),
76+
[#5046](https://github.com/angular/angular.js/issues/5046))
77+
- **input:** hold listener during text composition
78+
([a4e6d962](https://github.com/angular/angular.js/commit/a4e6d962d78b26f5112d48c4f88c1e6234d0cae7),
79+
[#4684](https://github.com/angular/angular.js/issues/4684))
80+
81+
82+
83+
184
<a name="1.2.1"></a>
285
# 1.2.1 underscore-empathy (2013-11-14)
386

0 commit comments

Comments
 (0)