Skip to content

Commit

Permalink
Merge pull request #749 from stevemao/changelog
Browse files Browse the repository at this point in the history
Changelog
  • Loading branch information
shakyShane committed Jul 31, 2015
2 parents f8a45d7 + 8aee1da commit 4817b71
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ doc/
.coveralls.yml
coverage/
/screenshots
changelog.js
write-changelog.js
test/fixtures/multi/
before.json
after.json
Expand Down
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
<a name="2.8.1"></a>
## 2.8.1 (2015-07-28)


### Bug Fixes

* **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)

### Features

* **serve-static:** Added option `serveStatic` to allow proxy/snippet mode to easily serve local fil ([384ef67](https://github.com/browsersync/browser-sync/commit/384ef67))



<a name="2.7.13"></a>
## 2.7.13 (2015-06-28)


### Bug Fixes

* **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)
* **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)

### Features

* **api:** expose sockets to public api ([985682c](https://github.com/browsersync/browser-sync/commit/985682c))



<a name="2.7.12"></a>
## 2.7.12 (2015-06-17)


### Bug Fixes

* **client-script:** allow proxy to also use client script middleware ([c5fdbbf](https://github.com/browsersync/browser-sync/commit/c5fdbbf))
* **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)



<a name"2.7.11"></a>
### 2.7.11 (2015-06-16)

Expand Down
11 changes: 11 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ var contribs = require("gulp-contribs");
var rubySass = require("gulp-ruby-sass");
var filter = require("gulp-filter");
var browserSync = require("./");
var conventionalChangelog = require("gulp-conventional-changelog");

gulp.task("lint", function () {
gulp.src([
Expand Down Expand Up @@ -92,3 +93,13 @@ gulp.task("docs", function () {
.pipe(yuidoc.parser({spaces: 4}))
.pipe(gulp.dest("./doc"));
});

gulp.task("changelog", function () {
return gulp.src("CHANGELOG.md", {
buffer: false
})
.pipe(conventionalChangelog({
preset: "angular"
}))
.pipe(gulp.dest("./"));
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
"bs-snippet-injector": "^2.0.1",
"chai": "^3.2.0",
"chalk": "^1.1.0",
"conventional-changelog": "^0.0.17",
"graceful-fs": "^3.0.8",
"gulp": "^3.9.0",
"gulp-contribs": "0.0.3",
"gulp-conventional-changelog": "^0.4.0",
"gulp-filter": "^2.0.2",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.11.2",
Expand Down

0 comments on commit 4817b71

Please sign in to comment.