Skip to content

Releases: uNetworking/uWebSockets.js

v19.0.0

10 Apr 21:56
Compare
Choose a tag to compare
  • Updates uWS to v19.1.0. Read about changes there.

v18.14.0

12 Jan 02:12
Compare
Choose a tag to compare
  • Updates uWS to v18.19.0
  • Updates TypeScript definitions

v18.13.0

08 Jan 22:46
Compare
Choose a tag to compare
  • Updates uWS to v18.18.0

v18.12.0

19 Dec 16:23
8cf8b31
Compare
Choose a tag to compare

Fixes

  • Updates uWS to v18.17.0
  • Fixes 6 warnings in wrapper

v18.11.0

28 Nov 18:13
bd720c9
Compare
Choose a tag to compare

Apple Silicon confirmed working

ARM64 ("Apple Silicon") binaries confirmed to be working on (native) Node.js 15 under macOS Big Sur. Thanks to the excellent GitHub Actions, we could provide native support for this new platform on day 1, without ever needing to buy any Apple hardware. That's a win for the environment, as buying new crap you don't need is a bad habit.

  • Fixes package.json version mismatch of previous release

v18.10.0

09 Nov 14:12
Compare
Choose a tag to compare

Improved argument checking

There has been a few cases where the library would segfault on invalid arguments passed (wrong type, invalid number of arguments, etc). This situation has been improved with better checks and explicit exceptions. There are still cases that needs better checking but the most common cases have been fixed.

New exceptions include "Passed callback is not a function." and "Function requires at least X arguments.".

v18.9.0

22 Oct 21:38
Compare
Choose a tag to compare

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!

v18.8.0

21 Oct 16:35
Compare
Choose a tag to compare

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.

v18.7.0

15 Oct 17:31
a1c9776
Compare
Choose a tag to compare

Multipart & URI query parsing, proper WorkerThreads

  • Adds a multipart parser, uWS.getParts(body, contentType) that parses at least 160x faster than parse-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.

v18.6.0

26 Sep 00:58
d447dce
Compare
Choose a tag to compare

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.