What is changed in uWebSockets:
- uWS never cared to optimize non-SSL, non-compressed semi-big WebSocket message sending, and so was a bit slower than what denoland/fastwebsockets v0.4.2 presented. This release adds such optimization and is now reliably and significantly faster in all cases.
- A few optimizations to the WebSocketProtocol.h.
- Fixes an edge case where URI querystrings with keys with no value gets interpreted as invalid querystring.
- Fixes an edge case where calling HttpResponse::upgrade inside HttpResponse::cork from inside a callback would crash.
- Properly uncork on large message backpressure