Skip to content

Commit 204498a

Browse files
committedMay 3, 2016
Release 1.4.6
1 parent 1d7519c commit 204498a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed
 

‎History.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11

2+
1.4.6 / 2016-05-02
3+
==================
4+
5+
* bump engine.io-client
6+
27
1.4.5 / 2016-01-26
38
==================
49

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socket.io-client",
3-
"version": "1.4.5",
3+
"version": "1.4.6",
44
"keywords": [
55
"realtime",
66
"framework",
@@ -35,7 +35,7 @@
3535
"has-cors": "1.1.0",
3636
"istanbul": "0.4.2",
3737
"mocha": "2.3.4",
38-
"socket.io": "1.4.5",
38+
"socket.io": "1.4.6",
3939
"text-blob-builder": "0.0.1",
4040
"uglify-js": "2.6.1",
4141
"zuul": "3.9.0",

‎socket.io.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function Socket(uri, opts){
116116
this.cert = opts.cert || null;
117117
this.ca = opts.ca || null;
118118
this.ciphers = opts.ciphers || null;
119-
this.rejectUnauthorized = opts.rejectUnauthorized === undefined ? null : opts.rejectUnauthorized;
119+
this.rejectUnauthorized = opts.rejectUnauthorized === undefined ? true : opts.rejectUnauthorized;
120120

121121
// other options for Node.js client
122122
var freeGlobal = typeof global == 'object' && global;

0 commit comments

Comments
 (0)