Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brycekahle committed Aug 22, 2019
1 parent 27bd89a commit cffcff5
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 12 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.4.0
==
* Add `timeout` option to set a minimum transport timeout. Fixes #403
* Update dev deps to fix security warnings from `npm audit`
* Guard against null `this._transport` in `debug` statement. Fixes #448

1.3.0
==
* Revert `debug` to `^3` because v4 starts using ES6. Fixes #457
Expand Down
9 changes: 5 additions & 4 deletions dist/sockjs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sockjs.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sockjs.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/sockjs.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = '1.3.0';
module.exports = '1.4.0';
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sockjs-client",
"description": "SockJS-client is a browser JavaScript library that provides a WebSocket-like object.",
"version": "1.3.0",
"version": "1.4.0",
"author": "Bryce Kahle",
"jsdelivr": "dist/sockjs.min.js",
"browser": {
Expand Down Expand Up @@ -74,7 +74,7 @@
"test:browser_remote": "npm run test:bundle && npx karma start",
"gulp": "gulp",
"lint": "eslint .",
"version": "gulp release && git add -A dist lib/version.js",
"version": "gulp release && git add -A dist lib/version.js Changelog.md",
"postversion": "npm publish",
"postpublish": "git push origin --all && git push origin --tags"
}
Expand Down

0 comments on commit cffcff5

Please sign in to comment.