Skip to content

Commit

Permalink
chore(release): 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Nov 8, 2021
1 parent 972de60 commit 4c306af
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 13 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,22 @@
# [6.1.0](https://github.com/socketio/engine.io/compare/6.0.0...6.1.0) (2021-11-08)


### Bug Fixes

* fix payload encoding for v3 clients ([ed50fc3](https://github.com/socketio/engine.io/commit/ed50fc346b9c58459bf4e6fe5c45e8d34faac8da))


### Features

* add an implementation based on uWebSockets.js ([271e2df](https://github.com/socketio/engine.io/commit/271e2df94d39bbd13c33cab98cdd5915f9d28536))


### Performance Improvements

* refresh ping timer ([#628](https://github.com/socketio/engine.io/issues/628)) ([37474c7](https://github.com/socketio/engine.io/commit/37474c7e67be7c5f25f9ca2d4ea99f3a256bd2de))



## [6.0.1](https://github.com/socketio/engine.io/compare/6.0.0...6.0.1) (2021-11-06)


Expand Down
16 changes: 8 additions & 8 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
@@ -1,6 +1,6 @@
{
"name": "engine.io",
"version": "6.0.0",
"version": "6.1.0",
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
"type": "commonjs",
"main": "./build/engine.io.js",
Expand Down Expand Up @@ -45,7 +45,7 @@
"devDependencies": {
"babel-eslint": "^8.0.2",
"eiows": "^3.3.0",
"engine.io-client": "6.0.0",
"engine.io-client": "6.1.0",
"engine.io-client-v3": "npm:engine.io-client@3.5.2",
"expect.js": "^0.3.1",
"mocha": "^9.1.3",
Expand Down
6 changes: 3 additions & 3 deletions test/engine.io.js
Expand Up @@ -14,9 +14,9 @@ describe("engine", () => {
expect(protocol).to.be.a("number");
});

it.skip("should be the same version as client", () => {
const version = require("../package").version;
expect(version).to.be(require("engine.io-client/package").version);
it("should be the same version as client", () => {
const version = require("../package.json").version;
expect(version).to.be(require("engine.io-client/package.json").version);
});

describe("engine()", () => {
Expand Down

0 comments on commit 4c306af

Please sign in to comment.