Socket
Socket
Sign inDemoInstall

engine.io-client

Package Overview
Dependencies
21
Maintainers
2
Versions
154
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.5.0 to 3.5.1

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [3.5.1](https://github.com/socketio/engine.io-client/compare/3.5.0...3.5.1) (2021-03-02)
### Bug Fixes
* replace default nulls in SSL options with undefineds ([d0c551c](https://github.com/socketio/engine.io-client/commit/d0c551cca1e37301e8b28843c8f6e7ad5cf561d3))
# [3.5.0](https://github.com/socketio/engine.io-client/compare/3.4.4...3.5.0) (2020-12-30)

@@ -2,0 +10,0 @@

12

lib/socket.js

@@ -89,8 +89,8 @@ /**

// SSL options for Node.js client
this.pfx = opts.pfx || null;
this.key = opts.key || null;
this.passphrase = opts.passphrase || null;
this.cert = opts.cert || null;
this.ca = opts.ca || null;
this.ciphers = opts.ciphers || null;
this.pfx = opts.pfx || undefined;
this.key = opts.key || undefined;
this.passphrase = opts.passphrase || undefined;
this.cert = opts.cert || undefined;
this.ca = opts.ca || undefined;
this.ciphers = opts.ciphers || undefined;
this.rejectUnauthorized = opts.rejectUnauthorized === undefined ? true : opts.rejectUnauthorized;

@@ -97,0 +97,0 @@ this.forceNode = !!opts.forceNode;

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "3.5.0",
"version": "3.5.1",
"main": "lib/index.js",

@@ -8,0 +8,0 @@ "homepage": "https://github.com/socketio/engine.io-client",

Sorry, the diff of this file is too big to display

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