File tree Expand file tree Collapse file tree 4 files changed +20
-6
lines changed Expand file tree Collapse file tree 4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
- - " 0.8"
4
3
- " 0.10"
5
4
- " 0.12"
5
+ - " 4.0.0"
6
6
7
7
notifications :
8
8
irc : " irc.freenode.org#socket.io"
Original file line number Diff line number Diff line change 1
1
2
+ 1.5.4 / 2015-09-09
3
+ ==================
4
+
5
+ * package: bump ` engine.io-parser `
6
+
7
+ 1.5.3 / 2015-09-09
8
+ ==================
9
+
10
+ * package: bump ` ws ` to fix node 4.0.0
11
+
2
12
1.5.2 / 2015-07-09
3
13
==================
4
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " engine.io" ,
3
- "version" : " 1.5.2 " ,
3
+ "version" : " 1.5.4 " ,
4
4
"description" : " The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server" ,
5
5
"main" : " ./lib/engine.io" ,
6
6
"author" : " Guillermo Rauch <guillermo@learnboost.com>" ,
25
25
],
26
26
"license" : " MIT" ,
27
27
"dependencies" : {
28
- "debug" : " 2.1.3" ,
29
- "ws" : " 0.7.2" ,
30
- "engine.io-parser" : " 1.2.1" ,
31
28
"base64id" : " 0.1.0" ,
29
+ "debug" : " 2.1.3" ,
30
+ "ws" : " 0.8.0" ,
31
+ "engine.io-parser" : " 1.2.2" ,
32
32
"accepts" : " 1.1.4"
33
33
},
34
34
"devDependencies" : {
35
35
"mocha" : " 1.12.0" ,
36
36
"expect.js" : " 0.2.0" ,
37
37
"superagent" : " 0.15.4" ,
38
- "engine.io-client" : " socketio/engine.io-client#d010541 " ,
38
+ "engine.io-client" : " socketio/engine.io-client#da24c1f " ,
39
39
"s" : " 0.1.1"
40
40
},
41
41
"scripts" : {
Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ describe('engine', function () {
84
84
client . setEncoding ( 'ascii' ) ;
85
85
client . write ( [
86
86
'GET / HTTP/1.1'
87
+ , 'Connection: Upgrade'
87
88
, 'Upgrade: IRC/6.9'
88
89
, '' , ''
89
90
] . join ( '\r\n' ) ) ;
@@ -109,6 +110,7 @@ describe('engine', function () {
109
110
client . setEncoding ( 'ascii' ) ;
110
111
client . write ( [
111
112
'GET / HTTP/1.1'
113
+ , 'Connection: Upgrade'
112
114
, 'Upgrade: IRC/6.9'
113
115
, '' , ''
114
116
] . join ( '\r\n' ) ) ;
@@ -137,6 +139,7 @@ describe('engine', function () {
137
139
client . setEncoding ( 'ascii' ) ;
138
140
client . write ( [
139
141
'GET / HTTP/1.1'
142
+ , 'Connection: Upgrade'
140
143
, 'Upgrade: IRC/6.9'
141
144
, '' , ''
142
145
] . join ( '\r\n' ) ) ;
@@ -177,6 +180,7 @@ describe('engine', function () {
177
180
client . setEncoding ( 'ascii' ) ;
178
181
client . write ( [
179
182
'GET / HTTP/1.1'
183
+ , 'Connection: Upgrade'
180
184
, 'Upgrade: IRC/6.9'
181
185
, '' , ''
182
186
] . join ( '\r\n' ) ) ;
You can’t perform that action at this time.
0 commit comments