Skip to content

Commit

Permalink
chore(release): 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Mar 10, 2021
1 parent edb7343 commit 887ba06
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# [5.0.0](https://github.com/socketio/engine.io/compare/4.1.1...5.0.0) (2021-03-10)


### Bug Fixes

* set default protocol version to 3 ([#616](https://github.com/socketio/engine.io/issues/616)) ([868d891](https://github.com/socketio/engine.io/commit/868d89111de0ab5bd0e147ecaff7983afbf5d087))


### Features

* increase the default value of pingTimeout ([5a7fa13](https://github.com/socketio/engine.io/commit/5a7fa132c442bc1e7eefa1cf38168ee951575ded))
* remove dynamic require() with wsEngine ([edb7343](https://github.com/socketio/engine.io/commit/edb734316f143bf0f1bbc344e966d18e2676b934))


### BREAKING CHANGES

* the syntax of the "wsEngine" option is updated

Before:

```js
const eioServer = require("engine.io")(httpServer, {
wsEngine: "eiows"
});
```

After:

```js
const eioServer = require("engine.io")(httpServer, {
wsEngine: require("eiows").Server
});
```


## [4.1.1](https://github.com/socketio/engine.io/compare/4.1.0...4.1.1) (2021-02-02)


Expand Down
9 changes: 4 additions & 5 deletions 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,6 +1,6 @@
{
"name": "engine.io",
"version": "4.1.1",
"version": "5.0.0",
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
"main": "lib/engine.io.js",
"author": "Guillermo Rauch <[email protected]>",
Expand Down Expand Up @@ -36,7 +36,7 @@
"devDependencies": {
"babel-eslint": "^8.0.2",
"eiows": "^3.3.0",
"engine.io-client": "4.1.1",
"engine.io-client": "5.0.0",
"engine.io-client-v3": "npm:[email protected]",
"eslint": "^4.19.1",
"eslint-config-prettier": "^6.9.0",
Expand Down

0 comments on commit 887ba06

Please sign in to comment.