Skip to content

Commit 5f7df5e

Browse files
committed
Release 1.5.3
1 parent b608a5f commit 5f7df5e

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
22
node_js:
33
- "0.10"
4+
- "4.0.0"
45
notifications:
56
irc: "irc.freenode.org#socket.io"
67
matrix:

History.md

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

2+
1.5.3 / 2015-09-09
3+
==================
4+
5+
* package: bump `ws` to fix node 0.4.0
6+
27
1.5.2 / 2015-07-09
38
==================
49

engine.io.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2401,7 +2401,7 @@ function formatArgs() {
24012401
var index = 0;
24022402
var lastC = 0;
24032403
args[0].replace(/%[a-z%]/g, function(match) {
2404-
if ('%' === match) return;
2404+
if ('%%' === match) return;
24052405
index++;
24062406
if ('%c' === match) {
24072407
// we only are interested in the *last* %c
@@ -2566,7 +2566,7 @@ function debug(namespace) {
25662566
var index = 0;
25672567
args[0] = args[0].replace(/%([a-z%])/g, function(match, format) {
25682568
// if we encounter an escaped % then don't increase the array index
2569-
if (match === '%') return match;
2569+
if (match === '%%') return match;
25702570
index++;
25712571
var formatter = exports.formatters[format];
25722572
if ('function' === typeof formatter) {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "engine.io-client",
33
"description": "Client for the realtime Engine",
4-
"version": "1.5.2",
4+
"version": "1.5.3",
55
"homepage": "http://socket.io",
66
"contributors": [
77
{
@@ -39,7 +39,7 @@
3939
"browserify": "6.2.0",
4040
"concat-stream": "1.4.6",
4141
"derequire": "1.2.0",
42-
"engine.io": "1.5.2",
42+
"engine.io": "1.5.3",
4343
"expect.js": "0.2.0",
4444
"express": "3.4.8",
4545
"istanbul": "0.2.3",

0 commit comments

Comments
 (0)