Skip to content

Commit 4817b71

Browse files
committed
Merge pull request #749 from stevemao/changelog
Changelog
2 parents f8a45d7 + 8aee1da commit 4817b71

4 files changed

Lines changed: 52 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ doc/
1414
.coveralls.yml
1515
coverage/
1616
/screenshots
17-
changelog.js
18-
write-changelog.js
1917
test/fixtures/multi/
2018
before.json
2119
after.json

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
<a name="2.8.1"></a>
2+
## 2.8.1 (2015-07-28)
3+
4+
5+
### Bug Fixes
6+
7+
* **web-sockets:** Use separate server for web sockets in proxy mode - fixes #625 ([40017b4](https://github.com/browsersync/browser-sync/commit/40017b4)), closes [#625](https://github.com/browsersync/browser-sync/issues/625)
8+
9+
### Features
10+
11+
* **serve-static:** Added option `serveStatic` to allow proxy/snippet mode to easily serve local fil ([384ef67](https://github.com/browsersync/browser-sync/commit/384ef67))
12+
13+
14+
15+
<a name="2.7.13"></a>
16+
## 2.7.13 (2015-06-28)
17+
18+
19+
### Bug Fixes
20+
21+
* **snippet:** Allow async attribute to be removed from snippet with snippetOptions.async = fal ([c32bec6](https://github.com/browsersync/browser-sync/commit/c32bec6)), closes [#670](https://github.com/browsersync/browser-sync/issues/670)
22+
* **socket-options:** allow socket.domain string|fn for setting domain only on socket path - fixes #69 ([5157432](https://github.com/browsersync/browser-sync/commit/5157432)), closes [#690](https://github.com/browsersync/browser-sync/issues/690)
23+
24+
### Features
25+
26+
* **api:** expose sockets to public api ([985682c](https://github.com/browsersync/browser-sync/commit/985682c))
27+
28+
29+
30+
<a name="2.7.12"></a>
31+
## 2.7.12 (2015-06-17)
32+
33+
34+
### Bug Fixes
35+
36+
* **client-script:** allow proxy to also use client script middleware ([c5fdbbf](https://github.com/browsersync/browser-sync/commit/c5fdbbf))
37+
* **client-script:** serve cached/gzipped client JS file - fixes #657 ([dbe9ffe](https://github.com/browsersync/browser-sync/commit/dbe9ffe)), closes [#657](https://github.com/browsersync/browser-sync/issues/657)
38+
39+
40+
141
<a name"2.7.11"></a>
242
### 2.7.11 (2015-06-16)
343

gulpfile.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var contribs = require("gulp-contribs");
77
var rubySass = require("gulp-ruby-sass");
88
var filter = require("gulp-filter");
99
var browserSync = require("./");
10+
var conventionalChangelog = require("gulp-conventional-changelog");
1011

1112
gulp.task("lint", function () {
1213
gulp.src([
@@ -92,3 +93,13 @@ gulp.task("docs", function () {
9293
.pipe(yuidoc.parser({spaces: 4}))
9394
.pipe(gulp.dest("./doc"));
9495
});
96+
97+
gulp.task("changelog", function () {
98+
return gulp.src("CHANGELOG.md", {
99+
buffer: false
100+
})
101+
.pipe(conventionalChangelog({
102+
preset: "angular"
103+
}))
104+
.pipe(gulp.dest("./"));
105+
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
"bs-snippet-injector": "^2.0.1",
6363
"chai": "^3.2.0",
6464
"chalk": "^1.1.0",
65-
"conventional-changelog": "^0.0.17",
6665
"graceful-fs": "^3.0.8",
6766
"gulp": "^3.9.0",
6867
"gulp-contribs": "0.0.3",
68+
"gulp-conventional-changelog": "^0.4.0",
6969
"gulp-filter": "^2.0.2",
7070
"gulp-jscs": "^1.6.0",
7171
"gulp-jshint": "^1.11.2",

0 commit comments

Comments
 (0)