Skip to content

Commit

Permalink
chore(release): 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Mar 2, 2021
1 parent d0c551c commit bd3a1cc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [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)


Expand Down
12 changes: 6 additions & 6 deletions engine.io.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ return /******/ (function(modules) { // webpackBootstrap
}

// 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;
this.forceNode = !!opts.forceNode;

Expand Down
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "engine.io-client",
"description": "Client for the realtime Engine",
"license": "MIT",
"version": "3.5.0",
"version": "3.5.1",
"main": "lib/index.js",
"homepage": "https://github.com/socketio/engine.io-client",
"contributors": [
Expand Down

0 comments on commit bd3a1cc

Please sign in to comment.