Skip to content

Commit f322bde

Browse files
chore(release): 3.5.6
Diff: 3.5.5...3.5.6
1 parent ab89342 commit f322bde

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [3.5.6](https://github.com/socketio/engine.io-client/compare/3.5.5...3.5.6) (2025-12-19)
2+
3+
4+
### Bug Fixes
5+
6+
* use ES3 syntax ([ab89342](https://github.com/socketio/engine.io-client/commit/ab893425fef898896144f8940dfdf771261ecebd))
7+
8+
9+
110
## [3.5.5](https://github.com/socketio/engine.io-client/compare/3.5.4...3.5.5) (2025-11-17)
211

312

engine.io.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4543,7 +4543,7 @@ return /******/ (function(modules) { // webpackBootstrap
45434543

45444544
WS.prototype.doClose = function () {
45454545
if (typeof this.ws !== 'undefined') {
4546-
this.ws.onerror = () => {};
4546+
this.ws.onerror = function () {};
45474547
this.ws.close();
45484548
}
45494549
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "engine.io-client",
33
"description": "Client for the realtime Engine",
44
"license": "MIT",
5-
"version": "3.5.5",
5+
"version": "3.5.6",
66
"main": "lib/index.js",
77
"homepage": "https://github.com/socketio/engine.io-client",
88
"contributors": [

0 commit comments

Comments
 (0)