alexhultman
released this
ARM64 macOS 11 ("Apple Silicon")
It is now possible to successfully build binaries for ARM64 macOS using GitHub Actions, and this is exactly what this release does. These binaries are entirely untested since, well, nobody has an ARM64 Mac and I don't think Node.js runs on it yet. In any case - this is good preparation for the future.
- It should mean no difference to Intel macOS users unless something has regressed - please report any issue with this release regarding macOS.
- If you happen to have an ARM64 Mac; please test this if you can!
Assets
2
alexhultman
released this
Node.js 15
Binaries are now built for every Node.js release from 10 up to 15. There is still no support for "Apple Silicon" (ARM64) since GitHub Actions cannot build for it, yet. That support will come in the future. Some of these old binaries will (probably) be culled in future releases to shrink the size of an install.
Assets
2
alexhultman
released this
Multipart & URI query parsing, proper WorkerThreads
- Adds a multipart parser,
uWS.getParts(body, contentType)
that parses at least 160x faster thanparse-multipart
given 120kb input. - Adds
req.getQuery(key)
for fetching the URI decoded URI query. Executes 400x faster than decodeURIComponent, so make sure you use this whenever you can. - Fixes graceful shutdown of WorkerThreads - no longer will the process fail on libuv assertions when exiting cleanly from a worker thread.
- Bumped ABI required on macOS - you'll need macOS Mojave or newer from now on.
- Fixed a pedantic CodeQL alert - we are ranked flawless A+ now.
- Updates to latest uWS.
Assets
2
alexhultman
released this
GitHub Actions
-
We've moved from AppVeyor & TravisCI to GitHub Actions. All binaries are hosted and built here on one single platform. This might mean some old Linux distros won't be supported anymore, as we use a newer compiler and glibc.
-
Updates to latest uWS.
Assets
2
alexhultman
released this
Server Name Indication
Updates uWS from v18.10.0 to v18.12.0, adding SNI support.
Assets
2
alexhultman
released this
- Updates uWS from v18.5.0 to v18.10.0.
- Swaps from Integer to Number for communicating offset in streams, necessary for streams larger than 2GB.
- Adds an experimental key/value store for efficient Worker Thread intercommunication.
See main repo for list of changes.
Assets
2
alexhultman
released this
SSL fix
Apparently SSL support was entirely non-functional in v18.2.0, as we had a minor unfixed compilation error slip through.
Assets
2
alexhultman
released this
- Update to uWS v18.5.0
- Update docs
Assets
2
alexhultman
released this
Seamless PROXY Protocol v2
The HTTP parser will automatically pick up on the presence of such a proxy (HAProxy or the like); there's no runtime configuration needed.
Adds functions
- getRemoteAddressAsText()
- getProxiedRemoteAddress()
- getProxiedRemoteAddressAsText()
Assets
2
alexhultman
released this
Upgrade events
- Update to uWS v18.0.0; adding upgrade event:
- Removes req from open event (breaking change)
- Pass data from upgrade event to open event by calling res.upgrade with the user data object
- Adds Upgrade and UpgradeAsync examples showing these features.
- Updates old examples for compatibility.
- µWebSockets and µWebSockets.js now share the same major version number.