File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
+ 1.7.1 / 2016-10-20
3
+ ===================
4
+
5
+ * [ fix] Define "requestsCount" var and "requests" hash unconditionally (#490 )
6
+ * [ perf] Add all properties to the socket in the constructor (#488 )
7
+ * [ chore] Update zuul browser settings (#504 )
8
+ * [ chore] Bump engine.io-parser to 1.3.1 (#505 )
9
+ * [ chore] Use more-specific imports for StealJS compatibility (#467 )
10
+
2
11
1.7.0 / 2016-10-05
3
12
===================
4
13
Original file line number Diff line number Diff line change @@ -152,6 +152,7 @@ return /******/ (function(modules) { // webpackBootstrap
152
152
this . transports = opts . transports || [ 'polling' , 'websocket' ] ;
153
153
this . readyState = '' ;
154
154
this . writeBuffer = [ ] ;
155
+ this . prevBufferLen = 0 ;
155
156
this . policyPort = opts . policyPort || 843 ;
156
157
this . rememberUpgrade = opts . rememberUpgrade || false ;
157
158
this . binaryType = null ;
@@ -180,6 +181,16 @@ return /******/ (function(modules) { // webpackBootstrap
180
181
}
181
182
}
182
183
184
+ // set on handshake
185
+ this . id = null ;
186
+ this . upgrades = null ;
187
+ this . pingInterval = null ;
188
+ this . pingTimeout = null ;
189
+
190
+ // set on heartbeat
191
+ this . pingIntervalTimer = null ;
192
+ this . pingTimeoutTimer = null ;
193
+
183
194
this . open ( ) ;
184
195
}
185
196
@@ -1324,9 +1335,10 @@ return /******/ (function(modules) { // webpackBootstrap
1324
1335
* emitted.
1325
1336
*/
1326
1337
1338
+ Request . requestsCount = 0 ;
1339
+ Request . requests = { } ;
1340
+
1327
1341
if ( global . document ) {
1328
- Request . requestsCount = 0 ;
1329
- Request . requests = { } ;
1330
1342
if ( global . attachEvent ) {
1331
1343
global . attachEvent ( 'onunload' , unloadHandler ) ;
1332
1344
} else if ( global . addEventListener ) {
Original file line number Diff line number Diff line change 2
2
"name" : " engine.io-client" ,
3
3
"description" : " Client for the realtime Engine" ,
4
4
"license" : " MIT" ,
5
- "version" : " 1.7.0 " ,
5
+ "version" : " 1.7.1 " ,
6
6
"homepage" : " https://github.com/socketio/engine.io-client" ,
7
7
"contributors" : [
8
8
{
47
47
"derequire" : " 1.2.0" ,
48
48
"eslint-config-standard" : " 4.4.0" ,
49
49
"eslint-plugin-standard" : " 1.3.1" ,
50
- "engine.io" : " 1.7.0 " ,
50
+ "engine.io" : " 1.7.1 " ,
51
51
"expect.js" : " 0.2.0" ,
52
52
"express" : " 3.4.8" ,
53
53
"gulp" : " 3.9.0" ,
You can’t perform that action at this time.
0 commit comments