Skip to content

Commit e9ccec7

Browse files
committed
docs(changelog): release notes for 1.0.0rc5 reality-distortion
1 parent 2037fac commit e9ccec7

File tree

2 files changed

+71
-9
lines changed

2 files changed

+71
-9
lines changed

CHANGELOG.md

+64-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,63 @@
1-
<a name="v1.0.0rc4"></a>
2-
# v1.0.0rc4 insomnia-induction (2012-04-05)
1+
<a name="1.0.0rc5"></a>
2+
# 1.0.0rc5 reality-distortion (2012-04-12)
3+
4+
5+
## Bug Fixes
6+
7+
- **$location:** properly rewrite urls in html5 mode with base url set + don't rewrite links to
8+
different base paths
9+
([6d7e7fde](https://github.com/angular/angular.js/commit/6d7e7fdea6c3d6551ff40c150aa42e1375d2cb5f),
10+
[0a5050eb](https://github.com/angular/angular.js/commit/0a5050eb3c1f1ed84134f23a44b97a7261114060))
11+
- **e2eRunner:** $browser.location should delegate to apps $location
12+
([df72852f](https://github.com/angular/angular.js/commit/df72852f3496d7640bb4f70837338e464b7ed69f))
13+
- **input.radio:** support 2-way binding in a repeater
14+
([93d62860](https://github.com/angular/angular.js/commit/93d62860e988a09fb64e594f50f6cd55a1fc5748),
15+
[#869](https://github.com/angular/angular.js/issues/869))
16+
- **ngBindHtml:** clear contents when model is falsy
17+
([10daefc6](https://github.com/angular/angular.js/commit/10daefc6f466a21d9418437666461c80cf24fcfe),
18+
[#864](https://github.com/angular/angular.js/issues/864))
19+
- lots of doc fixes
20+
21+
22+
## Features
23+
24+
- **$http:** expose the defaults config as $http.defaults
25+
([dceafd32](https://github.com/angular/angular.js/commit/dceafd32ee140c8af5c7a0ca6cb808395fffeed3))
26+
- **docs:** steps 0-4 of the Tutorial have been updated and improved
27+
28+
29+
## Breaking Changes
30+
31+
- `ng-ext-link` directive was removed because it's unnecessary
32+
([6d7e7fde](https://github.com/angular/angular.js/commit/6d7e7fdea6c3d6551ff40c150aa42e1375d2cb5f))
33+
34+
apps that relied on ng-ext-link should simply replace it with `target="_self"`
35+
36+
- `$browser.addCss` was removed - it was never meant to be a public api
37+
([13d5528a](https://github.com/angular/angular.js/commit/13d5528a5f5a2f0feee5c742788a914d2371841e))
38+
39+
apps the depend on this functionality should write a simple utility function specific to the app
40+
(see this diff for hints).
41+
42+
- `$browser.addJs` method was removed - it was never meant to be a public api
43+
([fbaa1968](https://github.com/angular/angular.js/commit/fbaa1968b7c596ccb63ea8b4be1d3bd92eda50d8))
44+
45+
apps that depended on this functionality should either use many of the existing script loaders or
46+
create a simple helper method specific to the app.
47+
48+
- `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module
49+
([5bcd7198](https://github.com/angular/angular.js/commit/5bcd7198664dca2bf85ddf8b3a89f417cd4e4796))
50+
51+
apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize`
52+
in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
53+
54+
55+
56+
57+
58+
59+
<a name="1.0.0rc4"></a>
60+
# 1.0.0rc4 insomnia-induction (2012-04-05)
361

462

563
## Bug Fixes
@@ -59,8 +117,8 @@ We removed two useless features:
59117

60118

61119

62-
<a name="v1.0.0rc3"></a>
63-
# v1.0.0rc3 barefoot-telepathy (2012-03-29)
120+
<a name="1.0.0rc3"></a>
121+
# 1.0.0rc3 barefoot-telepathy (2012-03-29)
64122

65123

66124
## Bug Fixes
@@ -123,8 +181,8 @@ We removed two useless features:
123181

124182

125183

126-
<a name="v1.0.0rc2"></a>
127-
# v1.0.0rc2 silence-absorption (2012-03-20)
184+
<a name="1.0.0rc2"></a>
185+
# 1.0.0rc2 silence-absorption (2012-03-20)
128186

129187
## Features
130188

changelog.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,14 @@ var parseRawCommit = function(raw) {
3838
lines.forEach(function(line) {
3939
match = line.match(/Closes\s#(\d+)/);
4040
if (match) msg.closes.push(parseInt(match[1]));
41-
42-
match = line.match(/Breaks\s(.*)/);
43-
if (match) msg.breaks.push(match[1]);
4441
});
42+
43+
match = raw.match(/BREAKING CHANGE:([\s\S]*)/);
44+
if (match) {
45+
console.log('found!!!')
46+
msg.breaks.push(match[1]);
47+
}
48+
4549

4650
msg.body = lines.join('\n');
4751
match = msg.subject.match(/^(.*)\((.*)\)\:\s(.*)$/);

0 commit comments

Comments
 (0)