Socket
Socket
Sign inDemoInstall

engine.io

Package Overview
Dependencies
19
Maintainers
2
Versions
147
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.4.0 to 3.4.1

CHANGELOG.md

6

lib/server.js

@@ -326,3 +326,4 @@

path: self.cookiePath,
httpOnly: self.cookiePath ? self.cookieHttpOnly : false
httpOnly: self.cookiePath ? self.cookieHttpOnly : false,
sameSite: true
});

@@ -507,2 +508,5 @@ });

function abortConnection (socket, code) {
socket.on('error', () => {
debug('ignoring error from closed connection');
});
if (socket.writable) {

@@ -509,0 +513,0 @@ var message = Server.errorMessages.hasOwnProperty(code) ? Server.errorMessages[code] : String(code || '');

9

package.json
{
"name": "engine.io",
"version": "3.4.0",
"version": "3.4.1",
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",

@@ -38,3 +38,3 @@ "main": "lib/engine.io",

"babel-preset-es2015": "^6.24.0",
"engine.io-client": "3.4.0",
"engine.io-client": "3.4.1",
"eslint": "^4.5.0",

@@ -62,3 +62,6 @@ "eslint-config-standard": "^10.2.1",

"lib/"
]
],
"engines": {
"node": ">=8.0.0"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc