Skip to content

Commit 4b7eca1

Browse files
chore(release): 3.5.5
Diff: 3.5.4...3.5.5
1 parent ee468e6 commit 4b7eca1

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
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.5](https://github.com/socketio/engine.io-client/compare/3.5.4...3.5.5) (2025-11-17)
2+
3+
4+
### Bug Fixes
5+
6+
* prevent infinite loop with Node.js built-in WebSocket ([ee468e6](https://github.com/socketio/engine.io-client/commit/ee468e681c71463a1699c9b108abae05e54241cf))
7+
8+
9+
110
## [3.5.4](https://github.com/socketio/engine.io-client/compare/3.5.3...3.5.4) (2024-06-18)
211

312
This release contains a bump of the `ws` dependency, which includes an important [security fix](https://github.com/websockets/ws/commit/e55e5106f10fcbaac37cfa89759e4cc0d073a52c).

engine.io.js

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

45444544
WS.prototype.doClose = function () {
45454545
if (typeof this.ws !== 'undefined') {
4546+
this.ws.onerror = () => {};
45464547
this.ws.close();
45474548
}
45484549
};

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.4",
5+
"version": "3.5.5",
66
"main": "lib/index.js",
77
"homepage": "https://github.com/socketio/engine.io-client",
88
"contributors": [

0 commit comments

Comments
 (0)