All Versions
44
Latest Version
Avg Release Cycle
33 days
Latest Release
116 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v4.5.3 Changes
October 15, 2022 -
v4.5.2 Changes
September 02, 2022 -
v4.5.1 Changes
May 17, 2022 -
v4.5.0 Changes
April 23, 2022๐ Bug Fixes
๐ Features
- โ add support for catch-all listeners for outgoing packets (531104d)
This is similar to
onAny()
, but for outgoing packets.Syntax:
socket.onAnyOutgoing((event, ...args) => { console.log(event); });
- broadcast and expect multiple acks (8b20457)
Syntax:
io.timeout(1000).emit("some-event", (err, responses) => { // ... });
- โ add the "maxPayload" field in the handshake details (088dcb4)
So that clients in HTTP long-polling can decide how many packets they have to send to stay under the maxHttpBufferSize value.
This is a backward compatible change which should not mandate a new major revision of the protocol (we stay in v4), as we only add a field in the JSON-encoded handshake data:
0{"sid":"lv_VI97HAXpY6yYWAAAC","upgrades":["websocket"],"pingInterval":25000,"pingTimeout":5000,"maxPayload":1000000}
-
v4.4.1 Changes
January 06, 2022 -
v4.3.2 Changes
November 08, 2021 -
v4.3.1 Changes
October 16, 2021 -
v4.3.0 Changes
October 14, 2021 -
v4.2.0 Changes
August 30, 2021