Releases: socketio/engine.io
6.6.0
Bug Fixes
- fix
websocket
andwebtransport
send callbacks (#699) (fc21c4a) - properly call the send callback during upgrade (362bc78)
- types: make socket.request writable (#697) (0efa04b)
Performance Improvements
Credits
Huge thanks to Jonathan Perret for their contributions!
Links
- Diff: 6.5.4...6.6.0
- Client release: 6.6.0
- ws version: ~8.17.1 (no change)
6.5.5
This release contains a bump of the ws
dependency, which includes an important security fix.
Advisory: GHSA-3h5v-q93c-6h6q
Bug Fixes
Links
- Diff: 6.5.4...6.5.5
- Client release: -
ws@~8.17.1
(diff)
3.6.2
This release contains a bump of the ws
dependency, which includes an important security fix.
Advisory: GHSA-3h5v-q93c-6h6q
Links
- Diff: 3.6.1...3.6.2
- Client release: -
ws@~7.5.10
(diff)
6.5.4
This release contains some minor changes which should improve the memory usage of the server, notably this.
Links
- Diff: 6.5.3...6.5.4
- Client release: -
- ws version: ~8.11.0 (no change)
6.5.3
6.5.2
Bug Fixes
- webtransport: add proper framing (a306db0)
Links
- Diff: 6.5.1...6.5.2
- Client release: -
- ws version: ~8.11.0 (no change)
6.5.1
6.5.0
Bug Fixes
Features
Support for WebTransport
The Engine.IO server can now use WebTransport as the underlying transport.
WebTransport is a web API that uses the HTTP/3 protocol as a bidirectional transport. It's intended for two-way communications between a web client and an HTTP/3 server.
References:
- https://w3c.github.io/webtransport/
- https://developer.mozilla.org/en-US/docs/Web/API/WebTransport
- https://developer.chrome.com/articles/webtransport/
Until WebTransport support lands in Node.js, you can use the @fails-components/webtransport
package:
import { readFileSync } from "fs";
import { createServer } from "https";
import { Server } from "engine.io";
import { Http3Server } from "@fails-components/webtransport";
// WARNING: the total length of the validity period MUST NOT exceed two weeks (https://w3c.github.io/webtransport/#custom-certificate-requirements)
const cert = readFileSync("/path/to/my/cert.pem");
const key = readFileSync("/path/to/my/key.pem");
const httpsServer = createServer({
key,
cert
});
httpsServer.listen(3000);
const engine = new Server({
transports: ["polling", "websocket", "webtransport"] // WebTransport is not enabled by default
});
engine.attach(httpsServer);
const h3Server = new Http3Server({
port: 3000,
host: "0.0.0.0",
secret: "changeit",
cert,
privKey: key,
});
(async () => {
const stream = await h3Server.sessionStream("/engine.io/");
const sessionReader = stream.getReader();
while (true) {
const { done, value } = await sessionReader.read();
if (done) {
break;
}
engine.onWebTransportSession(value);
}
})();
h3Server.startServer();
Added in 123b68c.
Credits
Huge thanks to @OxleyS for helping!
Links
- Diff: 6.4.2...6.5.0
- Client release: 6.5.0
- ws version: ~8.11.0 (no change)
6.4.2
A malicious client could send a specially crafted HTTP request, triggering an uncaught exception and killing the Node.js process:
TypeError: Cannot read properties of undefined (reading 'handlesUpgrades')
at Server.onWebSocket (build/server.js:515:67)
Please upgrade as soon as possible.
Bug Fixes
- include error handling for Express middlewares (#674) (9395782)
- prevent crash when provided with an invalid query param (fc480b4)
- typings: make clientsCount public (#675) (bd6d471)
- uws: prevent crash when using with middlewares (8b22162)
Credits
Huge thanks to @tyilo and @cieldeville for helping!
Links
- Diff: 6.4.1...6.4.2
- Client release: -
- ws version: ~8.11.0 (no change)
6.4.1
This release contains 6e78489, which exports the BaseServer
class in order to restore the compatibility with the nodenext
module resolution strategy of TypeScript.
Reference: https://www.typescriptlang.org/tsconfig/#moduleResolution
Related: socketio/socket.io#4621
Links
- Diff: 6.4.0...6.4.1
- Client release: -
- ws version: ~8.11.0 (no change)