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

Commit 5dfa630

Browse files
committedFeb 2, 2015
docs(CHANGELOG): update changelog for 1.4.0-beta.3 and 1.3.12
1 parent 452d1cd commit 5dfa630

File tree

1 file changed

+91
-0
lines changed

1 file changed

+91
-0
lines changed
 

‎CHANGELOG.md

+91
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,94 @@
1+
<a name="1.4.0-beta.3"></a>
2+
# 1.4.0-beta.3 substance-mimicry (2015-02-02)
3+
4+
5+
## Bug Fixes
6+
7+
- **$compile:**
8+
- do not initialize optional '&' binding if attribute not specified
9+
([6a38dbfd](https://github.com/angular/angular.js/commit/6a38dbfd3c34c8f9efff503d17eb3cbeb666d422),
10+
[#6404](https://github.com/angular/angular.js/issues/6404), [#9216](https://github.com/angular/angular.js/issues/9216))
11+
- respect return value from controller constructor
12+
([62d514b0](https://github.com/angular/angular.js/commit/62d514b06937cc7dd86e973ea11165c88343b42d))
13+
- **$controller:** throw better error when controller expression is bad
14+
([dda65e99](https://github.com/angular/angular.js/commit/dda65e992b72044c0fa0c8f5f33184028c0e3ad7),
15+
[#10875](https://github.com/angular/angular.js/issues/10875), [#10910](https://github.com/angular/angular.js/issues/10910))
16+
- **$parse:** remove references to last arguments to a fn call
17+
([e61eae1b](https://github.com/angular/angular.js/commit/e61eae1b1f2351c51bcfe4142749a4e68a2806ff),
18+
[#10894](https://github.com/angular/angular.js/issues/10894))
19+
- **a:** don't reload if there is only a name attribute
20+
([d729fcf0](https://github.com/angular/angular.js/commit/d729fcf030be1d3ef37196d36ea3bf3249ee3318),
21+
[#6273](https://github.com/angular/angular.js/issues/6273), [#10880](https://github.com/angular/angular.js/issues/10880))
22+
- **angular.copy:** support copying `TypedArray`s
23+
([aa0f6449](https://github.com/angular/angular.js/commit/aa0f64496a66d2a5d1a4d033f2eb075a8b084a78),
24+
[#10745](https://github.com/angular/angular.js/issues/10745))
25+
- **filter:** format timezone correctly in the case that UTC timezone is used
26+
([8c469191](https://github.com/angular/angular.js/commit/8c46919199090a05634789774124b38983430c76),
27+
[#9359](https://github.com/angular/angular.js/issues/9359))
28+
- **ngRoute:** dont duplicate optional params into query
29+
([27bf2ce4](https://github.com/angular/angular.js/commit/27bf2ce40c5adfb1494d69c9d0ac9cf433834a12),
30+
[#10689](https://github.com/angular/angular.js/issues/10689))
31+
- **ngScenario:** allow ngScenario to handle lazy-loaded and manually bootstrapped applications
32+
([c69caa7b](https://github.com/angular/angular.js/commit/c69caa7beee4e920f8f587eb3e943be99864a14f),
33+
[#10723](https://github.com/angular/angular.js/issues/10723))
34+
- **validators:** maxlength should use viewValue for $isEmpty
35+
([bfcf9946](https://github.com/angular/angular.js/commit/bfcf9946e16d21b55dde50d4d21c71c898b10215),
36+
[#10898](https://github.com/angular/angular.js/issues/10898))
37+
38+
39+
## Features
40+
41+
- **$compile:** allow using bindToController as object, support both new/isolate scopes
42+
([35498d70](https://github.com/angular/angular.js/commit/35498d7045ba9138016464a344e2c145ce5264c1),
43+
[#10420](https://github.com/angular/angular.js/issues/10420), [#10467](https://github.com/angular/angular.js/issues/10467))
44+
- **ngMocks:** cleanup $inject annotations after each test
45+
([0baa17a3](https://github.com/angular/angular.js/commit/0baa17a3b7ad2b242df2b277b81cebdf75b04287))
46+
47+
48+
## Performance Improvements
49+
50+
- **$scope:** Add a property $$watchersCount to scope
51+
([c1500ea7](https://github.com/angular/angular.js/commit/c1500ea775c4cb130088b7d5bb5fb872bda50bae))
52+
53+
54+
## Breaking Changes
55+
56+
- **$compile:** due to [6a38dbfd](https://github.com/angular/angular.js/commit/6a38dbfd3c34c8f9efff503d17eb3cbeb666d422),
57+
Previously, '&' expressions would always set up a function in the isolate scope. Now, if the binding
58+
is marked as optional and the attribute is not specified, no function will be added to the isolate scope.
59+
60+
61+
<a name="1.3.12"></a>
62+
# 1.3.12 outlandish-knitting (2015-02-02)
63+
64+
65+
## Bug Fixes
66+
67+
- **$controller:** throw better error when controller expression is bad
68+
([632b2ddd](https://github.com/angular/angular.js/commit/632b2ddd34c07b3b5a207bd83ca3a5e6e613e63b),
69+
[#10875](https://github.com/angular/angular.js/issues/10875), [#10910](https://github.com/angular/angular.js/issues/10910))
70+
- **$parse:** remove references to last arguments to a fn call
71+
([7caad220](https://github.com/angular/angular.js/commit/7caad2205a6e9927890192a3638f55532bdaaf75),
72+
[#10894](https://github.com/angular/angular.js/issues/10894))
73+
- **ngRoute:** dont duplicate optional params into query
74+
([f41ca4a5](https://github.com/angular/angular.js/commit/f41ca4a53ed53f172fb334911be56e42aad58794),
75+
[#10689](https://github.com/angular/angular.js/issues/10689))
76+
- **ngScenario:** Allow ngScenario to handle lazy-loaded and manually bootstrapped applications
77+
([0bcd0872](https://github.com/angular/angular.js/commit/0bcd0872d8d2e37e6cb7aa5bc5cb0c742b4294f9),
78+
[#10723](https://github.com/angular/angular.js/issues/10723))
79+
- **validators:** maxlength should use viewValue for $isEmpty
80+
([abd8e2a9](https://github.com/angular/angular.js/commit/abd8e2a9eb2d21ac67989c2f7b64c4c6547a1585),
81+
[#10898](https://github.com/angular/angular.js/issues/10898))
82+
83+
84+
## Features
85+
86+
- **ngMocks:** cleanup $inject annotations after each test
87+
([6ec59460](https://github.com/angular/angular.js/commit/6ec5946094ee92b820bbacc886fa2367715e60b4))
88+
89+
90+
91+
192
<a name="1.4.0-beta.2"></a>
293
# 1.4.0-beta.2 holographic-rooster (2015-01-26)
394

2 commit comments

Comments
 (2)

alexlamsl commented on Feb 3, 2015

@alexlamsl

missing 0d42426 ?

petebacondarwin commented on Feb 3, 2015

@petebacondarwin
ContributorAuthor

Yes, because the internal Google repository has not synchronised with this commit yet. We have paused the release to work on getting this in today.

This repository has been archived.